Packages

object BsonArray

Companion helper for a BsonArray

Since

1.0

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BsonArray
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def apply(elems: CanBeBsonValue*): BsonArray

    Creates a BsonArray from the provided values

    Creates a BsonArray from the provided values

    elems

    the values that can be transformed into a BsonValue

    returns

    the BsonArray

  2. def apply(): BsonArray

    Create an empty BsonArray

    Create an empty BsonArray

    returns

    the BsonArray

  3. def fromIterable(elems: Iterable[BsonValue]): BsonArray

    Create a BsonArray from the provided values

    Create a BsonArray from the provided values

    elems

    the BsonValues to become the BsonArray

    returns

    the BsonArray

Deprecated Value Members

  1. def apply(elems: Iterable[BsonValue]): BsonArray

    Create a BsonArray from the provided values

    Create a BsonArray from the provided values

    elems

    the BsonValues to become the BsonArray

    returns

    the BsonArray

    Annotations
    @deprecated
    Deprecated

    (Since version 2.7.0) Use fromIterable instead