AnyRealmCollection
public final class AnyRealmCollection<T: Object>: RealmCollectionType
A type-erased RealmCollectionType.
Forwards operations to an arbitrary underlying collection having the same
Element type, hiding the specifics of the underlying RealmCollectionType.
-
Element type contained in this collection.
Declaration
Swift
public typealias Element = T -
Returns the object at the given
index.Declaration
Swift
public subscript(index: Int) -> T { return base[index] }Parameters
indexThe index.
Return Value
The object at the given
index. -
Creates an AnyRealmCollection wrapping
base.Declaration
Swift
public init<C: RealmCollectionType where C.Element == T>(_ base: C)
-
The Realm the objects in this collection belong to, or
nilif the collection’s owning object does not belong to a realm (the collection is standalone).Declaration
Swift
public var realm: Realm? { return base.realm } -
Returns the number of objects in this collection.
Declaration
Swift
public var count: Int { return base.count } -
Returns a human-readable description of the objects contained in this collection.
Declaration
Swift
public var description: String { return base.description }
-
Returns the index of the given object, or
nilif the object is not in the collection.Declaration
Swift
public func indexOf(object: Element) -> Int? { return base.indexOf(object) }Parameters
objectThe object whose index is being queried.
Return Value
The index of the given object, or
nilif the object is not in the collection. -
Returns the index of the first object matching the given predicate, or
nilno objects match.Declaration
Swift
public func indexOf(predicate: NSPredicate) -> Int? { return base.indexOf(predicate) }Parameters
predicateThe
NSPredicateused to filter the objects.Return Value
The index of the first matching object, or
nilif no objects match. -
Returns the index of the first object matching the given predicate, or
nilif no objects match.Declaration
Swift
public func indexOf(predicateFormat: String, _ args: AnyObject...) -> Int? { return base.indexOf(NSPredicate(format: predicateFormat, argumentArray: args)) }Parameters
predicateFormatThe predicate format string, optionally followed by a variable number of arguments.
Return Value
The index of the first matching object, or
nilif no objects match.
-
Returns
Resultscontaining collection elements that match the given predicate.Declaration
Swift
public func filter(predicateFormat: String, _ args: AnyObject...) -> Results<Element> { return base.filter(NSPredicate(format: predicateFormat, argumentArray: args)) }Parameters
predicateFormatThe predicate format string which can accept variable arguments.
Return Value
Resultscontaining collection elements that match the given predicate. -
Returns
Resultscontaining collection elements that match the given predicate.Declaration
Swift
public func filter(predicate: NSPredicate) -> Results<Element> { return base.filter(predicate) }Parameters
predicateThe predicate to filter the objects.
Return Value
Resultscontaining collection elements that match the given predicate.
-
Returns
Resultscontaining collection elements sorted by the given property.Declaration
Swift
public func sorted(property: String, ascending: Bool) -> Results<Element> { return base.sorted(property, ascending: ascending) }Parameters
propertyThe property name to sort by.
ascendingThe direction to sort by.
Return Value
Resultscontaining collection elements sorted by the given property. -
Returns
Resultswith elements sorted by the given sort descriptors.Declaration
Swift
public func sorted<S: SequenceType where S.Generator.Element == SortDescriptor>(sortDescriptors: S) -> Results<Element> { return base.sorted(sortDescriptors) }Parameters
sortDescriptorsSortDescriptors to sort by.Return Value
Resultswith elements sorted by the given sort descriptors.
-
Returns the minimum value of the given property.
Warning
Only names of properties of a type conforming to the
MinMaxTypeprotocol can be used.Declaration
Swift
public func min<U: MinMaxType>(property: String) -> U? { return base.min(property) }Parameters
propertyThe name of a property conforming to
MinMaxTypeto look for a minimum on.Return Value
The minimum value for the property amongst objects in the collection, or
nilif the collection is empty. -
Returns the maximum value of the given property.
Warning
Only names of properties of a type conforming to the
MinMaxTypeprotocol can be used.Declaration
Swift
public func max<U: MinMaxType>(property: String) -> U? { return base.max(property) }Parameters
propertyThe name of a property conforming to
MinMaxTypeto look for a maximum on.Return Value
The maximum value for the property amongst objects in the collection, or
nilif the collection is empty. -
Returns the sum of the given property for objects in the collection.
Warning
Only names of properties of a type conforming to the
AddableTypeprotocol can be used.Declaration
Swift
public func sum<U: AddableType>(property: String) -> U { return base.sum(property) }Parameters
propertyThe name of a property conforming to
AddableTypeto calculate sum on.Return Value
The sum of the given property over all objects in the collection.
-
Returns the average of the given property for objects in the collection.
Warning
Only names of properties of a type conforming to the
AddableTypeprotocol can be used.Declaration
Swift
public func average<U: AddableType>(property: String) -> U? { return base.average(property) }Parameters
propertyThe name of a property conforming to
AddableTypeto calculate average on.Return Value
The average of the given property over all objects in the collection, or
nilif the collection is empty.
-
Returns a
GeneratorOf<T>that yields successive elements in the collection.Declaration
Swift
public func generate() -> RLMGenerator<T> { return base.generate() }
-
The position of the first element in a non-empty collection. Identical to endIndex in an empty collection.
Declaration
Swift
public var startIndex: Int { return base.startIndex } -
The collection’s
past the end
position. endIndex is not a valid argument to subscript, and is always reachable from startIndex by zero or more applications of successor().Declaration
Swift
public var endIndex: Int { return base.endIndex }
-
Returns an Array containing the results of invoking
valueForKey(_:)using key on each of the collection’s objects.Declaration
Swift
public func valueForKey(key: String) -> AnyObject? { return base.valueForKey(key) }Parameters
keyThe name of the property.
Return Value
Array containing the results of invoking
valueForKey(_:)using key on each of the collection’s objects. -
Invokes
setValue(_:forKey:)on each of the collection’s objects using the specified value and key.Warning
This method can only be called during a write transaction.
Declaration
Swift
public func setValue(value: AnyObject?, forKey key: String) { base.setValue(value, forKey: key) }Parameters
valueThe object value.
keyThe name of the property.
View on GitHub
Install in Dash
AnyRealmCollection Class Reference