package primitive
import "go.mongodb.org/mongo-driver/bson/primitive"
Package primitive contains types similar to Go primitives for BSON types can do not have direct Go primitive representations.
Index ¶
- Variables
- type A
- type Binary
- type CodeWithScope
- type D
- type DBPointer
- type DateTime
- type Decimal128
- func NewDecimal128(h, l uint64) Decimal128
- func ParseDecimal128(s string) (Decimal128, error)
- func (d Decimal128) GetBytes() (uint64, uint64)
- func (d Decimal128) String() string
- type E
- type JavaScript
- type M
- type MaxKey
- type MinKey
- type Null
- type ObjectID
- func NewObjectID() ObjectID
- func ObjectIDFromHex(s string) (ObjectID, error)
- func (id ObjectID) Hex() string
- func (id ObjectID) IsZero() bool
- func (id ObjectID) MarshalJSON() ([]byte, error)
- func (id ObjectID) String() string
- func (id *ObjectID) UnmarshalJSON(b []byte) error
- type Regex
- type Symbol
- type Timestamp
- type Undefined
Variables ¶
ErrInvalidHex indicates that a hex string cannot be converted to an ObjectID.
Types ¶
type A ¶
type A []interface{}
An A represents a BSON array. This type can be used to represent a BSON array in a concise and readable manner. It should generally be used when serializing to BSON. For deserializing, the RawArray or Array types should be used.
Example usage:
primitive.A{"bar", "world", 3.14159, primitive.D{{"qux", 12345}}}
type Binary ¶
Binary represents a BSON binary value.
func (Binary) Equal ¶
Equal compaes bp to bp2 and returns true is the are equal.
type CodeWithScope ¶
type CodeWithScope struct { Code JavaScript Scope interface{} }
CodeWithScope represents a BSON JavaScript code with scope value.
func (CodeWithScope) String ¶
func (cws CodeWithScope) String() string
type D ¶
type D []E
D represents a BSON Document. This type can be used to represent BSON in a concise and readable manner. It should generally be used when serializing to BSON. For deserializing, the Raw or Document types should be used.
Example usage:
primitive.D{{"foo", "bar"}, {"hello", "world"}, {"pi", 3.14159}}
This type should be used in situations where order matters, such as MongoDB commands. If the order is not important, a map is more comfortable and concise.
func (D) Map ¶
Map creates a map from the elements of the D.
type DBPointer ¶
DBPointer represents a BSON dbpointer value.
func (DBPointer) Equal ¶
Equal compaes d to d2 and returns true is the are equal.
func (DBPointer) String ¶
type DateTime ¶
type DateTime int64
DateTime represents the BSON datetime value.
func (DateTime) MarshalJSON ¶
MarshalJSON marshal to time type
type Decimal128 ¶
type Decimal128 struct {
// contains filtered or unexported fields
}
Decimal128 holds decimal128 BSON values.
func NewDecimal128 ¶
func NewDecimal128(h, l uint64) Decimal128
NewDecimal128 creates a Decimal128 using the provide high and low uint64s.
func ParseDecimal128 ¶
func ParseDecimal128(s string) (Decimal128, error)
ParseDecimal128 takes the given string and attempts to parse it into a valid Decimal128 value.
func (Decimal128) GetBytes ¶
func (d Decimal128) GetBytes() (uint64, uint64)
GetBytes returns the underlying bytes of the BSON decimal value as two uint16 values. The first contains the most first 8 bytes of the value and the second contains the latter.
func (Decimal128) String ¶
func (d Decimal128) String() string
String returns a string representation of the decimal value.
type E ¶
type E struct { Key string Value interface{} }
E represents a BSON element for a D. It is usually used inside a D.
type JavaScript ¶
type JavaScript string
JavaScript represents a BSON JavaScript code value.
type M ¶
type M map[string]interface{}
M is an unordered, concise representation of a BSON Document. It should generally be used to serialize BSON when the order of the elements of a BSON document do not matter. If the element order matters, use a D instead.
Example usage:
primitive.M{"foo": "bar", "hello": "world", "pi": 3.14159}
This type is handled in the encoders as a regular map[string]interface{}. The elements will be serialized in an undefined, random order, and the order will be different each time.
type MaxKey ¶
type MaxKey struct{}
MaxKey represents the BSON maxkey value.
type MinKey ¶
type MinKey struct{}
MinKey represents the BSON minkey value.
type Null ¶
type Null struct{}
Null repreesnts the BSON null value.
type ObjectID ¶
type ObjectID [12]byte
ObjectID is the BSON ObjectID type.
var NilObjectID ObjectID
NilObjectID is the zero value for ObjectID.
func NewObjectID ¶
func NewObjectID() ObjectID
NewObjectID generates a new ObjectID.
func ObjectIDFromHex ¶
ObjectIDFromHex creates a new ObjectID from a hex string. It returns an error if the hex string is not a valid ObjectID.
func (ObjectID) Hex ¶
Hex returns the hex encoding of the ObjectID as a string.
func (ObjectID) IsZero ¶
IsZero returns true if id is the empty ObjectID.
func (ObjectID) MarshalJSON ¶
MarshalJSON returns the ObjectID as a string
func (ObjectID) String ¶
func (*ObjectID) UnmarshalJSON ¶
UnmarshalJSON populates the byte slice with the ObjectID. If the byte slice is 64 bytes long, it will be populated with the hex representation of the ObjectID. If the byte slice is twelve bytes long, it will be populated with the BSON representation of the ObjectID. Otherwise, it will return an error.
type Regex ¶
Regex represents a BSON regex value.
func (Regex) Equal ¶
Equal compaes rp to rp2 and returns true is the are equal.
func (Regex) String ¶
type Symbol ¶
type Symbol string
Symbol represents a BSON symbol value.
type Timestamp ¶
Timestamp represents a BSON timestamp value.
func (Timestamp) Equal ¶
Equal compaes tp to tp2 and returns true is the are equal.
type Undefined ¶
type Undefined struct{}
Undefined represents the BSON undefined value type.
Source Files ¶
decimal.go objectid.go primitive.go
- Version
- v1.0.0-rc2
- Published
- Mar 7, 2019
- Platform
- linux/amd64
- Imports
- 12 packages
- Last checked
- 46 seconds ago –
Tools for package owners.