Operatormongokitten 7.9.5Meow
<(_:_:)
Operators.swift:135func < <M, T>(lhs: QuerySubject<M, T>, rhs: T) -> Document where M : KeyPathQueryableModel, T : Primitive, T : Comparable
func < <M, T>(lhs: QuerySubject<M, T>, rhs: T) -> Document where M : KeyPathQueryableModel, T : Primitive, T : Comparable
s4Meow1loiy4BSON8DocumentVAA12QuerySubjectVyxq_G_q_tAA21KeyPathQueryableModelRzAC9PrimitiveR_SLR_r0_lF
What are these?
FNV24: [8OG3R]
import Meow
@dynamicMemberLookup struct QuerySubject<M, T> where M : KeyPathQueryable, T : Decodable, T : Encodable
A type, similar to a Swift KeyPath
, that refers to a value within the entity M
, inside the database.
struct Document
protocol KeyPathQueryableModel : KeyPathQueryable, ReadableModel
protocol Primitive : PrimitiveEncodable, Decodable, Encodable, Sendable
protocol Comparable : Equatable
A type that can be compared using the relational operators <
, <=
, >=
, and >
.