Package-level declarations

Types

Link copied to clipboard
data class Pet(val name: String, val age: Int?, val species: Species)
Link copied to clipboard
data class Profile(val name: String, val age: Int)
Link copied to clipboard
Link copied to clipboard
data class User(val _id: ObjectId, val profile: Profile, val pets: List<Pet>)

Functions

Link copied to clipboard
fun SuiteDsl.bsonPathTests(context: Prepared<BsonFactory>)