diff --git a/Cartfile b/Cartfile index 21fa7f0..b31698c 100644 --- a/Cartfile +++ b/Cartfile @@ -1 +1 @@ -github "realm/realm-cocoa" "v0.98.6" +github "realm/realm-cocoa" "v1.0.0" diff --git a/Cartfile.private b/Cartfile.private index 35cc93d..e629cf5 100644 --- a/Cartfile.private +++ b/Cartfile.private @@ -1,2 +1,2 @@ -github "Quick/Nimble" "v4.0.0" +github "Quick/Nimble" "v4.0.1" github "Quick/Quick" "v0.9.2" diff --git a/Cartfile.resolved b/Cartfile.resolved index 1c9787a..1e8815b 100644 --- a/Cartfile.resolved +++ b/Cartfile.resolved @@ -1,3 +1,3 @@ -github "Quick/Nimble" "v4.0.0" +github "Quick/Nimble" "v4.0.1" github "Quick/Quick" "v0.9.2" -github "realm/realm-cocoa" "v0.98.6" +github "realm/realm-cocoa" "v1.0.0" diff --git a/Carthage/Build/Mac/Realm.framework.dSYM/Contents/Info.plist b/Carthage/Build/Mac/Realm.framework.dSYM/Contents/Info.plist deleted file mode 100644 index d8f0315..0000000 --- a/Carthage/Build/Mac/Realm.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.io.Realm.Realm - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 0.98.6 - CFBundleVersion - 0.98.6 - - diff --git a/Carthage/Build/Mac/Realm.framework.dSYM/Contents/Resources/DWARF/Realm b/Carthage/Build/Mac/Realm.framework.dSYM/Contents/Resources/DWARF/Realm deleted file mode 100644 index 6cc6559..0000000 Binary files a/Carthage/Build/Mac/Realm.framework.dSYM/Contents/Resources/DWARF/Realm and /dev/null differ diff --git a/Carthage/Build/Mac/Realm.framework/Headers b/Carthage/Build/Mac/Realm.framework/Headers deleted file mode 120000 index a177d2a..0000000 --- a/Carthage/Build/Mac/Realm.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/Carthage/Build/Mac/Realm.framework/Modules b/Carthage/Build/Mac/Realm.framework/Modules deleted file mode 120000 index 5736f31..0000000 --- a/Carthage/Build/Mac/Realm.framework/Modules +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Modules \ No newline at end of file diff --git a/Carthage/Build/Mac/Realm.framework/PrivateHeaders b/Carthage/Build/Mac/Realm.framework/PrivateHeaders deleted file mode 120000 index d8e5645..0000000 --- a/Carthage/Build/Mac/Realm.framework/PrivateHeaders +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/PrivateHeaders \ No newline at end of file diff --git a/Carthage/Build/Mac/Realm.framework/Realm b/Carthage/Build/Mac/Realm.framework/Realm deleted file mode 120000 index d12855e..0000000 --- a/Carthage/Build/Mac/Realm.framework/Realm +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Realm \ No newline at end of file diff --git a/Carthage/Build/Mac/Realm.framework/Resources b/Carthage/Build/Mac/Realm.framework/Resources deleted file mode 120000 index 953ee36..0000000 --- a/Carthage/Build/Mac/Realm.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMArray.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMArray.h deleted file mode 100644 index c1fe14a..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMArray.h +++ /dev/null @@ -1,364 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMObject, RLMRealm, RLMResults RLM_GENERIC_COLLECTION, RLMNotificationToken; - -/** - - RLMArray is the container type in Realm used to define to-many relationships. - - Unlike an NSArray, RLMArrays hold a single type, specified by the `objectClassName` property. - This is referred to in these docs as the “type” of the array. - - When declaring an RLMArray property, the type must be marked as conforming to a - protocol by the same name as the objects it should contain (see the - `RLM_ARRAY_TYPE` macro). RLMArray properties can also use Objective-C generics - if available. For example: - - RLM_ARRAY_TYPE(ObjectType) - ... - @property RLMArray *arrayOfObjectTypes; - - RLMArrays can be queried with the same predicates as RLMObject and RLMResults. - - RLMArrays cannot be created directly. RLMArray properties on RLMObjects are - lazily created when accessed, or can be obtained by querying a Realm. - - ### Key-Value Observing - - RLMArray supports array key-value observing on RLMArray properties on RLMObject - subclasses, and the `invalidated` property on RLMArray instances themselves is - key-value observing compliant when the RLMArray is attached to a persisted - RLMObject (RLMArrays on standalone RLMObjects will never become invalidated). - - Because RLMArrays are attached to the object which they are a property of, they - do not require using the mutable collection proxy objects from - `-mutableArrayValueForKey:` or KVC-compatible mutation methods on the containing - object. Instead, you can call the mutation methods on the RLMArray directly. - */ - -@interface RLMArray RLM_GENERIC_COLLECTION : NSObject - -#pragma mark - Properties - -/** - Number of objects in the array. - */ -@property (nonatomic, readonly, assign) NSUInteger count; - -/** - The class name (i.e. type) of the RLMObjects contained in this RLMArray. - */ -@property (nonatomic, readonly, copy) NSString *objectClassName; - -/** - The Realm in which this array is persisted. Returns nil for standalone arrays. - */ -@property (nonatomic, readonly, nullable) RLMRealm *realm; - -/** - Indicates if an array can no longer be accessed. - */ -@property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated; - -#pragma mark - Accessing Objects from an Array - -/** - Returns the object at the index specified. - - @param index The index to look up. - - @return An RLMObject of the type contained in this RLMArray. - */ -- (RLMObjectType)objectAtIndex:(NSUInteger)index; - -/** - Returns the first object in the array. - - Returns `nil` if called on an empty RLMArray. - - @return An RLMObject of the type contained in this RLMArray. - */ -- (nullable RLMObjectType)firstObject; - -/** - Returns the last object in the array. - - Returns `nil` if called on an empty RLMArray. - - @return An RLMObject of the type contained in this RLMArray. - */ -- (nullable RLMObjectType)lastObject; - - - -#pragma mark - Adding, Removing, and Replacing Objects in an Array - -/** - Adds an object to the end of the array. - - @warning This method can only be called during a write transaction. - - @param object An RLMObject of the type contained in this RLMArray. - */ -- (void)addObject:(RLMObjectArgument)object; - -/** - Adds an array of objects at the end of the array. - - @warning This method can only be called during a write transaction. - - @param objects An enumerable object such as NSArray or RLMResults which contains objects of the - same class as this RLMArray. - */ -- (void)addObjects:(id)objects; - -/** - Inserts an object at the given index. - - Throws an exception when the index exceeds the bounds of this RLMArray. - - @warning This method can only be called during a write transaction. - - @param anObject An RLMObject of the type contained in this RLMArray. - @param index The array index at which the object is inserted. - */ -- (void)insertObject:(RLMObjectArgument)anObject atIndex:(NSUInteger)index; - -/** - Removes an object at a given index. - - Throws an exception when the index exceeds the bounds of this RLMArray. - - @warning This method can only be called during a write transaction. - - @param index The array index identifying the object to be removed. - */ -- (void)removeObjectAtIndex:(NSUInteger)index; - -/** - Removes the last object in an RLMArray. - - @warning This method can only be called during a write transaction. -*/ -- (void)removeLastObject; - -/** - Removes all objects from an RLMArray. - - @warning This method can only be called during a write transaction. - */ -- (void)removeAllObjects; - -/** - Replaces an object at the given index with a new object. - - Throws an exception when the index exceeds the bounds of this RLMArray. - - @warning This method can only be called during a write transaction. - - @param index The array index of the object to be replaced. - @param anObject An object (of the same type as returned from the objectClassName selector). - */ -- (void)replaceObjectAtIndex:(NSUInteger)index withObject:(RLMObjectArgument)anObject; - -/** - Moves the object at the given source index to the given destination index. - - Throws an exception when the index exceeds the bounds of this RLMArray. - - @warning This method can only be called during a write transaction. - - @param sourceIndex The index of the object to be moved. - @param destinationIndex The index to which the object at `sourceIndex` should be moved. - */ -- (void)moveObjectAtIndex:(NSUInteger)sourceIndex toIndex:(NSUInteger)destinationIndex; - -/** - Exchanges the objects in the array at given indexes. - - Throws an exception when either index exceeds the bounds of this RLMArray. - - @warning This method can only be called during a write transaction. - - @param index1 The index of the object with which to replace the object at index `index2`. - @param index2 The index of the object with which to replace the object at index `index1`. - */ -- (void)exchangeObjectAtIndex:(NSUInteger)index1 withObjectAtIndex:(NSUInteger)index2; - -#pragma mark - Querying an Array - -/** - Gets the index of an object. - - Returns NSNotFound if the object is not found in this RLMArray. - - @param object An object (of the same type as returned from the objectClassName selector). - */ -- (NSUInteger)indexOfObject:(RLMObjectArgument)object; - -/** - Gets the index of the first object matching the predicate. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return Index of object or NSNotFound if the object is not found in this RLMArray. - */ -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Gets the index of the first object matching the predicate. - - @param predicate The predicate to filter the objects. - - @return Index of object or NSNotFound if the object is not found in this RLMArray. - */ -- (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate; - -/** - Get objects matching the given predicate in the RLMArray. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Get objects matching the given predicate in the RLMArray. - - @param predicate The predicate to filter the objects. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults RLM_GENERIC_RETURN*)objectsWithPredicate:(NSPredicate *)predicate; - -/** - Get a sorted RLMResults from an RLMArray - - @param property The property name to sort by. - @param ascending The direction to sort by. - - @return An RLMResults sorted by the specified property. - */ -- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending; - -/** - Get a sorted RLMResults from an RLMArray - - @param properties An array of `RLMSortDescriptor`s to sort by. - - @return An RLMResults sorted by the specified properties. - */ -- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingDescriptors:(NSArray *)properties; - -/// :nodoc: -- (RLMObjectType)objectAtIndexedSubscript:(NSUInteger)index; - -/// :nodoc: -- (void)setObject:(RLMObjectType)newValue atIndexedSubscript:(NSUInteger)index; - -#pragma mark - Notifications - -/** - Register a block to be called each time the RLMArray changes. - - The block will be asynchronously called with the initial array, and then - called again after each write transaction which changes the array or any - items contained in the array. You must retain the returned token for as long as - you want the block to continue to be called. To stop receiving updates, call - `-stop` on the token. - - The error parameter will always be `nil`, and is present only for compatiblity - with the RLMResults version of this method, which can potentially fail. - - @param block The block to be called each time the array changes. - @return A token which must be held for as long as you want notifications to be delivered. - */ -- (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMArray RLM_GENERIC_RETURN *array, NSError *))block RLM_WARN_UNUSED_RESULT; - -#pragma mark - Unavailable Methods - -/** - -[RLMArray init] is not available because RLMArrays cannot be created directly. - RLMArray properties on RLMObjects are lazily created when accessed, or can be obtained by querying a Realm. - */ -- (instancetype)init __attribute__((unavailable("RLMArrays cannot be created directly"))); - -/** - +[RLMArray new] is not available because RLMArrays cannot be created directly. - RLMArray properties on RLMObjects are lazily created when accessed, or can be obtained by querying a Realm. - */ -+ (instancetype)new __attribute__((unavailable("RLMArrays cannot be created directly"))); - -@end - -/** - An RLMSortDescriptor stores a property name and a sort order for use with - `sortedResultsUsingDescriptors:`. It is similar to NSSortDescriptor, but supports - only the subset of functionality which can be efficiently run by the query - engine. RLMSortDescriptor instances are immutable. - */ -@interface RLMSortDescriptor : NSObject - -#pragma mark - Properties - -/** - The name of the property which this sort descriptor orders results by. - */ -@property (nonatomic, readonly) NSString *property; - -/** - Whether this descriptor sorts in ascending or descending order. - */ -@property (nonatomic, readonly) BOOL ascending; - -#pragma mark - Methods - -/** - Returns a new sort descriptor for the given property name and order. - */ -+ (instancetype)sortDescriptorWithProperty:(NSString *)propertyName ascending:(BOOL)ascending; - -/** - Returns a copy of the receiver with the sort order reversed. - */ -- (instancetype)reversedSortDescriptor; - -@end - -/// :nodoc: -@interface RLMArray (Swift) -// for use only in Swift class definitions -- (instancetype)initWithObjectClassName:(NSString *)objectClassName; -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMCollection.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMCollection.h deleted file mode 100644 index a1a4efb..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMCollection.h +++ /dev/null @@ -1,184 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMRealm, RLMResults, RLMObject, RLMSortDescriptor, RLMNotificationToken; - -/** - A homogenous collection of `RLMObject`s like `RLMArray` or `RLMResults`. - */ -@protocol RLMCollection - -@required - -#pragma mark - Properties - -/** - Number of objects in the collection. - */ -@property (nonatomic, readonly, assign) NSUInteger count; - -/** - The class name (i.e. type) of the RLMObjects contained in this RLMCollection. - */ -@property (nonatomic, readonly, copy) NSString *objectClassName; - -/** - The Realm in which this collection is persisted. Returns nil for standalone collections. - */ -@property (nonatomic, readonly) RLMRealm *realm; - -#pragma mark - Accessing Objects from a Collection - -/** - Returns the object at the index specified. - - @param index The index to look up. - - @return An RLMObject of the type contained in this RLMCollection. - */ -- (id)objectAtIndex:(NSUInteger)index; - -/** - Returns the first object in the collection. - - Returns `nil` if called on an empty RLMCollection. - - @return An RLMObject of the type contained in this RLMCollection. - */ -- (nullable id)firstObject; - -/** - Returns the last object in the collection. - - Returns `nil` if called on an empty RLMCollection. - - @return An RLMObject of the type contained in this RLMCollection. - */ -- (nullable id)lastObject; - -#pragma mark - Querying a Collection - -/** - Gets the index of an object. - - Returns NSNotFound if the object is not found in this RLMCollection. - - @param object An object (of the same type as returned from the objectClassName selector). - */ -- (NSUInteger)indexOfObject:(RLMObject *)object; - -/** - Gets the index of the first object matching the predicate. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return Index of object or NSNotFound if the object is not found in this RLMCollection. - */ -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Gets the index of the first object matching the predicate. - - @param predicate The predicate to filter the objects. - - @return Index of object or NSNotFound if the object is not found in this RLMCollection. - */ -- (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate; - -/** - Get objects matching the given predicate in the RLMCollection. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults *)objectsWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (RLMResults *)objectsWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Get objects matching the given predicate in the RLMCollection. - - @param predicate The predicate to filter the objects. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults *)objectsWithPredicate:(NSPredicate *)predicate; - -/** - Get a sorted RLMResults from an RLMCollection. - - @param property The property name to sort by. - @param ascending The direction to sort by. - - @return An RLMResults sorted by the specified property. - */ -- (RLMResults *)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending; - -/** - Get a sorted RLMResults from an RLMCollection. - - @param properties An array of `RLMSortDescriptor`s to sort by. - - @return An RLMResults sorted by the specified properties. - */ -- (RLMResults *)sortedResultsUsingDescriptors:(NSArray RLM_GENERIC(RLMSortDescriptor *) *)properties; - -/// :nodoc: -- (id)objectAtIndexedSubscript:(NSUInteger)index; - -/** - Returns an NSArray containing the results of invoking `valueForKey:` using key on each of the collection's objects. - - @param key The name of the property. - - @return NSArray containing the results of invoking `valueForKey:` using key on each of the collection's objects. - */ -- (nullable id)valueForKey:(NSString *)key; - -/** - 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. - - @param value The object value. - @param key The name of the property. - */ -- (void)setValue:(nullable id)value forKey:(NSString *)key; - -#pragma mark - Notifications - -/** - Register a block to be called each time the collection changes. - - @param block The block to be called each time the collection changes. - @return A token which must be held for as long as you want notifications to be delivered. - */ -- (RLMNotificationToken *)addNotificationBlock:(void (^)(id collection))block RLM_WARN_UNUSED_RESULT; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMConstants.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMConstants.h deleted file mode 100644 index 3befba1..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMConstants.h +++ /dev/null @@ -1,131 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#pragma mark - Enums - -/** - Property types supported in Realm models. - - See [Realm Models](https://realm.io/docs/objc/latest/#models) - */ -// Make sure numbers match those in -typedef NS_ENUM(int32_t, RLMPropertyType) { - -#pragma mark - Primitive types - - /** Integer type: NSInteger, int, long, Int (Swift) */ - RLMPropertyTypeInt = 0, - /** Boolean type: BOOL, bool, Bool (Swift) */ - RLMPropertyTypeBool = 1, - /** Float type: float, Float (Swift) */ - RLMPropertyTypeFloat = 9, - /** Double type: double, Double (Swift) */ - RLMPropertyTypeDouble = 10, - -#pragma mark - Object types - - /** String type: NSString, String (Swift) */ - RLMPropertyTypeString = 2, - /** Data type: NSData */ - RLMPropertyTypeData = 4, - /** Any type: id, **not supported in Swift** */ - RLMPropertyTypeAny = 6, - /** Date type: NSDate */ - RLMPropertyTypeDate = 7, - -#pragma mark - Array/Linked object types - - /** Object type. See [Realm Models](https://realm.io/docs/objc/latest/#models) */ - RLMPropertyTypeObject = 12, - /** Array type. See [Realm Models](http://realms.io/docs/objc/latest/#models) */ - RLMPropertyTypeArray = 13, -}; - -/** - Enum representing all recoverable errors in Realm. - */ -typedef NS_ENUM(NSInteger, RLMError) { - /** Returned by RLMRealm if no other specific error is returned when a realm is opened. */ - RLMErrorFail = 1, - /** Returned by RLMRealm for any I/O related exception scenarios when a realm is opened. */ - RLMErrorFileAccess = 2, - /** Returned by RLMRealm if the user does not have permission to open or create - the specified file in the specified access mode when the realm is opened. */ - RLMErrorFilePermissionDenied = 3, - /** Returned by RLMRealm if the file already exists when a copy should be written. */ - RLMErrorFileExists = 4, - /** Returned by RLMRealm if no file was found when a realm was opened as - read-only or if the directory part of the specified path was not - found when a copy should be written. */ - RLMErrorFileNotFound = 5, - /** Returned by RLMRealm if a file format upgrade is required to open the file, but upgrades were explicilty disabled. */ - RLMErrorFileFormatUpgradeRequired = 6, - /** Returned by RLMRealm if the database file is currently open in another - process which cannot share with the current process due to an - architecture mismatch. */ - RLMErrorIncompatibleLockFile = 8, -}; - -#pragma mark - Constants - -#pragma mark - Notification Constants - -/** - Posted by RLMRealm when the data in the realm has changed. - - DidChange are posted after a realm has been refreshed to reflect a write - transaction, i.e. when an autorefresh occurs, `[RLMRealm refresh]` is - called, after an implicit refresh from `[RLMRealm beginWriteTransaction]`, - and after a local write transaction is committed. - */ -extern NSString * const RLMRealmRefreshRequiredNotification; - -/** - Posted by RLMRealm when a write transaction has been committed to an RLMRealm on - a different thread for the same file. This is not posted if - `[RLMRealm autorefresh]` is enabled or if the RLMRealm is - refreshed before the notifcation has a chance to run. - - Realms with autorefresh disabled should normally have a handler for this - notification which calls `[RLMRealm refresh]` after doing some work. - While not refreshing is allowed, it may lead to large Realm files as Realm has - to keep an extra copy of the data for the un-refreshed RLMRealm. - */ -extern NSString * const RLMRealmDidChangeNotification; - -#pragma mark - Other Constants - -/** Schema version used for uninitialized Realms */ -extern const uint64_t RLMNotVersioned; - -/** Error domain used in Realm. */ -extern NSString * const RLMErrorDomain; - -/** Key for name of Realm exceptions. */ -extern NSString * const RLMExceptionName; - -/** Key for Realm file version. */ -extern NSString * const RLMRealmVersionKey; - -/** Key for Realm core version. */ -extern NSString * const RLMRealmCoreVersionKey; - -/** Key for Realm invalidated property name. */ -extern NSString * const RLMInvalidatedKey; diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMDefines.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMDefines.h deleted file mode 100644 index 73afc03..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMDefines.h +++ /dev/null @@ -1,95 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2015 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMObject; - -#ifndef __has_feature -#define __has_feature(x) 0 -#endif - -#pragma mark - Generics - -#if __has_extension(objc_generics) -#define RLM_GENERIC(...) <__VA_ARGS__> -#define RLM_GENERIC_COLLECTION -#define RLM_GENERIC_RETURN -#define RLMObjectArgument RLMObjectType -#else -#define RLM_GENERIC(...) -#define RLM_GENERIC_COLLECTION -#define RLM_GENERIC_RETURN -typedef id RLMObjectType; -typedef RLMObject * RLMObjectArgument; -#endif - -#pragma mark - Nullability - -#if !__has_feature(nullability) -#ifndef __nullable -#define __nullable -#endif -#ifndef __nonnull -#define __nonnull -#endif -#ifndef __null_unspecified -#define __null_unspecified -#endif -#ifndef nullable -#define nullable -#endif -#ifndef nonnull -#define nonnull -#endif -#ifndef null_unspecified -#define null_unspecified -#endif -#endif - -#if defined(NS_ASSUME_NONNULL_BEGIN) && defined(NS_ASSUME_NONNULL_END) -#define RLM_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_BEGIN -#define RLM_ASSUME_NONNULL_END NS_ASSUME_NONNULL_END -#else -#define RLM_ASSUME_NONNULL_BEGIN -#define RLM_ASSUME_NONNULL_END -#endif - -#pragma mark - Escaping - -#if __has_attribute(noescape) -# define RLM_NOESCAPE __attribute__((noescape)) -#else -# define RLM_NOESCAPE -#endif - -#pragma mark - Unused Result - -#if __has_attribute(warn_unused_result) -# define RLM_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define RLM_WARN_UNUSED_RESULT -#endif - -#pragma mark - Swift Availability - -#if defined(NS_SWIFT_UNAVAILABLE) -# define RLM_SWIFT_UNAVAILABLE(msg) NS_SWIFT_UNAVAILABLE(msg) -#else -# define RLM_SWIFT_UNAVAILABLE(msg) -#endif diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMMigration.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMMigration.h deleted file mode 100644 index 3eb9b67..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMMigration.h +++ /dev/null @@ -1,107 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMSchema; -@class RLMArray; -@class RLMObject; - -/** -Provides both the old and new versions of an object in this Realm. Object properties can only be -accessed using keyed subscripting. - -@param oldObject Object in original RLMRealm (read-only). -@param newObject Object in migrated RLMRealm (read-write). -*/ -typedef void (^RLMObjectMigrationBlock)(RLMObject * __nullable oldObject, RLMObject * __nullable newObject); - -/** - RLMMigration is the object passed into a user defined RLMMigrationBlock when updating the version - of an RLMRealm instance. - - This object provides access to the RLMSchema current to this migration. - */ -@interface RLMMigration : NSObject - -#pragma mark - Properties - -/** - Get the old RLMSchema for the migration. This is the schema which describes the RLMRealm before the - migration is applied. - */ -@property (nonatomic, readonly) RLMSchema *oldSchema; - -/** - Get the new RLMSchema for the migration. This is the schema which describes the RLMRealm after applying - a migration. - */ -@property (nonatomic, readonly) RLMSchema *newSchema; - - -#pragma mark - Altering Objects during a Migration - -/** - Enumerates objects of a given type in this Realm, providing both the old and new versions of each object. - Objects properties can be accessed using keyed subscripting. - - @param className The name of the RLMObject class to enumerate. - - @warning All objects returned are of a type specific to the current migration and should not be casted - to className. Instead you should access them as RLMObjects and use keyed subscripting to access - properties. - */ -- (void)enumerateObjects:(NSString *)className block:(RLMObjectMigrationBlock)block; - -/** - Create an RLMObject of type `className` in the Realm being migrated. - - @param className The name of the RLMObject class to create. - @param value The value used to populate the created object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. - */ --(RLMObject *)createObject:(NSString *)className withValue:(id)value; - -/** - Delete an object from a Realm during a migration. This can be called within `enumerateObjects:block:`. - - @param object Object to be deleted from the Realm being migrated. - */ -- (void)deleteObject:(RLMObject *)object; - -/** - Deletes the data for the class with the given name. - This deletes all objects of the given class, and if the RLMObject subclass no longer exists in your program, - cleans up any remaining metadata for the class in the Realm file. - - @param name The name of the RLMObject class to delete. - - @return whether there was any data to delete. - */ -- (BOOL)deleteDataForClassName:(NSString *)name; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObject.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObject.h deleted file mode 100644 index 0047be1..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObject.h +++ /dev/null @@ -1,425 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMRealm; -@class RLMResults; -@class RLMObjectSchema; - -/** - - In Realm you define your model classes by subclassing `RLMObject` and adding properties to be persisted. - You then instantiate and use your custom subclasses instead of using the `RLMObject` class directly. - - // Dog.h - @interface Dog : RLMObject - @property NSString *name; - @property BOOL adopted; - @end - - // Dog.m - @implementation Dog - @end //none needed - - ### Supported property types - - - `NSString` - - `NSInteger`, `int`, `long`, `float`, and `double` - - `BOOL` or `bool` - - `NSDate` - - `NSData` - - `NSNumber`, where X is one of RLMInt, RLMFloat, RLMDouble or RLMBool, for optional number properties - - `RLMObject` subclasses, so you can have many-to-one relationships. - - `RLMArray`, where X is an `RLMObject` subclass, so you can have many-to-many relationships. - - ### Querying - - You can query an object directly via the class methods: `allObjects`, `objectsWhere:`, and `objectsWithPredicate:`. - These methods allow you to easily query a custom subclass for instances of this class in the - default Realm. To search in a Realm other than the default Realm use the interface on an RLMRealm instance. - - ### Relationships - - See our [Cocoa guide](https://realm.io/docs/objc/latest#relationships) for more details. - - ### Key-Value Observing - - All `RLMObject` properties (including properties you create in subclasses) are - [Key-Value Observing compliant](https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/KeyValueObserving/KeyValueObserving.html), - except for `realm` and `objectSchema`. There are several Realm-specific things - to keep in mind when observing Realm objects: - - 1. Unlike `NSMutableArray` properties, `RLMArray` properties do not require - using the proxy object returned from `-mutableArrayValueForKey:`, or defining - KVC mutation methods on the containing class. You can simply call methods on - the RLMArray directly and the changes will be observed by the containing - object. - 2. Standalone `RLMObjects` cannot be added to a Realm while they have any - observed properties. - 3. Modifying persisted `RLMObjects` in `-observeValueForKeyPath:ofObject:change:context:` - is problematic. Properties may change when the Realm is not in a write - transaction (for example, when `-[RLMRealm refresh]` is called after changes - are made on a different thread), and notifications sent prior to the change - being applied (when `NSKeyValueObservingOptionPrior` is used) may be sent at - times when you *cannot* begin a write transaction. - */ - -@interface RLMObject : RLMObjectBase - -#pragma mark - Creating & Initializing Objects - -/** - Initialize a standalone RLMObject - - Initialize an unpersisted instance of this object. - Call addObject: on an RLMRealm to add standalone object to a realm. - - @see [RLMRealm addObject:]: - */ -- (instancetype)init NS_DESIGNATED_INITIALIZER; - - -/** - Initialize a standalone RLMObject with values from an NSArray or NSDictionary - - Initialize an unpersisted instance of this object. - Call addObject: on an RLMRealm to add standalone object to a realm. - - @see [RLMRealm addObject:]: - */ -- (instancetype)initWithValue:(id)value NS_DESIGNATED_INITIALIZER; - - -/** - Helper to return the class name for an RLMObject subclass. - - @warning Do not override. Realm relies on this method returning the exact class - name. - - @return The class name for the model class. - */ -+ (NSString *)className; - -/** - Create an RLMObject in the default Realm with a given value. - - Creates an instance of this object and adds it to the default Realm populating - the object with the given value. - - If nested objects are included in the argument, `createInDefaultRealmWithValue:` will be called - on them. - - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. - - @see defaultPropertyValues - */ -+ (instancetype)createInDefaultRealmWithValue:(id)value; - -/** - Create an RLMObject in a Realm with a given object. - - Creates an instance of this object and adds it to the given Realm populating - the object with the given object. - - If nested objects are included in the argument, `createInRealm:withValue:` will be called - on them. - - @param realm The Realm in which this object is persisted. - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. - - @see defaultPropertyValues - */ -+ (instancetype)createInRealm:(RLMRealm *)realm withValue:(id)value; - -/** - Create or update an RLMObject in the default Realm with a given object. - - This method can only be called on object types with a primary key defined. If there is already - an object with the same primary key value in the default RLMRealm its values are updated and the object - is returned. Otherwise this creates and populates a new instance of this object in the default Realm. - - If nested objects are included in the argument, `createOrUpdateInDefaultRealmWithValue:` will be - called on them if have a primary key (`createInDefaultRealmWithValue:` otherwise). - - This is a no-op if the argument is an RLMObject of the same type already backed by the target realm. - - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. - - @see defaultPropertyValues, primaryKey - */ -+ (instancetype)createOrUpdateInDefaultRealmWithValue:(id)value; - -/** - Create or update an RLMObject with a given object. - - This method can only be called on object types with a primary key defined. If there is already - an object with the same primary key value in the provided RLMRealm its values are updated and the object - is returned. Otherwise this creates and populates a new instance of this object in the provided Realm. - - If nested objects are included in the argument, `createOrUpdateInRealm:withValue:` will be - called on them if have a primary key (`createInRealm:withValue:` otherwise). - - This is a no-op if the argument is an RLMObject of the same type already backed by the target realm. - - @param realm The Realm in which this object is persisted. - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. - - @see defaultPropertyValues, primaryKey - */ -+ (instancetype)createOrUpdateInRealm:(RLMRealm *)realm withValue:(id)value; - -#pragma mark - Properties - -/** - The Realm in which this object is persisted. Returns nil for standalone objects. - */ -@property (nonatomic, readonly, nullable) RLMRealm *realm; - -/** - The ObjectSchema which lists the persisted properties for this object. - */ -@property (nonatomic, readonly) RLMObjectSchema *objectSchema; - -/** - Indicates if an object can no longer be accessed. - - An object can no longer be accessed if the object has been deleted from the containing `realm` or - if `invalidate` is called on the containing `realm`. - */ -@property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated; - - -#pragma mark - Customizing your Objects - -/** - Return an array of property names for properties which should be indexed. Only supported - for string and int properties. - @return NSArray of property names. - */ -+ (NSArray RLM_GENERIC(NSString *) *)indexedProperties; - -/** - Implement to indicate the default values to be used for each property. - - @return NSDictionary mapping property names to their default values. - */ -+ (nullable NSDictionary *)defaultPropertyValues; - -/** - Implement to designate a property as the primary key for an RLMObject subclass. Only properties of - type RLMPropertyTypeString and RLMPropertyTypeInt can be designated as the primary key. Primary key - properties enforce uniqueness for each value whenever the property is set which incurs some overhead. - Indexes are created automatically for primary key properties. - - @return Name of the property designated as the primary key. - */ -+ (nullable NSString *)primaryKey; - -/** - Implement to return an array of property names to ignore. These properties will not be persisted - and are treated as transient. - - @return NSArray of property names to ignore. - */ -+ (nullable NSArray RLM_GENERIC(NSString *) *)ignoredProperties; - -/** - Implement to return an array of property names that should not allow storing nil. - - By default, all properties of a type that support storing nil are considered optional properties. - To require that an object in a Realm always have a non-nil value for a property, - add the name of the property to the array returned from this method. - - Currently Object properties cannot be required. Array and NSNumber properties - can, but it makes little sense to do so: arrays do not support storing nil, and - if you want a non-optional number you should instead use the primitive type. - - @return NSArray of property names that are required. - */ -+ (NSArray RLM_GENERIC(NSString *) *)requiredProperties; - - -#pragma mark - Getting & Querying Objects from the Default Realm - -/** - Get all objects of this type from the default Realm. - - @return An RLMResults of all objects of this type in the default Realm. - */ -+ (RLMResults *)allObjects; - -/** - Get objects matching the given predicate for this type from the default Realm. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return An RLMResults of objects of the subclass type in the default Realm that match the given predicate - */ -+ (RLMResults *)objectsWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -+ (RLMResults *)objectsWhere:(NSString *)predicateFormat args:(va_list)args; - - -/** - Get objects matching the given predicate for this type from the default Realm. - - @param predicate The predicate to filter the objects. - - @return An RLMResults of objects of the subclass type in the default Realm that match the given predicate - */ -+ (RLMResults *)objectsWithPredicate:(nullable NSPredicate *)predicate; - -/** - Get the single object with the given primary key from the default Realm. - - Returns the object from the default Realm which has the given primary key, or - `nil` if the object does not exist. This is slightly faster than the otherwise - equivalent `[[SubclassName objectsWhere:@"primaryKeyPropertyName = %@", key] firstObject]`. - - This method requires that `primaryKey` be overridden on the receiving subclass. - - @return An object of the subclass type or nil if an object with the given primary key does not exist. - @see -primaryKey - */ -+ (nullable instancetype)objectForPrimaryKey:(nullable id)primaryKey; - - -#pragma mark - Querying Specific Realms - -/** - Get all objects of this type from the specified Realm. - - @param realm The Realm instance to query. - - @return An RLMResults of all objects of this type in the specified Realm. - */ -+ (RLMResults *)allObjectsInRealm:(RLMRealm *)realm; - -/** - Get objects matching the given predicate for this type from the specified Realm. - - @param predicateFormat The predicate format string which can accept variable arguments. - @param realm The Realm instance to query. - - @return An RLMResults of objects of the subclass type in the specified Realm that match the given predicate - */ -+ (RLMResults *)objectsInRealm:(RLMRealm *)realm where:(NSString *)predicateFormat, ...; - -/// :nodoc: -+ (RLMResults *)objectsInRealm:(RLMRealm *)realm where:(NSString *)predicateFormat args:(va_list)args; - -/** - Get objects matching the given predicate for this type from the specified Realm. - - @param predicate The predicate to filter the objects. - @param realm The Realm instance to query. - - @return An RLMResults of objects of the subclass type in the specified Realm that match the given predicate - */ -+ (RLMResults *)objectsInRealm:(RLMRealm *)realm withPredicate:(nullable NSPredicate *)predicate; - -/** - Get the single object with the given primary key from the specified Realm. - - Returns the object from the specified Realm which has the given primary key, or - `nil` if the object does not exist. This is slightly faster than the otherwise - equivalent `[[SubclassName objectsInRealm:realm where:@"primaryKeyPropertyName = %@", key] firstObject]`. - - This method requires that `primaryKey` be overridden on the receiving subclass. - - @return An object of the subclass type or nil if an object with the given primary key does not exist. - @see -primaryKey - */ -+ (nullable instancetype)objectInRealm:(RLMRealm *)realm forPrimaryKey:(nullable id)primaryKey; - -#pragma mark - Other Instance Methods - -/** - Get an `NSArray` of objects of type `className` which have this object as the given property value. This can - be used to get the inverse relationship value for `RLMObject` and `RLMArray` properties. - - @param className The type of object on which the relationship to query is defined. - @param property The name of the property which defines the relationship. - - @return An NSArray of objects of type `className` which have this object as their value for the `property` property. - */ -- (NSArray *)linkingObjectsOfClass:(NSString *)className forProperty:(NSString *)property; - -/** - Returns YES if another RLMObject points to the same object in an RLMRealm. For RLMObject types - with a primary, key, `isEqual:` is overridden to use this method (along with a corresponding - implementation for `hash`. - - @param object The object to compare to. - - @return YES if the object represents the same object in the same RLMRealm. - */ -- (BOOL)isEqualToObject:(RLMObject *)object; - -#pragma mark - Dynamic Accessors - -/// :nodoc: -- (nullable id)objectForKeyedSubscript:(NSString *)key; - -/// :nodoc: -- (void)setObject:(nullable id)obj forKeyedSubscript:(NSString *)key; - -@end - -#pragma mark - RLMArray Property Declaration - -/** - Properties on RLMObjects of type RLMArray must have an associated type. A type is associated - with an RLMArray property by defining a protocol for the object type which the RLMArray will - hold. To define the protocol for an object you can use the macro RLM_ARRAY_TYPE: - - RLM_ARRAY_TYPE(ObjectType) - ... - @property RLMArray *arrayOfObjectTypes; - */ -#define RLM_ARRAY_TYPE(RLM_OBJECT_SUBCLASS)\ -@protocol RLM_OBJECT_SUBCLASS \ -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectBase.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectBase.h deleted file mode 100644 index 739e0f0..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectBase.h +++ /dev/null @@ -1,42 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMRealm; -@class RLMSchema; -@class RLMObjectSchema; - -/// :nodoc: -@interface RLMObjectBase : NSObject - -@property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated; - -- (instancetype)init; - -+ (NSString *)className; - -// Returns whether the class is included in the default set of classes persisted in a Realm. -+ (BOOL)shouldIncludeInDefaultSchema; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectBase_Dynamic.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectBase_Dynamic.h deleted file mode 100644 index 247bdf1..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectBase_Dynamic.h +++ /dev/null @@ -1,84 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMObjectSchema, RLMRealm; - -/** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to retrieve `realm` via `RLMObject`. - - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - - @return The Realm in which this object is persisted. Returns nil for standalone objects. - */ -FOUNDATION_EXTERN RLMRealm *RLMObjectBaseRealm(RLMObjectBase *object); - -/** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to retrieve `objectSchema` via `RLMObject`. - - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - - @return The ObjectSchema which lists the persisted properties for this object. - */ -FOUNDATION_EXTERN RLMObjectSchema *RLMObjectBaseObjectSchema(RLMObjectBase *object); - -/** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to retrieve the linking objects via `RLMObject`. - - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - @param className The type of object on which the relationship to query is defined. - @param property The name of the property which defines the relationship. - - @return An NSArray of objects of type `className` which have this object as their value for the `property` property. - */ -FOUNDATION_EXTERN NSArray *RLMObjectBaseLinkingObjectsOfClass(RLMObjectBase *object, NSString *className, NSString *property); - -/** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to retrieve key values via `RLMObject`. - - @warning Will throw `NSUndefinedKeyException` if key is not present on the object - - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - @param key The name of the property - - @return the object for the property requested - */ -FOUNDATION_EXTERN id RLMObjectBaseObjectForKeyedSubscript(RLMObjectBase *object, NSString *key); - -/** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to set key values via `RLMObject`. - - @warning Will throw `NSUndefinedKeyException` if key is not present on the object - - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - @param key The name of the property - @param obj The object to set as the value of the key - */ -FOUNDATION_EXTERN void RLMObjectBaseSetObjectForKeyedSubscript(RLMObjectBase *object, NSString *key, id obj); - diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectSchema.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectSchema.h deleted file mode 100644 index 3aa15d7..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectSchema.h +++ /dev/null @@ -1,73 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMProperty; - -/** - This class represents Realm model object schemas. - - When using Realm, RLMObjectSchema objects allow performing migrations and - introspecting the database's schema. - - Object schemas map to tables in the core database. - */ -@interface RLMObjectSchema : NSObject - -#pragma mark - Properties - -/** - Array of persisted RLMProperty objects for an object. - - @see RLMProperty - */ -@property (nonatomic, readonly, copy) NSArray RLM_GENERIC(RLMProperty *) *properties; - -/** - The name of the class this schema describes. - */ -@property (nonatomic, readonly) NSString *className; - -/** - The property which is the primary key for this object (if any). - */ -@property (nonatomic, readonly, nullable) RLMProperty *primaryKeyProperty; - -#pragma mark - Methods - -/** - Retrieve an RLMProperty object by name. - - @param propertyName The property's name. - - @return RLMProperty object or nil if there is no property with the given name. - */ -- (nullable RLMProperty *)objectForKeyedSubscript:(id )propertyName; - -/** - Returns YES if equal to objectSchema -*/ -- (BOOL)isEqualToObjectSchema:(RLMObjectSchema *)objectSchema; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMPlatform.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMPlatform.h deleted file mode 100644 index e72f1f5..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMPlatform.h +++ /dev/null @@ -1,22 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#if TARGET_OS_IPHONE -#error Attempting to use Realm's OSX framework in an iOS project. -#endif - diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMProperty.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMProperty.h deleted file mode 100644 index 2f61020..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMProperty.h +++ /dev/null @@ -1,95 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -/// :nodoc: -@protocol RLMInt -@end - -/// :nodoc: -@protocol RLMBool -@end - -/// :nodoc: -@protocol RLMDouble -@end - -/// :nodoc: -@protocol RLMFloat -@end - -/// :nodoc: -@interface NSNumber () -@end - -/** - This class models properties persisted to Realm in an RLMObjectSchema. - - When using Realm, RLMProperty objects allow performing migrations and - introspecting the database's schema. - - These properties map to columns in the core database. - */ -@interface RLMProperty : NSObject - -#pragma mark - Properties - -/** - Property name. - */ -@property (nonatomic, readonly) NSString *name; - -/** - Property type. - - @see RLMPropertyType - */ -@property (nonatomic, readonly) RLMPropertyType type; - -/** - Indicates if this property is indexed. - - @see RLMObject - */ -@property (nonatomic, readonly) BOOL indexed; - -/** - Object class name - specify object types for RLMObject and RLMArray properties. - */ -@property (nonatomic, readonly, copy, nullable) NSString *objectClassName; - -/** - Whether this property is optional. - */ -@property (nonatomic, readonly) BOOL optional; - -#pragma mark - Methods - -/** - Returns YES if property objects are equal. - */ -- (BOOL)isEqualToProperty:(RLMProperty *)property; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealm.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealm.h deleted file mode 100644 index 0672725..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealm.h +++ /dev/null @@ -1,519 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -@class RLMRealmConfiguration, RLMObject, RLMSchema, RLMMigration, RLMNotificationToken; - -RLM_ASSUME_NONNULL_BEGIN - -/** - An RLMRealm instance (also referred to as "a realm") represents a Realm - database. - - Realms can either be stored on disk (see +[RLMRealm realmWithPath:]) or in - memory (see RLMRealmConfiguration). - - RLMRealm instances are cached internally, and constructing equivalent RLMRealm - objects (with the same path or identifier) multiple times on a single thread - within a single iteration of the run loop will normally return the same - RLMRealm object. If you specifically want to ensure a RLMRealm object is - destroyed (for example, if you wish to open a realm, check some property, and - then possibly delete the realm file and re-open it), place the code which uses - the realm within an `@autoreleasepool {}` and ensure you have no other - strong references to it. - - @warning RLMRealm instances are not thread safe and can not be shared across - threads or dispatch queues. You must call this method on each thread you want - to interact with the realm on. For dispatch queues, this means that you must - call it in each block which is dispatched, as a queue is not guaranteed to run - on a consistent thread. - */ - -@interface RLMRealm : NSObject - -#pragma mark - Creating & Initializing a Realm - -/** - Obtains an instance of the default Realm. - - The default Realm is used by the `RLMObject` class methods - which do not take a `RLMRealm` parameter, but is otherwise not special. The - default Realm is persisted as default.realm under the Documents directory of - your Application on iOS, and in your application's Application Support - directory on OS X. - - The default Realm is created using the default `RLMRealmConfiguration`, which - can be changed via `+[RLMRealmConfiguration setDefaultConfiguration:]`. - - @return The default `RLMRealm` instance for the current thread. - */ -+ (instancetype)defaultRealm; - -/** - Obtains an `RLMRealm` instance with the given configuration. - - @param configuration The configuration for the realm. - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. - - @return An `RLMRealm` instance. - */ -+ (nullable instancetype)realmWithConfiguration:(RLMRealmConfiguration *)configuration error:(NSError **)error; - -/** - Obtains an `RLMRealm` instance persisted at a specific file path. - - @param path Path to the file you want the data saved in. - - @return An `RLMRealm` instance. - */ -+ (instancetype)realmWithPath:(NSString *)path; - -/** - Path to the file where this Realm is persisted. - */ -@property (nonatomic, readonly) NSString *path; - -/** - Indicates if this Realm was opened in read-only mode. - */ -@property (nonatomic, readonly, getter = isReadOnly) BOOL readOnly; - -/** - The RLMSchema used by this RLMRealm. - */ -@property (nonatomic, readonly, null_unspecified) RLMSchema *schema; - -/** - Indicates if this Realm is currently in a write transaction. - - @warning Wrapping mutating operations in a write transaction if this property returns `NO` - may cause a large number of write transactions to be created, which could negatively - impact Realm's performance. Always prefer performing multiple mutations in a single - transaction when possible. - */ -@property (nonatomic, readonly) BOOL inWriteTransaction; - -/** - Returns the `RLMRealmConfiguration` that was used to create this `RLMRealm` instance. - */ -@property (nonatomic, readonly) RLMRealmConfiguration *configuration; - -/** - Indicates if this Realm contains any objects. - */ -@property (nonatomic, readonly) BOOL isEmpty; - -#pragma mark - Notifications - -/// Block to run when the data in a Realm was modified. -typedef void (^RLMNotificationBlock)(NSString *notification, RLMRealm *realm); - -#pragma mark - Receiving Notification when a Realm Changes - -/** - Add a notification handler for changes in this RLMRealm. - - Notification handlers are called after each write transaction is committed, - either on the current thread or other threads. The block is called on the same - thread as they were added on, and can only be added on threads which are - currently within a run loop. Unless you are specifically creating and running a - run loop on a background thread, this normally will only be the main thread. - - The block has the following definition: - - typedef void(^RLMNotificationBlock)(NSString *notification, RLMRealm *realm); - - It receives the following parameters: - - - `NSString` \***notification**: The name of the incoming notification. See - RLMRealmNotification for information on what - notifications are sent. - - `RLMRealm` \***realm**: The realm for which this notification occurred - - @param block A block which is called to process RLMRealm notifications. - - @return A token object which must be stored as long as you wish to continue - receiving change notifications. - */ -- (RLMNotificationToken *)addNotificationBlock:(RLMNotificationBlock)block RLM_WARN_UNUSED_RESULT; - -/** - Remove a previously registered notification handler using the token returned - from `-addNotificationBlock:` - - @param notificationToken The token returned from `-addNotificationBlock:` - corresponding to the notification block to remove. - */ -- (void)removeNotification:(RLMNotificationToken *)notificationToken; - -#pragma mark - Transactions - - -#pragma mark - Writing to a Realm - -/** - Begins a write transaction in an `RLMRealm`. - - Only one write transaction can be open at a time. Write transactions cannot be - nested, and trying to begin a write transaction on a `RLMRealm` which is - already in a write transaction will throw an exception. Calls to - `beginWriteTransaction` from `RLMRealm` instances in other threads will block - until the current write transaction completes. - - Before beginning the write transaction, `beginWriteTransaction` updates the - `RLMRealm` to the latest Realm version, as if refresh was called, and - generates notifications if applicable. This has no effect if the `RLMRealm` - was already up to date. - - It is rarely a good idea to have write transactions span multiple cycles of - the run loop, but if you do wish to do so you will need to ensure that the - `RLMRealm` in the write transaction is kept alive until the write transaction - is committed. - */ -- (void)beginWriteTransaction; - -/** - Commits all write operations in the current write transaction, and ends the - transaction. - - @warning This method can only be called during a write transaction. - */ -- (void)commitWriteTransaction RLM_SWIFT_UNAVAILABLE(""); - -/** - Commits all write operations in the current write transaction, and ends the - transaction. - - @warning This method can only be called during a write transaction. - - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. - - @return Whether the transaction succeeded. - */ -- (BOOL)commitWriteTransaction:(NSError **)error; - -/** - Reverts all writes made in the current write transaction and ends the transaction. - - This rolls back all objects in the Realm to the state they were in at the - beginning of the write transaction, and then ends the transaction. - - This restores the data for deleted objects, but does not revive invalidated - object instances. Any `RLMObject`s which were added to the Realm will be - invalidated rather than switching back to standalone objects. - Given the following code: - - ObjectType *oldObject = [[ObjectType objectsWhere:@"..."] firstObject]; - ObjectType *newObject = [[ObjectType alloc] init]; - - [realm beginWriteTransaction]; - [realm addObject:newObject]; - [realm deleteObject:oldObject]; - [realm cancelWriteTransaction]; - - Both `oldObject` and `newObject` will return `YES` for `isInvalidated`, - but re-running the query which provided `oldObject` will once again return - the valid object. - - @warning This method can only be called during a write transaction. - */ -- (void)cancelWriteTransaction; - -/** - Helper to perform a block within a transaction. - */ -- (void)transactionWithBlock:(RLM_NOESCAPE void(^)(void))block RLM_SWIFT_UNAVAILABLE(""); - -/** - Performs actions contained within the given block inside a write transation. - - Write transactions cannot be nested, and trying to execute a write transaction - on a `RLMRealm` which is already in a write transaction will throw an - exception. Calls to `transactionWithBlock:` from `RLMRealm` instances in other - threads will block until the current write transaction completes. - - Before beginning the write transaction, `transactionWithBlock:` updates the - `RLMRealm` to the latest Realm version, as if refresh was called, and - generates notifications if applicable. This has no effect if the `RLMRealm` - was already up to date. - - @param block The block to perform. - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. - - @return Whether the transaction succeeded. - */ -- (BOOL)transactionWithBlock:(RLM_NOESCAPE void(^)(void))block error:(NSError **)error; - -/** - Update an `RLMRealm` and outstanding objects to point to the most recent data for this `RLMRealm`. - - @return Whether the realm had any updates. Note that this may return YES even if no data has actually changed. - */ -- (BOOL)refresh; - -/** - Set to YES to automatically update this Realm when changes happen in other threads. - - If set to YES (the default), changes made on other threads will be reflected - in this Realm on the next cycle of the run loop after the changes are - committed. If set to NO, you must manually call `-refresh` on the Realm to - update it to get the latest version. - - Note that by default, background threads do not have an active run loop and you - will need to manually call `-refresh` in order to update to the latest version, - even if `autorefresh` is set to `true`. - - Even with this enabled, you can still call `-refresh` at any time to update the - Realm before the automatic refresh would occur. - - Notifications are sent when a write transaction is committed whether or not - this is enabled. - - Disabling this on an `RLMRealm` without any strong references to it will not - have any effect, and it will switch back to YES the next time the `RLMRealm` - object is created. This is normally irrelevant as it means that there is - nothing to refresh (as persisted `RLMObject`s, `RLMArray`s, and `RLMResults` have strong - references to the containing `RLMRealm`), but it means that setting - `RLMRealm.defaultRealm.autorefresh = NO` in - `application:didFinishLaunchingWithOptions:` and only later storing Realm - objects will not work. - - Defaults to YES. - */ -@property (nonatomic) BOOL autorefresh; - -/** - Write a compacted copy of the RLMRealm to the given path. - - The destination file cannot already exist. - - Note that if this is called from within a write transaction it writes the - *current* data, and not data when the last write transaction was committed. - - @param path Path to save the Realm to. - @param error On input, a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information. - @return YES if the realm was copied successfully. Returns NO if an error occurred. -*/ -- (BOOL)writeCopyToPath:(NSString *)path error:(NSError **)error; - -/** - Write an encrypted and compacted copy of the RLMRealm to the given path. - - The destination file cannot already exist. - - Note that if this is called from within a write transaction it writes the - *current* data, and not data when the last write transaction was committed. - - @param path Path to save the Realm to. - @param key 64-byte encryption key to encrypt the new file with - @param error On input, a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information. - @return YES if the realm was copied successfully. Returns NO if an error occurred. -*/ -- (BOOL)writeCopyToPath:(NSString *)path encryptionKey:(NSData *)key error:(NSError **)error; - -/** - Invalidate all RLMObjects and RLMResults read from this Realm. - - An RLMRealm holds a read lock on the version of the data accessed by it, so - that changes made to the Realm on different threads do not modify or delete the - data seen by this RLMRealm. Calling this method releases the read lock, - allowing the space used on disk to be reused by later write transactions rather - than growing the file. This method should be called before performing long - blocking operations on a background thread on which you previously read data - from the Realm which you no longer need. - - All `RLMObject`, `RLMResults` and `RLMArray` instances obtained from this - `RLMRealm` on the current thread are invalidated, and can not longer be used. - The `RLMRealm` itself remains valid, and a new read transaction is implicitly - begun the next time data is read from the Realm. - - Calling this method multiple times in a row without reading any data from the - Realm, or before ever reading any data from the Realm is a no-op. This method - cannot be called on a read-only Realm. - */ -- (void)invalidate; - -#pragma mark - Accessing Objects - - -#pragma mark - Adding and Removing Objects from a Realm - -/** - Adds an object to be persisted in this Realm. - - Once added, this object can be retrieved using the `objectsWhere:` selectors - on `RLMRealm` and on subclasses of `RLMObject`. When added, all (child) - relationships referenced by this object will also be added to the Realm if they are - not already in it. If the object or any related objects already belong to a - different Realm an exception will be thrown. Use - `-[RLMObject createInRealm:withObject]` to insert a copy of a persisted object - into a different Realm. - - The object to be added must be valid and cannot have been previously deleted - from a Realm (i.e. `isInvalidated`) must be false. - - @warning This method can only be called during a write transaction. - - @param object Object to be added to this Realm. - */ -- (void)addObject:(RLMObject *)object; - -/** - Adds objects in the given array to be persisted in this Realm. - - This is the equivalent of `addObject:` except for an array of objects. - - @warning This method can only be called during a write transaction. - - @param array An enumerable object such as NSArray or RLMResults which contains objects to be added to - this Realm. - - @see addObject: - */ -- (void)addObjects:(id)array; - -/** - Adds or updates an object to be persisted in this Realm. The object provided must have a designated - primary key. If no objects exist in the RLMRealm instance with the same primary key value, the object is - inserted. Otherwise, the existing object is updated with any changed values. - - As with `addObject:`, the object cannot already be persisted in a different - Realm. Use `-[RLMObject createOrUpdateInRealm:withValue:]` to copy values to - a different Realm. - - @warning This method can only be called during a write transaction. - - @param object Object to be added or updated. - */ -- (void)addOrUpdateObject:(RLMObject *)object; - -/** - Adds or updates objects in the given array to be persisted in this Realm. - - This is the equivalent of `addOrUpdateObject:` except for an array of objects. - - @warning This method can only be called during a write transaction. - - @param array `NSArray`, `RLMArray`, or `RLMResults` of `RLMObject`s (or subclasses) to be added to this Realm. - - @see addOrUpdateObject: - */ -- (void)addOrUpdateObjectsFromArray:(id)array; - -/** - Delete an object from this Realm. - - @warning This method can only be called during a write transaction. - - @param object Object to be deleted from this Realm. - */ -- (void)deleteObject:(RLMObject *)object; - -/** - Delete an `NSArray`, `RLMArray`, or `RLMResults` of objects from this Realm. - - @warning This method can only be called during a write transaction. - - @param array `RLMArray`, `NSArray`, or `RLMResults` of `RLMObject`s to be deleted. - */ -- (void)deleteObjects:(id)array; - -/** - Deletes all objects in this Realm. - - @warning This method can only be called during a write transaction. - */ -- (void)deleteAllObjects; - - -#pragma mark - Migrations - -/** - Migration block used to migrate a Realm. - - @param migration `RLMMigration` object used to perform the migration. The - migration object allows you to enumerate and alter any - existing objects which require migration. - - @param oldSchemaVersion The schema version of the `RLMRealm` being migrated. - */ -typedef void (^RLMMigrationBlock)(RLMMigration *migration, uint64_t oldSchemaVersion); - -/** - Get the schema version for a Realm at a given path. - - @param realmPath Path to a Realm file - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. - - @return The version of the Realm at `realmPath` or RLMNotVersioned if the version cannot be read. - */ -+ (uint64_t)schemaVersionAtPath:(NSString *)realmPath error:(NSError **)error; - -/** - Get the schema version for an encrypted Realm at a given path. - - @param realmPath Path to a Realm file - @param key 64-byte encryption key. - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. - - @return The version of the Realm at `realmPath` or RLMNotVersioned if the version cannot be read. - */ -+ (uint64_t)schemaVersionAtPath:(NSString *)realmPath encryptionKey:(nullable NSData *)key error:(NSError **)error; - -/** - Performs the given Realm configuration's migration block on a Realm at the given path. - - This method is called automatically when opening a Realm for the first time and does - not need to be called explicitly. You can choose to call this method to control - exactly when and how migrations are performed. - - @param configuration The Realm configuration used to open and migrate the Realm. - @return The error that occurred while applying the migration, if any. - - @see RLMMigration - */ -+ (NSError *)migrateRealm:(RLMRealmConfiguration *)configuration; - -@end - -/** - A token which is returned from methods which subscribe to changes to a Realm. - - Change subscriptions in Realm return an RLMNotificationToken which can be used - to unsubscribe from the changes. You must store a strong reference to the token - for as long as you want to continue to receive notifications. When you wish to - stop, call the `-stop` method. - */ -@interface RLMNotificationToken : NSObject -/// Stop receiving notifications for the subcription that returned this token. -- (void)stop; -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealmConfiguration.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealmConfiguration.h deleted file mode 100644 index 094016f..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealmConfiguration.h +++ /dev/null @@ -1,79 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2015 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -/** - An `RLMRealmConfiguration` is used to describe the different options used to - create an `RLMRealm` instance. - - `RLMRealmConfiguration` instances are just plain NSObjects, and unlike RLMRealm - and RLMObjects can be freely shared between threads as long as you do not - mutate them. Creating configuration objects for class subsets (by setting the - `objectClasses` property) can be expensive, and so you will normally want to - cache and reuse a single configuration object for each distinct configuration - that you are using rather than creating a new one each time you open a Realm. - */ -@interface RLMRealmConfiguration : NSObject - -#pragma mark - Default Configuration - -/** - Returns the default configuration used to create Realms when no other - configuration is explicitly specified (i.e. `+[RLMRealm defaultRealm]`). - - @return The default Realm configuration. - */ -+ (instancetype)defaultConfiguration; - -/** - Sets the default configuration to the given `RLMRealmConfiguration`. - - @param configuration The new default Realm configuration. - */ -+ (void)setDefaultConfiguration:(RLMRealmConfiguration *)configuration; - -#pragma mark - Properties - -/// The path to the realm file. Mutually exclusive with `inMemoryIdentifier`. -@property (nonatomic, copy, nullable) NSString *path; - -/// A string used to identify a particular in-memory Realm. Mutually exclusive with `path`. -@property (nonatomic, copy, nullable) NSString *inMemoryIdentifier; - -/// 64-byte key to use to encrypt the data. -@property (nonatomic, copy, nullable) NSData *encryptionKey; - -/// Whether the Realm is read-only (must be YES for read-only files). -@property (nonatomic) BOOL readOnly; - -/// The current schema version. -@property (nonatomic) uint64_t schemaVersion; - -/// The block which migrates the Realm to the current version. -@property (nonatomic, copy, nullable) RLMMigrationBlock migrationBlock; - -/// The classes persisted in the Realm. -@property (nonatomic, copy, nullable) NSArray *objectClasses; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealm_Dynamic.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealm_Dynamic.h deleted file mode 100644 index d778678..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealm_Dynamic.h +++ /dev/null @@ -1,130 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import -#import - -@class RLMResults; - -@interface RLMRealm (Dynamic) - -#pragma mark - Getting Objects from a Realm - -/** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use the class methods on `RLMObject`. - - Get all objects of a given type in this Realm. - - The preferred way to get objects of a single class is to use the class methods on RLMObject. - - @warning This method is useful only in specialized circumstances. - - @param className The name of the RLMObject subclass to retrieve on e.g. `MyClass.className`. - - @return An RLMResults of all objects in this realm of the given type. - - @see RLMObject allObjects - */ -- (RLMResults *)allObjects:(NSString *)className; - -/** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use the class methods on `RLMObject`. - - Get objects matching the given predicate from the this Realm. - - The preferred way to get objects of a single class is to use the class methods on RLMObject. - - @warning This method is useful only in specialized circumstances. - - @param className The type of objects you are looking for (name of the class). - @param predicateFormat The predicate format string which can accept variable arguments. - - @return An RLMResults of results matching the given predicate. - - @see RLMObject objectsWhere: - */ -- (RLMResults *)objects:(NSString *)className where:(NSString *)predicateFormat, ...; - -/** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use the class methods on `RLMObject`. - - Get objects matching the given predicate from the this Realm. - - The preferred way to get objects of a single class is to use the class methods on RLMObject. - - @warning This method is useful only in specialized circumstances. - - @param className The type of objects you are looking for (name of the class). - @param predicate The predicate to filter the objects. - - @return An RLMResults of results matching the given predicate. - - @see RLMObject objectsWhere: - */ -- (RLMResults *)objects:(NSString *)className withPredicate:(NSPredicate *)predicate; - -/** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use the class methods on `RLMObject`. - - Get an object of a given class name with a primary key - - The preferred way to get an object of a single class is to use the class methods on RLMObject. - - @warning This method is useful only in specialized circumstances. - - @param className The class name for the object you are looking for - @param primaryKey The primary key value for the object you are looking for - - @return An object or nil if an object with the given primary key does not exist. - - @see RLMObject objectForPrimaryKey: - */ -- (RLMObject *)objectWithClassName:(NSString *)className forPrimaryKey:(id)primaryKey; - -/** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use [RLMObject createInDefaultRealmWithValue:]. - - Create an RLMObject of type `className` in the Realm with a given object. - - @warning This method is useful only in specialized circumstances. - - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as - the properties defined in the model. - - @return An RLMObject of type `className` - */ --(RLMObject *)createObject:(NSString *)className withValue:(id)value; - -@end diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMResults.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMResults.h deleted file mode 100644 index 6f355fe..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMResults.h +++ /dev/null @@ -1,280 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMObject, RLMRealm, RLMNotificationToken; - -/** - RLMResults is an auto-updating container type in Realm returned from object - queries. - - RLMResults can be queried with the same predicates as RLMObject and RLMArray - and you can chain queries to further filter query results. - - RLMResults always reflect the current state of the Realm on the current thread, - including during write transactions on the current thread. The one exception to - this is when using `for...in` fast enumeration, which will always enumerate - over the objects which matched the query when the enumeration is begun, even if - some of them are deleted or modified to be excluded by the filter during the - enumeration. - - RLMResults are initially lazily evaluated, and only run queries when the result - of the query is requested. This means that chaining several temporary - RLMResults to sort and filter your data does not perform any extra work - processing the intermediate state. - - Once the results have been evaluated or a notification block has been added, - the results are eagerly kept up-to-date, with the work done to keep them - up-to-date done on a background thread whenever possible. - - RLMResults cannot be created directly. - */ -@interface RLMResults RLM_GENERIC_COLLECTION : NSObject - -#pragma mark - Properties - -/** - Number of objects in the results. - */ -@property (nonatomic, readonly, assign) NSUInteger count; - -/** - The class name (i.e. type) of the RLMObjects contained in this RLMResults. - */ -@property (nonatomic, readonly, copy) NSString *objectClassName; - -/** - The Realm this `RLMResults` is associated with. - */ -@property (nonatomic, readonly) RLMRealm *realm; - -#pragma mark - Accessing Objects from an RLMResults - -/** - Returns the object at the index specified. - - @param index The index to look up. - - @return An RLMObject of the type contained in this RLMResults. - */ -- (RLMObjectType)objectAtIndex:(NSUInteger)index; - -/** - Returns the first object in the results. - - Returns `nil` if called on an empty RLMResults. - - @return An RLMObject of the type contained in this RLMResults. - */ -- (nullable RLMObjectType)firstObject; - -/** - Returns the last object in the results. - - Returns `nil` if called on an empty RLMResults. - - @return An RLMObject of the type contained in this RLMResults. - */ -- (nullable RLMObjectType)lastObject; - -#pragma mark - Querying Results - -/** - Gets the index of an object. - - Returns NSNotFound if the object is not found in this RLMResults. - - @param object An object (of the same type as returned from the objectClassName selector). - */ -- (NSUInteger)indexOfObject:(RLMObjectArgument)object; - -/** - Gets the index of the first object matching the predicate. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return Index of object or NSNotFound if the object is not found in this RLMResults. - */ -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Gets the index of the first object matching the predicate. - - @param predicate The predicate to filter the objects. - - @return Index of object or NSNotFound if the object is not found in this RLMResults. - */ -- (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate; - -/** - Get objects matching the given predicate in the RLMResults. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Get objects matching the given predicate in the RLMResults. - - @param predicate The predicate to filter the objects. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults RLM_GENERIC_RETURN*)objectsWithPredicate:(NSPredicate *)predicate; - -/** - Get a sorted `RLMResults` from an existing `RLMResults` sorted by a property. - - @param property The property name to sort by. - @param ascending The direction to sort by. - - @return An RLMResults sorted by the specified property. - */ -- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending; - -/** - Get a sorted `RLMResults` from an existing `RLMResults` sorted by an `NSArray`` of `RLMSortDescriptor`s. - - @param properties An array of `RLMSortDescriptor`s to sort by. - - @return An RLMResults sorted by the specified properties. - */ -- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingDescriptors:(NSArray *)properties; - -#pragma mark - Notifications - -/** - Register a block to be called each time the RLMResults changes. - - The block will be asynchronously called with the initial results, and then - called again after each write transaction which causes the results to change. - You must retain the returned token for as long as you want the results to - continue to be sent to the block. To stop receiving updates, call -stop on the - token. - - The determination for whether or not a write transaction has changed the - results is currently very coarse, and the block may be called even if no - changes occurred. The opposite (not being called despite changes) will not - happen. This will become more precise in future versions. - - If an error occurs the block will be called with `nil` for the results - parameter and a non-`nil` error. Currently the only errors that can occur are - when opening the RLMRealm on the background worker thread or the destination - queue fails. - - At the time when the block is called, the RLMResults object will be fully - evaluated and up-to-date, and as long as you do not perform a write transaction - on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will - never perform blocking work. - - @warning This method cannot be called during a write transaction, or when the - containing realm is read-only. - - @param block The block to be called with the evaluated results. - @return A token which must be held for as long as you want query results to be delivered. - */ -- (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults RLM_GENERIC_RETURN *__nullable results, NSError *__nullable error))block RLM_WARN_UNUSED_RESULT; - -#pragma mark - Aggregating Property Values - -/** - Returns the minimum (lowest) value of the given property - - NSNumber *min = [results minOfProperty:@"age"]; - - @warning You cannot use this method on RLMObject, RLMArray, and NSData properties. - - @param property The property to look for a minimum on. Only properties of type int, float, double and NSDate are supported. - - @return The minimum value for the property amongst objects in an RLMResults. - */ -- (nullable id)minOfProperty:(NSString *)property; - -/** - Returns the maximum (highest) value of the given property of objects in an RLMResults - - NSNumber *max = [results maxOfProperty:@"age"]; - - @warning You cannot use this method on RLMObject, RLMArray, and NSData properties. - - @param property The property to look for a maximum on. Only properties of type int, float, double and NSDate are supported. - - @return The maximum value for the property amongst objects in an RLMResults - */ -- (nullable id)maxOfProperty:(NSString *)property; - -/** - Returns the sum of the given property for objects in an RLMResults. - - NSNumber *sum = [results sumOfProperty:@"age"]; - - @warning You cannot use this method on RLMObject, RLMArray, and NSData properties. - - @param property The property to calculate sum on. Only properties of type int, float and double are supported. - - @return The sum of the given property over all objects in an RLMResults. - */ -- (NSNumber *)sumOfProperty:(NSString *)property; - -/** - Returns the average of a given property for objects in an RLMResults. - - NSNumber *average = [results averageOfProperty:@"age"]; - - @warning You cannot use this method on RLMObject, RLMArray, and NSData properties. - - @param property The property to calculate average on. Only properties of type int, float and double are supported. - - @return The average for the given property amongst objects in an RLMResults. This will be of type double for both - float and double properties. - */ -- (nullable NSNumber *)averageOfProperty:(NSString *)property; - -/// :nodoc: -- (id)objectAtIndexedSubscript:(NSUInteger)index; - -#pragma mark - Unavailable Methods - -/** - -[RLMResults init] is not available because RLMResults cannot be created directly. - RLMResults can be obtained by querying a Realm. - */ -- (instancetype)init __attribute__((unavailable("RLMResults cannot be created directly"))); - -/** - +[RLMResults new] is not available because RLMResults cannot be created directly. - RLMResults can be obtained by querying a Realm. - */ -+ (instancetype)new __attribute__((unavailable("RLMResults cannot be created directly"))); - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSchema.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSchema.h deleted file mode 100644 index 6549706..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSchema.h +++ /dev/null @@ -1,76 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMObjectSchema; - -/** - This class represents the collection of model object schemas persisted to Realm. - - When using Realm, RLMSchema objects allow performing migrations and - introspecting the database's schema. - - Schemas map to collections of tables in the core database. - */ -@interface RLMSchema : NSObject - -#pragma mark - Properties - -/** - An NSArray containing RLMObjectSchemas for all object types in this Realm. Meant - to be used during migrations for dynamic introspection. - - @see RLMObjectSchema - */ -@property (nonatomic, readonly, copy) NSArray RLM_GENERIC(RLMObjectSchema *) *objectSchema; - -#pragma mark - Methods - -/** - Returns an RLMObjectSchema for the given class name in this RLMSchema. - - @param className The object class name. - @return RLMObjectSchema for the given class in this RLMSchema. - - @see RLMObjectSchema - */ -- (nullable RLMObjectSchema *)schemaForClassName:(NSString *)className; - -/** - Look up an RLMObjectSchema for the given class name in this Realm. Throws - an exception if there is no object of type className in this RLMSchema instance. - - @param className The object class name. - @return RLMObjectSchema for the given class in this Realm. - - @see RLMObjectSchema - */ -- (RLMObjectSchema *)objectForKeyedSubscript:(id )className; - -/** - Returns YES if equal to schema - */ -- (BOOL)isEqualToSchema:(RLMSchema *)schema; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/Realm.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/Realm.h deleted file mode 100644 index 886f19e..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/Realm.h +++ /dev/null @@ -1,30 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Modules/module.modulemap b/Carthage/Build/Mac/Realm.framework/Versions/A/Modules/module.modulemap deleted file mode 100644 index 18b5e2e..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Modules/module.modulemap +++ /dev/null @@ -1,27 +0,0 @@ -framework module Realm { - umbrella header "Realm.h" - - export * - module * { export * } - - explicit module Private { - header "RLMAccessor.h" - header "RLMArray_Private.h" - header "RLMListBase.h" - header "RLMMigration_Private.h" - header "RLMObjectSchema_Private.h" - header "RLMObjectStore.h" - header "RLMObject_Private.h" - header "RLMOptionalBase.h" - header "RLMProperty_Private.h" - header "RLMRealmConfiguration_Private.h" - header "RLMRealm_Private.h" - header "RLMResults_Private.h" - header "RLMSchema_Private.h" - } - - explicit module Dynamic { - header "RLMRealm_Dynamic.h" - header "RLMObjectBase_Dynamic.h" - } -} diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMAccessor.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMAccessor.h deleted file mode 100644 index 23a4317..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMAccessor.h +++ /dev/null @@ -1,64 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import - -@class RLMObjectSchema, RLMProperty, RLMObjectBase, RLMProperty; - -#ifdef __cplusplus -typedef NSUInteger RLMCreationOptions; -#else -typedef NS_OPTIONS(NSUInteger, RLMCreationOptions); -#endif - -RLM_ASSUME_NONNULL_BEGIN - -// -// Accessors Class Creation/Caching -// - -// get accessor classes for an object class - generates classes if not cached -Class RLMAccessorClassForObjectClass(Class objectClass, RLMObjectSchema *schema, NSString *prefix); -Class RLMStandaloneAccessorClassForObjectClass(Class objectClass, RLMObjectSchema *schema); - -// Check if a given class is a generated accessor class -bool RLMIsGeneratedClass(Class cls); - -// -// Dynamic getters/setters -// -FOUNDATION_EXTERN void RLMDynamicValidatedSet(RLMObjectBase *obj, NSString *propName, id __nullable val); -FOUNDATION_EXTERN RLMProperty *RLMValidatedGetProperty(RLMObjectBase *obj, NSString *propName); -FOUNDATION_EXTERN id __nullable RLMDynamicGet(RLMObjectBase *obj, RLMProperty *prop); - -// by property/column -FOUNDATION_EXTERN void RLMDynamicSet(RLMObjectBase *obj, RLMProperty *prop, id val, RLMCreationOptions options); - -// -// Class modification -// - -// Replace className method for the given class -void RLMReplaceClassNameMethod(Class accessorClass, NSString *className); - -// Replace sharedSchema method for the given class -void RLMReplaceSharedSchemaMethod(Class accessorClass, RLMObjectSchema * __nullable schema); - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMArray_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMArray_Private.h deleted file mode 100644 index 592dd57..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMArray_Private.h +++ /dev/null @@ -1,24 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@interface RLMArray () -- (instancetype)initWithObjectClassName:(NSString *)objectClassName; -- (NSString *)descriptionWithMaxDepth:(NSUInteger)depth; -@end diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMListBase.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMListBase.h deleted file mode 100644 index a8057a6..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMListBase.h +++ /dev/null @@ -1,29 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMArray; - -// A base class for Swift generic Lists to make it possible to interact with -// them from obj-c -@interface RLMListBase : NSObject -@property (nonatomic, strong) RLMArray *_rlmArray; - -- (instancetype)initWithArray:(RLMArray *)array; -@end diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMMigration_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMMigration_Private.h deleted file mode 100644 index 4b54c89..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMMigration_Private.h +++ /dev/null @@ -1,34 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import -#import - -typedef void (^RLMObjectBaseMigrationBlock)(RLMObjectBase *oldObject, RLMObjectBase *newObject); - -@interface RLMMigration () - -@property (nonatomic, strong) RLMRealm *oldRealm; -@property (nonatomic, strong) RLMRealm *realm; - -- (instancetype)initWithRealm:(RLMRealm *)realm oldRealm:(RLMRealm *)oldRealm; - -- (void)execute:(RLMMigrationBlock)block; - -@end diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectSchema_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectSchema_Private.h deleted file mode 100644 index 10b6473..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectSchema_Private.h +++ /dev/null @@ -1,70 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMRealm; - -// RLMObjectSchema private -@interface RLMObjectSchema () - -// writable redecleration -@property (nonatomic, readwrite, copy) NSArray RLM_GENERIC(RLMProperty *) *properties; -@property (nonatomic, readwrite, assign) bool isSwiftClass; - -// class used for this object schema -@property (nonatomic, readwrite, assign) Class objectClass; -@property (nonatomic, readwrite, assign) Class accessorClass; -@property (nonatomic, readwrite, assign) Class standaloneClass; - -@property (nonatomic, readwrite, nullable) RLMProperty *primaryKeyProperty; - -@property (nonatomic, readonly) NSArray RLM_GENERIC(RLMProperty *) *propertiesInDeclaredOrder; - -// The Realm retains its object schemas, so they need to not retain the Realm -@property (nonatomic, unsafe_unretained, nullable) RLMRealm *realm; -// returns a cached or new schema for a given object class -+ (instancetype)schemaForObjectClass:(Class)objectClass; - -- (void)sortPropertiesByColumn; - -@end - -@interface RLMObjectSchema (Dynamic) -/** - This method is useful only in specialized circumstances, for example, when accessing objects - in a Realm produced externally. If you are simply building an app on Realm, it is not recommened - to use this method as an [RLMObjectSchema](RLMObjectSchema) is generated automatically for every [RLMObject](RLMObject) subclass. - - Initialize an RLMObjectSchema with classname, objectClass, and an array of properties - - @warning This method is useful only in specialized circumstances. - - @param objectClassName The name of the class used to refer to objects of this type. - @param objectClass The objective-c class used when creating instances of this type. - @param properties An array RLMProperty describing the persisted properties for this type. - - @return An initialized instance of RLMObjectSchema. - */ -- (instancetype)initWithClassName:(NSString *)objectClassName objectClass:(Class)objectClass properties:(NSArray *)properties; -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectStore.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectStore.h deleted file mode 100644 index 590d0ef..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectStore.h +++ /dev/null @@ -1,99 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#ifdef __cplusplus -extern "C" { -#endif - -@class RLMRealm, RLMSchema, RLMObjectSchema, RLMObjectBase, RLMResults, RLMProperty; - -// -// Accessor Creation -// - -// create or get cached accessors for the given schema -void RLMRealmCreateAccessors(RLMSchema *schema); - -// Clear the cache of created accessor classes -void RLMClearAccessorCache(); - - -// -// Options for object creation -// -typedef NS_OPTIONS(NSUInteger, RLMCreationOptions) { - // Normal object creation - RLMCreationOptionsNone = 0, - // If the property is a link or array property, upsert the linked objects - // if they have a primary key, and insert them otherwise. - RLMCreationOptionsCreateOrUpdate = 1 << 0, - // Allow standalone objects to be promoted to persisted objects - // if false objects are copied during object creation - RLMCreationOptionsPromoteStandalone = 1 << 1, -}; - - -// -// Adding, Removing, Getting Objects -// - -// add an object to the given realm -void RLMAddObjectToRealm(RLMObjectBase *object, RLMRealm *realm, bool createOrUpdate); - -// delete an object from its realm -void RLMDeleteObjectFromRealm(RLMObjectBase *object, RLMRealm *realm); - -// deletes all objects from a realm -void RLMDeleteAllObjectsFromRealm(RLMRealm *realm); - -// get objects of a given class -RLMResults *RLMGetObjects(RLMRealm *realm, NSString *objectClassName, NSPredicate *predicate) NS_RETURNS_RETAINED; - -// get an object with the given primary key -id RLMGetObject(RLMRealm *realm, NSString *objectClassName, id key) NS_RETURNS_RETAINED; - -// create object from array or dictionary -RLMObjectBase *RLMCreateObjectInRealmWithValue(RLMRealm *realm, NSString *className, id value, bool createOrUpdate) NS_RETURNS_RETAINED; - - -// -// Accessor Creation -// - - -// switch List<> properties from being backed by standalone RLMArrays to RLMArrayLinkView -void RLMInitializeSwiftAccessorGenerics(RLMObjectBase *object); - -#ifdef __cplusplus -} - -namespace realm { - class Table; - template class BasicRowExpr; - using RowExpr = BasicRowExpr; -} -// Create accessors -RLMObjectBase *RLMCreateObjectAccessor(RLMRealm *realm, - RLMObjectSchema *objectSchema, - NSUInteger index) NS_RETURNS_RETAINED; -RLMObjectBase *RLMCreateObjectAccessor(RLMRealm *realm, - RLMObjectSchema *objectSchema, - realm::RowExpr row) NS_RETURNS_RETAINED; -#endif diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObject_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObject_Private.h deleted file mode 100644 index 2c7e96f..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObject_Private.h +++ /dev/null @@ -1,89 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -// RLMObject accessor and read/write realm -@interface RLMObjectBase () { - @public - RLMRealm *_realm; - // objectSchema is a cached pointer to an object stored in the RLMSchema - // owned by _realm, so it's guaranteed to stay alive as long as this object - // without retaining it (and retaining it makes iteration slower) - __unsafe_unretained RLMObjectSchema *_objectSchema; -} - -// standalone initializer -- (instancetype)initWithValue:(id)value schema:(RLMSchema *)schema; - -// live accessor initializer -- (instancetype)initWithRealm:(__unsafe_unretained RLMRealm *const)realm - schema:(__unsafe_unretained RLMObjectSchema *const)schema; - -// shared schema for this class -+ (RLMObjectSchema *)sharedSchema; - -// provide injection point for alternative Swift object util class -+ (Class)objectUtilClass:(BOOL)isSwift; - -@end - -@interface RLMDynamicObject : RLMObject - -@end - -// -// Getters and setters for RLMObjectBase ivars for realm and objectSchema -// -FOUNDATION_EXTERN void RLMObjectBaseSetRealm(RLMObjectBase *object, RLMRealm *realm); -FOUNDATION_EXTERN RLMRealm *RLMObjectBaseRealm(RLMObjectBase *object); -FOUNDATION_EXTERN void RLMObjectBaseSetObjectSchema(RLMObjectBase *object, RLMObjectSchema *objectSchema); -FOUNDATION_EXTERN RLMObjectSchema *RLMObjectBaseObjectSchema(RLMObjectBase *object); - -// Get linking objects for an RLMObjectBase -FOUNDATION_EXTERN NSArray *RLMObjectBaseLinkingObjectsOfClass(RLMObjectBase *object, NSString *className, NSString *property); - -// Dynamic access to RLMObjectBase properties -FOUNDATION_EXTERN id RLMObjectBaseObjectForKeyedSubscript(RLMObjectBase *object, NSString *key); -FOUNDATION_EXTERN void RLMObjectBaseSetObjectForKeyedSubscript(RLMObjectBase *object, NSString *key, id obj); - -// Calls valueForKey: and re-raises NSUndefinedKeyExceptions -FOUNDATION_EXTERN id RLMValidatedValueForProperty(id object, NSString *key, NSString *className); - -// Compare two RLObjectBases -FOUNDATION_EXTERN BOOL RLMObjectBaseAreEqual(RLMObjectBase *o1, RLMObjectBase *o2); - -// Get ObjectUil class for objc or swift -FOUNDATION_EXTERN Class RLMObjectUtilClass(BOOL isSwift); - -FOUNDATION_EXTERN const NSUInteger RLMDescriptionMaxDepth; - -@class RLMProperty, RLMArray; -@interface RLMObjectUtil : NSObject - -+ (NSArray RLM_GENERIC(NSString *) *)ignoredPropertiesForClass:(Class)cls; -+ (NSArray RLM_GENERIC(NSString *) *)indexedPropertiesForClass:(Class)cls; - -+ (NSArray RLM_GENERIC(NSString *) *)getGenericListPropertyNames:(id)obj; -+ (void)initializeListProperty:(RLMObjectBase *)object property:(RLMProperty *)property array:(RLMArray *)array; -+ (void)initializeOptionalProperty:(RLMObjectBase *)object property:(RLMProperty *)property; - -+ (NSDictionary RLM_GENERIC(NSString *, NSNumber *) *)getOptionalProperties:(id)obj; -+ (NSArray RLM_GENERIC(NSString *) *)requiredPropertiesForClass:(Class)cls; - -@end diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMOptionalBase.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMOptionalBase.h deleted file mode 100644 index bab04a5..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMOptionalBase.h +++ /dev/null @@ -1,34 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2015 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -@class RLMObjectBase, RLMProperty; - -@interface RLMOptionalBase : NSProxy - -- (instancetype)init; - -@property (nonatomic, weak) RLMObjectBase *object; - -@property (nonatomic, unsafe_unretained) RLMProperty *property; - -@property (nonatomic, strong) id underlyingValue; - -@end diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMProperty_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMProperty_Private.h deleted file mode 100644 index 5223764..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMProperty_Private.h +++ /dev/null @@ -1,93 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import - -@class RLMObjectBase; - -FOUNDATION_EXTERN BOOL RLMPropertyTypeIsNullable(RLMPropertyType propertyType); -FOUNDATION_EXTERN BOOL RLMPropertyTypeIsNumeric(RLMPropertyType propertyType); - -// private property interface -@interface RLMProperty () - -- (instancetype)initWithName:(NSString *)name - indexed:(BOOL)indexed - property:(objc_property_t)property; - -- (instancetype)initSwiftPropertyWithName:(NSString *)name - indexed:(BOOL)indexed - property:(objc_property_t)property - instance:(RLMObjectBase *)objectInstance; - -- (instancetype)initSwiftListPropertyWithName:(NSString *)name - ivar:(Ivar)ivar - objectClassName:(NSString *)objectClassName; - -- (instancetype)initSwiftOptionalPropertyWithName:(NSString *)name - indexed:(BOOL)indexed - ivar:(Ivar)ivar - propertyType:(RLMPropertyType)propertyType; - -// private setters -@property (nonatomic, assign) NSUInteger column; -@property (nonatomic, readwrite, assign) RLMPropertyType type; -@property (nonatomic, readwrite) BOOL indexed; -@property (nonatomic, readwrite) BOOL optional; -@property (nonatomic, copy) NSString *objectClassName; - -// private properties -@property (nonatomic, assign) char objcType; -@property (nonatomic, copy) NSString *objcRawType; -@property (nonatomic, assign) BOOL isPrimary; -@property (nonatomic, assign) Ivar swiftIvar; -@property (nonatomic, assign) NSUInteger declarationIndex; - -// getter and setter names -@property (nonatomic, copy) NSString *getterName; -@property (nonatomic, copy) NSString *setterName; -@property (nonatomic) SEL getterSel; -@property (nonatomic) SEL setterSel; - -@end - -@interface RLMProperty (Dynamic) -/** - This method is useful only in specialized circumstances, for example, in conjunction with - +[RLMObjectSchema initWithClassName:objectClass:properties:]. If you are simply building an - app on Realm, it is not recommened to use this method. - - Initialize an RLMProperty - - @warning This method is useful only in specialized circumstances. - - @param name The property name. - @param type The property type. - @param objectClassName The object type used for Object and Array types. - - @return An initialized instance of RLMProperty. - */ -- (instancetype)initWithName:(NSString *)name - type:(RLMPropertyType)type - objectClassName:(NSString *)objectClassName - indexed:(BOOL)indexed - optional:(BOOL)optional; -@end - diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealmConfiguration_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealmConfiguration_Private.h deleted file mode 100644 index 91770a2..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealmConfiguration_Private.h +++ /dev/null @@ -1,38 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2015 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMSchema; - -@interface RLMRealmConfiguration () - -@property (nonatomic, readwrite) bool cache; -@property (nonatomic, readwrite) bool dynamic; -@property (nonatomic, readwrite) bool disableFormatUpgrade; -@property (nonatomic, copy) RLMSchema *customSchema; - -// Get the default confiugration without copying it -+ (RLMRealmConfiguration *)rawDefaultConfiguration; - -+ (void)resetRealmConfigurationState; -@end - -// Get a path in the platform-appropriate documents directory with the given filename -FOUNDATION_EXTERN NSString *RLMRealmPathForFile(NSString *fileName); -FOUNDATION_EXTERN NSString *RLMRealmPathForFileAndBundleIdentifier(NSString *fileName, NSString *mainBundleIdentifier); diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealmUtil.hpp b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealmUtil.hpp deleted file mode 100644 index b69c727..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealmUtil.hpp +++ /dev/null @@ -1,42 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import -#import - -@class RLMRealm; - -namespace realm { - class BindingContext; -} - -// Add a Realm to the weak cache -void RLMCacheRealm(std::string const& path, RLMRealm *realm); -// Get a Realm for the given path which can be used on the current thread -RLMRealm *RLMGetThreadLocalCachedRealmForPath(std::string const& path); -// Get a Realm for the given path -RLMRealm *RLMGetAnyCachedRealmForPath(std::string const& path); -// Clear the weak cache of Realms -void RLMClearRealmCache(); - -// Install an uncaught exception handler that cancels write transactions -// for all cached realms on the current thread -void RLMInstallUncaughtExceptionHandler(); - -std::unique_ptr RLMCreateBindingContext(RLMRealm *realm); diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealm_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealm_Private.h deleted file mode 100644 index 68b3b82..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealm_Private.h +++ /dev/null @@ -1,86 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMFastEnumerator; - -// Disable syncing files to disk. Cannot be re-enabled. Use only for tests. -FOUNDATION_EXTERN void RLMDisableSyncToDisk(); - -FOUNDATION_EXTERN NSData *RLMRealmValidatedEncryptionKey(NSData *key); - -// Translate an in-flight exception resulting from opening a SharedGroup to -// an NSError or NSException (if error is nil) -void RLMRealmTranslateException(NSError **error); - -// RLMRealm private members -@interface RLMRealm () - -@property (nonatomic, readonly) BOOL dynamic; -@property (nonatomic, readwrite) RLMSchema *schema; - -+ (void)resetRealmState; - -/** - This method is useful only in specialized circumstances, for example, when opening Realm files - retrieved externally that contain a different schema than defined in your application. - If you are simply building an app on Realm you should consider using: - [defaultRealm]([RLMRealm defaultRealm]) or [realmWithPath:]([RLMRealm realmWithPath:]) - - Obtains an `RLMRealm` instance with persistence to a specific file path with - options. - - @warning This method is useful only in specialized circumstances. - - @param path Path to the file you want the data saved in. - @param key 64-byte key to use to encrypt the data. - @param readonly `BOOL` indicating if this Realm is read-only (must use for read-only files) - @param inMemory `BOOL` indicating if this Realm is in-memory - @param dynamic `BOOL` indicating if this Realm is dynamic - @param customSchema `RLMSchema` object representing the schema for the Realm - @param outError If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in NULL. - - @return An `RLMRealm` instance. - - @see RLMRealm defaultRealm - @see RLMRealm realmWithPath: - @see RLMRealm realmWithPath:readOnly:error: - @see RLMRealm realmWithPath:encryptionKey:readOnly:error: - */ -+ (instancetype)realmWithPath:(NSString *)path - key:(NSData *)key - readOnly:(BOOL)readonly - inMemory:(BOOL)inMemory - dynamic:(BOOL)dynamic - schema:(RLMSchema *)customSchema - error:(NSError **)outError; - -- (void)registerEnumerator:(RLMFastEnumerator *)enumerator; -- (void)unregisterEnumerator:(RLMFastEnumerator *)enumerator; -- (void)detachAllEnumerators; - -- (void)sendNotifications:(NSString *)notification; -- (void)verifyThread; -- (void)verifyNotificationsAreSupported; - -+ (NSString *)writeableTemporaryPathForFile:(NSString *)fileName; - -@end diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMResults_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMResults_Private.h deleted file mode 100644 index 7bdfa84..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMResults_Private.h +++ /dev/null @@ -1,25 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMObjectSchema; - -@interface RLMResults () -@property (nonatomic, unsafe_unretained) RLMObjectSchema *objectSchema; -@end diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMSchema_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMSchema_Private.h deleted file mode 100644 index e951553..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMSchema_Private.h +++ /dev/null @@ -1,66 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#ifdef __cplusplus -extern "C" { -#endif - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMRealm; - -// -// RLMSchema private interface -// -@interface RLMSchema () - -/** - Returns an `RLMSchema` containing only the given `RLMObject` subclasses. - - @param classes The classes to be included in the schema. - - @return An `RLMSchema` containing only the given classes. - */ -+ (instancetype)schemaWithObjectClasses:(NSArray RLM_GENERIC(Class) *)classes; - -@property (nonatomic, readwrite, copy) NSArray RLM_GENERIC(RLMObjectSchema *) *objectSchema; - -// schema based on runtime objects -+ (instancetype)sharedSchema; - -// schema based upon all currently registered object classes -+ (instancetype)partialSharedSchema; - -// class for string -+ (nullable Class)classForString:(NSString *)className; - -// shallow copy for reusing schema properties accross the same Realm on multiple threads -- (instancetype)shallowCopy; - -+ (RLMObjectSchema *)sharedSchemaForClass:(Class)cls; - -@end - -RLM_ASSUME_NONNULL_END - -#ifdef __cplusplus -} -#endif diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Realm b/Carthage/Build/Mac/Realm.framework/Versions/A/Realm deleted file mode 100755 index 0e2f254..0000000 Binary files a/Carthage/Build/Mac/Realm.framework/Versions/A/Realm and /dev/null differ diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/CHANGELOG.md b/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/CHANGELOG.md deleted file mode 100644 index 23bdb96..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/CHANGELOG.md +++ /dev/null @@ -1,1516 +0,0 @@ -0.98.6 Release notes (2016-03-25) -============================================================= - -Prebuilt frameworks are now built with Xcode 7.3. - -### API breaking changes - -* None. - -### Enhancements - -* None. - -### Bugfixes - -* Fix running unit tests on iOS simulators and devices with Xcode 7.3. - -0.98.5 Release notes (2016-03-14) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* None. - -### Bugfixes - -* Fix a crash when opening a Realm on 32-bit iOS devices. - -0.98.4 Release notes (2016-03-10) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* None. - -### Bugfixes - -* Properly report changes made by adding an object to a Realm with - addOrUpdate:/createOrUpdate: to KVO observers for existing objects with that - primary key. -* Fix crashes and assorted issues when a migration which added object link - properties is rolled back due to an error in the migration block. -* Fix assertion failures when deleting objects within a migration block of a - type which had an object link property added in that migration. -* Fix an assertion failure in `Query::apply_patch` when updating certain kinds - of queries after a write transaction is committed. - -0.98.3 Release notes (2016-02-26) -============================================================= - -### Enhancements - -* Initializing the shared schema is 3x faster. - -### Bugfixes - -* Using Realm Objective-C from Swift while having Realm Swift linked no longer causes that the - declared `ignoredProperties` are not taken into account. -* Fix assertion failures when rolling back a migration which added Object link - properties to a class. -* Fix potential errors when cancelling a write transaction which modified - multiple `RLMArray`/`List` properties. -* Report the correct value for inWriteTransaction after attempting to commit a - write transaction fails. -* Support CocoaPods 1.0 beginning from prerelease 1.0.0.beta.4 while retaining - backwards compatibility with 0.39. - -0.98.2 Release notes (2016-02-18) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Aggregate operations (`ANY`, `NONE`, `@count`, `SUBQUERY`, etc.) are now supported for key paths - that begin with an object relationship so long as there is a `RLMArray`/`List` property at some - point in a key path. -* Predicates of the form `%@ IN arrayProperty` are now supported. - -### Bugfixes - -* Use of KVC collection operators on Swift collection types no longer throws an exception. -* Fix reporting of inWriteTransaction in notifications triggered by - `beginWriteTransaction`. -* The contents of `List` and `Optional` properties are now correctly preserved when copying - a Swift object from one Realm to another, and performing other operations that result in a - Swift object graph being recursively traversed from Objective-C. -* Fix a deadlock when queries are performed within a Realm notification block. -* The `ANY` / `SOME` / `NONE` qualifiers are now required in comparisons involving a key path that - traverse a `RLMArray`/`List` property. Previously they were only required if the first key in the - key path was an `RLMArray`/`List` property. -* Fix several scenarios where the default schema would be initialized - incorrectly if the first Realm opened used a restricted class subset (via - `objectClasses`/`objectTypes`). - -0.98.1 Release notes (2016-02-10) -============================================================= - -### Bugfixes - -* Fix crashes when deleting an object containing an `RLMArray`/`List` which had - previously been queried. -* Fix a crash when deleting an object containing an `RLMArray`/`List` with - active notification blocks. -* Fix duplicate file warnings when building via CocoaPods. -* Fix crash or incorrect results when calling `indexOfObject:` on an - `RLMResults` derived from an `RLMArray`. - -0.98.0 Release notes (2016-02-04) -============================================================= - -### API breaking changes - -* `+[RLMRealm realmWithPath:]`/`Realm.init(path:)` now inherits from the default - configuration. -* Swift 1.2 is no longer supported. - -### Enhancements - -* Add `addNotificationBlock` to `RLMResults`, `Results`, `RLMArray`, and - `List`, which calls the given block whenever the collection changes. -* Do a lot of the work for keeping `RLMResults`/`Results` up-to-date after - write transactions on a background thread to help avoid blocking the main - thread. -* `NSPredicate`'s `SUBQUERY` operator is now supported. It has the following limitations: - * `@count` is the only operator that may be applied to the `SUBQUERY` expression. - * The `SUBQUERY(…).@count` expression must be compared with a constant. - * Correlated subqueries are not yet supported. - -### Bugfixes - -* None. - -0.97.1 Release notes (2016-01-29) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Swift: Added `Error` enum allowing to catch errors e.g. thrown on initializing - `RLMRealm`/`Realm` instances. -* Fail with `RLMErrorFileNotFound` instead of the more generic `RLMErrorFileAccess`, - if no file was found when a realm was opened as read-only or if the directory part - of the specified path was not found when a copy should be written. -* Greatly improve performance when deleting objects with one or more indexed - properties. -* Indexing `BOOL`/`Bool` and `NSDate` properties are now supported. -* Swift: Add support for indexing optional properties. - -### Bugfixes - -* Fix incorrect results or crashes when using `-[RLMResults setValue:forKey:]` - on an RLMResults which was filtered on the key being set. -* Fix crashes when an RLMRealm is deallocated from the wrong thread. -* Fix incorrect results from aggregate methods on `Results`/`RLMResults` after - objects which were previously in the results are deleted. -* Fix a crash when adding a new property to an existing class with over a - million objects in the Realm. -* Fix errors when opening encrypted Realm files created with writeCopyToPath. -* Fix crashes or incorrect results for queries that use relationship equality - in cases where the `RLMResults` is kept alive and instances of the target class - of the relationship are deleted. - -0.97.0 Release notes (2015-12-17) -============================================================= - -### API breaking changes - -* All functionality deprecated in previous releases has been removed entirely. -* Add generic type annotations to NSArrays and NSDictionaries in public APIs. -* Adding a Realm notification block on a thread not currently running from - within a run loop throws an exception rather than silently never calling the - notification block. - -### Enhancements - -* Support for tvOS. -* Support for building Realm Swift from source when using Carthage. -* The block parameter of `-[RLMRealm transactionWithBlock:]`/`Realm.write(_:)` is - now marked as `__attribute__((noescape))`/`@noescape`. -* Many forms of queries with key paths on both sides of the comparison operator - are now supported. -* Add support for KVC collection operators in `RLMResults` and `RLMArray`. -* Fail instead of deadlocking in `+[RLMRealm sharedSchema]`, if a Swift property is initialized - to a computed value, which attempts to open a Realm on its own. - -### Bugfixes - -* Fix poor performance when calling `-[RLMRealm deleteObjects:]` on an - `RLMResults` which filtered the objects when there are other classes linking - to the type of the deleted objects. -* An exception is now thrown when defining `Object` properties of an unsupported - type. - -0.96.3 Release notes (2015-12-04) -============================================================= - -### Enhancements - -* Queries are no longer limited to 16 levels of grouping. -* Rework the implementation of encrypted Realms to no longer interfere with - debuggers. - -### Bugfixes - -* Fix crash when trying to retrieve object instances via `dynamicObjects`. -* Throw an exception when querying on a link providing objects, which are from a different Realm. -* Return empty results when querying on a link providing an unattached object. -* Fix crashes or incorrect results when calling `-[RLMRealm refresh]` during - fast enumeration. -* Add `Int8` support for `RealmOptional`, `MinMaxType` and `AddableType`. -* Set the default value for newly added non-optional NSData properties to a - zero-byte NSData rather than nil. -* Fix a potential crash when deleting all objects of a class. -* Fix performance problems when creating large numbers of objects with - `RLMArray`/`List` properties. -* Fix memory leak when using Object(value:) for subclasses with - `List` or `RealmOptional` properties. -* Fix a crash when computing the average of an optional integer property. -* Fix incorrect search results for some queries on integer properties. -* Add error-checking for nil realm parameters in many methods such as - `+[RLMObject allObjectsInRealm:]`. -* Fix a race condition between commits and opening Realm files on new threads - that could lead to a crash. -* Fix several crashes when opening Realm files. -* `-[RLMObject createInRealm:withValue:]`, `-[RLMObject createOrUpdateInRealm:withValue:]`, and - their variants for the default Realm now always match the contents of an `NSArray` against properties - in the same order as they are defined in the model. - -0.96.2 Release notes (2015-10-26) -============================================================= - -Prebuilt frameworks are now built with Xcode 7.1. - -### Bugfixes - -* Fix ignoring optional properties in Swift. -* Fix CocoaPods installation on case-sensitive file systems. - -0.96.1 Release notes (2015-10-20) -============================================================= - -### Bugfixes - -* Support assigning `Results` to `List` properties via KVC. -* Honor the schema version set in the configuration in `+[RLMRealm migrateRealm:]`. -* Fix crash when using optional Int16/Int32/Int64 properties in Swift. - -0.96.0 Release notes (2015-10-14) -============================================================= - -* No functional changes since beta2. - -0.96.0-beta2 Release notes (2015-10-08) -============================================================= - -### Bugfixes - -* Add RLMOptionalBase.h to the podspec. - -0.96.0-beta Release notes (2015-10-07) -============================================================= - -### API breaking changes - -* CocoaPods v0.38 or greater is now required to install Realm and RealmSwift - as pods. - -### Enhancements - -* Functionality common to both `List` and `Results` is now declared in a - `RealmCollectionType` protocol that both types conform to. -* `Results.realm` now returns an `Optional` in order to conform to - `RealmCollectionType`, but will always return `.Some()` since a `Results` - cannot exist independently from a `Realm`. -* Aggregate operations are now available on `List`: `min`, `max`, `sum`, - `average`. -* Committing write transactions (via `commitWrite` / `commitWriteTransaction` and - `write` / `transactionWithBlock`) now optionally allow for handling errors when - the disk is out of space. -* Added `isEmpty` property on `RLMRealm`/`Realm` to indicate if it contains any - objects. -* The `@count`, `@min`, `@max`, `@sum` and `@avg` collection operators are now - supported in queries. - -### Bugfixes - -* Fix assertion failure when inserting NSData between 8MB and 16MB in size. -* Fix assertion failure when rolling back a migration which removed an object - link or `RLMArray`/`List` property. -* Add the path of the file being opened to file open errors. -* Fix a crash that could be triggered by rapidly opening and closing a Realm - many times on multiple threads at once. -* Fix several places where exception messages included the name of the wrong - function which failed. - -0.95.3 Release notes (2015-10-05) -============================================================= - -### Bugfixes - -* Compile iOS Simulator framework architectures with `-fembed-bitcode-marker`. -* Fix crashes when the first Realm opened uses a class subset and later Realms - opened do not. -* Fix inconsistent errors when `Object(value: ...)` is used to initialize the - default value of a property of an `Object` subclass. -* Throw an exception when a class subset has objects with array or object - properties of a type that are not part of the class subset. - -0.95.2 Release notes (2015-09-24) -============================================================= - -* Enable bitcode for iOS and watchOS frameworks. -* Build libraries with Xcode 7 final rather than the GM. - -0.95.1 Release notes (2015-09-23) -============================================================= - -### Enhancements - -* Add missing KVO handling for moving and exchanging objects in `RLMArray` and - `List`. - -### Bugfixes - -* Setting the primary key property on persisted `RLMObject`s / `Object`s - via subscripting or key-value coding will cause an exception to be thrown. -* Fix crash due to race condition in `RLMRealmConfiguration` where the default - configuration was in the process of being copied in one thread, while - released in another. -* Fix crash when a migration which removed an object or array property is - rolled back due to an error. - -0.95.0 Release notes (2015-08-25) -============================================================= - -### API breaking changes - -* The following APIs have been deprecated in favor of the new `RLMRealmConfiguration` class in Realm Objective-C: - -| Deprecated API | New API | -|:------------------------------------------------------------------|:---------------------------------------------------------------------------------| -| `+[RLMRealm realmWithPath:readOnly:error:]` | `+[RLMRealm realmWithConfiguration:error:]` | -| `+[RLMRealm realmWithPath:encryptionKey:readOnly:error:]` | `+[RLMRealm realmWithConfiguration:error:]` | -| `+[RLMRealm setEncryptionKey:forRealmsAtPath:]` | `-[RLMRealmConfiguration setEncryptionKey:]` | -| `+[RLMRealm inMemoryRealmWithIdentifier:]` | `+[RLMRealm realmWithConfiguration:error:]` | -| `+[RLMRealm defaultRealmPath]` | `+[RLMRealmConfiguration defaultConfiguration]` | -| `+[RLMRealm setDefaultRealmPath:]` | `+[RLMRealmConfiguration setDefaultConfiguration:]` | -| `+[RLMRealm setDefaultRealmSchemaVersion:withMigrationBlock]` | `RLMRealmConfiguration.schemaVersion` and `RLMRealmConfiguration.migrationBlock` | -| `+[RLMRealm setSchemaVersion:forRealmAtPath:withMigrationBlock:]` | `RLMRealmConfiguration.schemaVersion` and `RLMRealmConfiguration.migrationBlock` | -| `+[RLMRealm migrateRealmAtPath:]` | `+[RLMRealm migrateRealm:]` | -| `+[RLMRealm migrateRealmAtPath:encryptionKey:]` | `+[RLMRealm migrateRealm:]` | - -* The following APIs have been deprecated in favor of the new `Realm.Configuration` struct in Realm Swift for Swift 1.2: - -| Deprecated API | New API | -|:--------------------------------------------------------------|:-----------------------------------------------------------------------------| -| `Realm.defaultPath` | `Realm.Configuration.defaultConfiguration` | -| `Realm(path:readOnly:encryptionKey:error:)` | `Realm(configuration:error:)` | -| `Realm(inMemoryIdentifier:)` | `Realm(configuration:error:)` | -| `Realm.setEncryptionKey(:forPath:)` | `Realm(configuration:error:)` | -| `setDefaultRealmSchemaVersion(schemaVersion:migrationBlock:)` | `Realm.Configuration.schemaVersion` and `Realm.Configuration.migrationBlock` | -| `setSchemaVersion(schemaVersion:realmPath:migrationBlock:)` | `Realm.Configuration.schemaVersion` and `Realm.Configuration.migrationBlock` | -| `migrateRealm(path:encryptionKey:)` | `migrateRealm(configuration:)` | - -* The following APIs have been deprecated in favor of the new `Realm.Configuration` struct in Realm Swift for Swift 2.0: - -| Deprecated API | New API | -|:--------------------------------------------------------------|:-----------------------------------------------------------------------------| -| `Realm.defaultPath` | `Realm.Configuration.defaultConfiguration` | -| `Realm(path:readOnly:encryptionKey:) throws` | `Realm(configuration:) throws` | -| `Realm(inMemoryIdentifier:)` | `Realm(configuration:) throws` | -| `Realm.setEncryptionKey(:forPath:)` | `Realm(configuration:) throws` | -| `setDefaultRealmSchemaVersion(schemaVersion:migrationBlock:)` | `Realm.Configuration.schemaVersion` and `Realm.Configuration.migrationBlock` | -| `setSchemaVersion(schemaVersion:realmPath:migrationBlock:)` | `Realm.Configuration.schemaVersion` and `Realm.Configuration.migrationBlock` | -| `migrateRealm(path:encryptionKey:)` | `migrateRealm(configuration:)` | - -* `List.extend` in Realm Swift for Swift 2.0 has been replaced with `List.appendContentsOf`, - mirroring changes to `RangeReplaceableCollectionType`. - -* Object properties on `Object` subclasses in Realm Swift must be marked as optional, - otherwise a runtime exception will be thrown. - -### Enhancements - -* Persisted properties of `RLMObject`/`Object` subclasses are now Key-Value - Observing compliant. -* The different options used to create Realm instances have been consolidated - into a single `RLMRealmConfiguration`/`Realm.Configuration` object. -* Enumerating Realm collections (`RLMArray`, `RLMResults`, `List<>`, - `Results<>`) now enumerates over a copy of the collection, making it no - longer an error to modify a collection during enumeration (either directly, - or indirectly by modifying objects to make them no longer match a query). -* Improve performance of object insertion in Swift to bring it roughly in line - with Objective-C. -* Allow specifying a specific list of `RLMObject` / `Object` subclasses to include - in a given Realm via `RLMRealmConfiguration.objectClasses` / `Realm.Configuration.objectTypes`. - -### Bugfixes - -* Subscripting on `RLMObject` is now marked as nullable. - -0.94.1 Release notes (2015-08-10) -============================================================= - -### API breaking changes - -* Building for watchOS requires Xcode 7 beta 5. - -### Enhancements - -* `Object.className` is now marked as `final`. - -### Bugfixes - -* Fix crash when adding a property to a model without updating the schema - version. -* Fix unnecessary redownloading of the core library when building from source. -* Fix crash when sorting by an integer or floating-point property on iOS 7. - -0.94.0 Release notes (2015-07-29) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Reduce the amount of memory used by RLMRealm notification listener threads. -* Avoid evaluating results eagerly when filtering and sorting. -* Add nullability annotations to the Objective-C API to provide enhanced compiler - warnings and bridging to Swift. -* Make `RLMResult`s and `RLMArray`s support Objective-C generics. -* Add support for building watchOS and bitcode-compatible apps. -* Make the exceptions thrown in getters and setters more informative. -* Add `-[RLMArray exchangeObjectAtIndex:withObjectAtIndex]` and `List.swap(_:_:)` - to allow exchanging the location of two objects in the given `RLMArray` / `List`. -* Added anonymous analytics on simulator/debugger runs. -* Add `-[RLMArray moveObjectAtIndex:toIndex:]` and `List.move(from:to:)` to - allow moving objects in the given `RLMArray` / `List`. - -### Bugfixes - -* Processes crashing due to an uncaught exception inside a write transaction will - no longer cause other processes using the same Realm to hang indefinitely. -* Fix incorrect results when querying for < or <= on ints that - require 64 bits to represent with a CPU that supports SSE 4.2. -* An exception will no longer be thrown when attempting to reset the schema - version or encryption key on an open Realm to the current value. -* Date properties on 32 bit devices will retain 64 bit second precision. -* Wrap calls to the block passed to `enumerate` in an autoreleasepool to reduce - memory growth when migrating a large amount of objects. -* In-memory realms no longer write to the Documents directory on iOS or - Application Support on OS X. - -0.93.2 Release notes (2015-06-12) -============================================================= - -### Bugfixes - -* Fixed an issue where the packaged OS X Realm.framework was built with - `GCC_GENERATE_TEST_COVERAGE_FILES` and `GCC_INSTRUMENT_PROGRAM_FLOW_ARCS` - enabled. -* Fix a memory leak when constructing standalone Swift objects with NSDate - properties. -* Throw an exception rather than asserting when an invalidated object is added - to an RLMArray. -* Fix a case where data loss would occur if a device was hard-powered-off - shortly after a write transaction was committed which had to expand the Realm - file. - -0.93.1 Release notes (2015-05-29) -============================================================= - -### Bugfixes - -* Objects are no longer copied into standalone objects during object creation. This fixes an issue where - nested objects with a primary key are sometimes duplicated rather than updated. -* Comparison predicates with a constant on the left of the operator and key path on the right now give - correct results. An exception is now thrown for predicates that do not yet support this ordering. -* Fix some crashes in `index_string.cpp` with int primary keys or indexed int properties. - -0.93.0 Release notes (2015-05-27) -============================================================= - -### API breaking changes - -* Schema versions are now represented as `uint64_t` (Objective-C) and `UInt64` (Swift) so that they have - the same representation on all architectures. - -### Enhancements - -* Swift: `Results` now conforms to `CVarArgType` so it can - now be passed as an argument to `Results.filter(_:...)` - and `List.filter(_:...)`. -* Swift: Made `SortDescriptor` conform to the `Equatable` and - `StringLiteralConvertible` protocols. -* Int primary keys are once again automatically indexed. -* Improve error reporting when attempting to mark a property of a type that - cannot be indexed as indexed. - -### Bugfixes - -* Swift: `RealmSwift.framework` no longer embeds `Realm.framework`, - which now allows apps using it to pass iTunes Connect validation. - -0.92.4 Release notes (2015-05-22) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Swift: Made `Object.init()` a required initializer. -* `RLMObject`, `RLMResults`, `Object` and `Results` can now be safely - deallocated (but still not used) from any thread. -* Improve performance of `-[RLMArray indexOfObjectWhere:]` and `-[RLMArray - indexOfObjectWithPredicate:]`, and implement them for standalone RLMArrays. -* Improved performance of most simple queries. - -### Bugfixes - -* The interprocess notification mechanism no longer uses dispatch worker threads, preventing it from - starving other GCD clients of the opportunity to execute blocks when dozens of Realms are open at once. - -0.92.3 Release notes (2015-05-13) -============================================================= - -### API breaking changes - -* Swift: `Results.average(_:)` now returns an optional, which is `nil` if and only if the results - set is empty. - -### Enhancements - -* Swift: Added `List.invalidated`, which returns if the given `List` is no longer - safe to be accessed, and is analogous to `-[RLMArray isInvalidated]`. -* Assertion messages are automatically logged to Crashlytics if it's loaded - into the current process to make it easier to diagnose crashes. - -### Bugfixes - -* Swift: Enumerating through a standalone `List` whose objects themselves - have list properties won't crash. -* Swift: Using a subclass of `RealmSwift.Object` in an aggregate operator of a predicate - no longer throws a spurious type error. -* Fix incorrect results for when using OR in a query on a `RLMArray`/`List<>`. -* Fix incorrect values from `[RLMResults count]`/`Results.count` when using - `!=` on an int property with no other query conditions. -* Lower the maximum doubling threshold for Realm file sizes from 128MB to 16MB - to reduce the amount of wasted space. - -0.92.2 Release notes (2015-05-08) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Exceptions raised when incorrect object types are used with predicates now contain more detailed information. -* Added `-[RLMMigration deleteDataForClassName:]` and `Migration.deleteData(_:)` - to enable cleaning up after removing object subclasses - -### Bugfixes - -* Prevent debugging of an application using an encrypted Realm to work around - frequent LLDB hangs. Until the underlying issue is addressed you may set - REALM_DISABLE_ENCRYPTION=YES in your application's environment variables to - have requests to open an encrypted Realm treated as a request for an - unencrypted Realm. -* Linked objects are properly updated in `createOrUpdateInRealm:withValue:`. -* List properties on Objects are now properly initialized during fast enumeration. - -0.92.1 Release notes (2015-05-06) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* `-[RLMRealm inWriteTransaction]` is now public. -* Realm Swift is now available on CoocaPods. - -### Bugfixes - -* Force code re-signing after stripping architectures in `strip-frameworks.sh`. - -0.92.0 Release notes (2015-05-05) -============================================================= - -### API breaking changes - -* Migration blocks are no longer called when a Realm file is first created. -* The following APIs have been deprecated in favor of newer method names: - -| Deprecated API | New API | -|:-------------------------------------------------------|:------------------------------------------------------| -| `-[RLMMigration createObject:withObject:]` | `-[RLMMigration createObject:withValue:]` | -| `-[RLMObject initWithObject:]` | `-[RLMObject initWithValue:]` | -| `+[RLMObject createInDefaultRealmWithObject:]` | `+[RLMObject createInDefaultRealmWithValue:]` | -| `+[RLMObject createInRealm:withObject:]` | `+[RLMObject createInRealm:withValue:]` | -| `+[RLMObject createOrUpdateInDefaultRealmWithObject:]` | `+[RLMObject createOrUpdateInDefaultRealmWithValue:]` | -| `+[RLMObject createOrUpdateInRealm:withObject:]` | `+[RLMObject createOrUpdateInRealm:withValue:]` | - -### Enhancements - -* `Int8` properties defined in Swift are now treated as integers, rather than - booleans. -* NSPredicates created using `+predicateWithValue:` are now supported. - -### Bugfixes - -* Compound AND predicates with no subpredicates now correctly match all objects. - -0.91.5 Release notes (2015-04-28) -============================================================= - -### Bugfixes - -* Fix issues with removing search indexes and re-enable it. - -0.91.4 Release notes (2015-04-27) -============================================================= - -### Bugfixes - -* Temporarily disable removing indexes from existing columns due to bugs. - -0.91.3 Release notes (2015-04-17) -============================================================= - -### Bugfixes - -* Fix `Extra argument 'objectClassName' in call` errors when building via - CocoaPods. - -0.91.2 Release notes (2015-04-16) -============================================================= - -* Migration blocks are no longer called when a Realm file is first created. - -### Enhancements - -* `RLMCollection` supports collection KVC operations. -* Sorting `RLMResults` is 2-5x faster (typically closer to 2x). -* Refreshing `RLMRealm` after a write transaction which inserts or modifies - strings or `NSData` is committed on another thread is significantly faster. -* Indexes are now added and removed from existing properties when a Realm file - is opened, rather than only when properties are first added. - -### Bugfixes - -* `+[RLMSchema dynamicSchemaForRealm:]` now respects search indexes. -* `+[RLMProperty isEqualToProperty:]` now checks for equal `indexed` properties. - -0.91.1 Release notes (2015-03-12) -============================================================= - -### Enhancements - -* The browser will automatically refresh when the Realm has been modified - from another process. -* Allow using Realm in an embedded framework by setting - `APPLICATION_EXTENSION_API_ONLY` to YES. - -### Bugfixes - -* Fix a crash in CFRunLoopSourceInvalidate. - -0.91.0 Release notes (2015-03-10) -============================================================= - -### API breaking changes - -* `attributesForProperty:` has been removed from `RLMObject`. You now specify indexed - properties by implementing the `indexedProperties` method. -* An exception will be thrown when calling `setEncryptionKey:forRealmsAtPath:`, - `setSchemaVersion:forRealmAtPath:withMigrationBlock:`, and `migrateRealmAtPath:` - when a Realm at the given path is already open. -* Object and array properties of type `RLMObject` will no longer be allowed. - -### Enhancements - -* Add support for sharing Realm files between processes. -* The browser will no longer show objects that have no persisted properties. -* `RLMSchema`, `RLMObjectSchema`, and `RLMProperty` now have more useful descriptions. -* Opening an encrypted Realm while a debugger is attached to the process no - longer throws an exception. -* `RLMArray` now exposes an `isInvalidated` property to indicate if it can no - longer be accessed. - -### Bugfixes - -* An exception will now be thrown when calling `-beginWriteTransaction` from within a notification - triggered by calling `-beginWriteTransaction` elsewhere. -* When calling `delete:` we now verify that the object being deleted is persisted in the target Realm. -* Fix crash when calling `createOrUpdate:inRealm` with nested linked objects. -* Use the key from `+[RLMRealm setEncryptionKey:forRealmsAtPath:]` in - `-writeCopyToPath:error:` and `+migrateRealmAtPath:`. -* Comparing an RLMObject to a non-RLMObject using `-[RLMObject isEqual:]` or - `-isEqualToObject:` now returns NO instead of crashing. -* Improved error message when an `RLMObject` subclass is defined nested within - another Swift declaration. -* Fix crash when the process is terminated by the OS on iOS while encrypted realms are open. -* Fix crash after large commits to encrypted realms. - -0.90.6 Release notes (2015-02-20) -============================================================= - -### Enhancements - -* Improve compatiblity of encrypted Realms with third-party crash reporters. - -### Bugfixes - -* Fix incorrect results when using aggregate functions on sorted RLMResults. -* Fix data corruption when using writeCopyToPath:encryptionKey:. -* Maybe fix some assertion failures. - -0.90.5 Release notes (2015-02-04) -============================================================= - -### Bugfixes - -* Fix for crashes when encryption is enabled on 64-bit iOS devices. - -0.90.4 Release notes (2015-01-29) -============================================================= - -### Bugfixes - -* Fix bug that resulted in columns being dropped and recreated during migrations. - -0.90.3 Release notes (2015-01-27) -============================================================= - -### Enhancements - -* Calling `createInDefaultRealmWithObject:`, `createInRealm:withObject:`, - `createOrUpdateInDefaultRealmWithObject:` or `createOrUpdateInRealm:withObject:` - is a no-op if the argument is an RLMObject of the same type as the receiver - and is already backed by the target realm. - -### Bugfixes - -* Fix incorrect column type assertions when the first Realm file opened is a - read-only file that is missing tables. -* Throw an exception when adding an invalidated or deleted object as a link. -* Throw an exception when calling `createOrUpdateInRealm:withObject:` when the - receiver has no primary key defined. - -0.90.1 Release notes (2015-01-22) -============================================================= - -### Bugfixes - -* Fix for RLMObject being treated as a model object class and showing up in the browser. -* Fix compilation from the podspec. -* Fix for crash when calling `objectsWhere:` with grouping in the query on `allObjects`. - -0.90.0 Release notes (2015-01-21) -============================================================= - -### API breaking changes - -* Rename `-[RLMRealm encryptedRealmWithPath:key:readOnly:error:]` to - `-[RLMRealm realmWithPath:encryptionKey:readOnly:error:]`. -* `-[RLMRealm setSchemaVersion:withMigrationBlock]` is no longer global and must be called - for each individual Realm path used. You can now call `-[RLMRealm setDefaultRealmSchemaVersion:withMigrationBlock]` - for the default Realm and `-[RLMRealm setSchemaVersion:forRealmAtPath:withMigrationBlock:]` for all others; - -### Enhancements - -* Add `-[RLMRealm writeCopyToPath:encryptionKey:error:]`. -* Add support for comparing string columns to other string columns in queries. - -### Bugfixes - -* Roll back changes made when an exception is thrown during a migration. -* Throw an exception if the number of items in a RLMResults or RLMArray changes - while it's being fast-enumerated. -* Also encrypt the temporary files used when encryption is enabled for a Realm. -* Fixed crash in JSONImport example on OS X with non-en_US locale. -* Fixed infinite loop when opening a Realm file in the Browser at the same time - as it is open in a 32-bit simulator. -* Fixed a crash when adding primary keys to older realm files with no primary - keys on any objects. -* Fixed a crash when removing a primary key in a migration. -* Fixed a crash when multiple write transactions with no changes followed by a - write transaction with changes were committed without the main thread - RLMRealm getting a chance to refresh. -* Fixed incomplete results when querying for non-null relationships. -* Improve the error message when a Realm file is opened in multiple processes - at once. - -0.89.2 Release notes (2015-01-02) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* None. - -### Bugfixes - -* Fix an assertion failure when invalidating a Realm which is in a write - transaction, has already been invalidated, or has never been used. -* Fix an assertion failure when sorting an empty RLMArray property. -* Fix a bug resulting in the browser never becoming visible on 10.9. -* Write UTF-8 when generating class files from a realm file in the Browser. - -0.89.1 Release notes (2014-12-22) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Improve the error message when a Realm can't be opened due to lacking write - permissions. - -### Bugfixes - -* Fix an assertion failure when inserting rows after calling `deleteAllObjects` - on a Realm. -* Separate dynamic frameworks are now built for the simulator and devices to - work around App Store submission errors due to the simulator version not - being automatically stripped from dynamic libraries. - -0.89.0 Release notes (2014-12-18) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Add support for encrypting Realm files on disk. -* Support using KVC-compliant objects without getters or with custom getter - names to initialize RLMObjects with `createObjectInRealm` and friends. - -### Bugfixes - -* Merge native Swift default property values with defaultPropertyValues(). -* Don't leave the database schema partially updated when opening a realm fails - due to a migration being needed. -* Fixed issue where objects with custom getter names couldn't be used to - initialize other objects. -* Fix a major performance regression on queries on string properties. -* Fix a memory leak when circularly linked objects are added to a Realm. - -0.88.0 Release notes (2014-12-02) -============================================================= - -### API breaking changes - -* Deallocating an RLMRealm instance in a write transaction lacking an explicit - commit/cancel will now be automatically cancelled instead of committed. -* `-[RLMObject isDeletedFromRealm]` has been renamed to `-[RLMObject isInvalidated]`. - -### Enhancements - -* Add `-[RLMRealm writeCopyToPath:]` to write a compacted copy of the Realm - another file. -* Add support for case insensitive, BEGINSWITH, ENDSWITH and CONTAINS string - queries on array properties. -* Make fast enumeration of `RLMArray` and `RLMResults` ~30% faster and - `objectAtIndex:` ~55% faster. -* Added a lldb visualizer script for displaying the contents of persisted - RLMObjects when debugging. -* Added method `-setDefaultRealmPath:` to change the default Realm path. -* Add `-[RLMRealm invalidate]` to release data locked by the current thread. - -### Bugfixes - -* Fix for crash when running many simultaneous write transactions on background threads. -* Fix for crashes caused by opening Realms at multiple paths simultaneously which have had - properties re-ordered during migration. -* Don't run the query twice when `firstObject` or `lastObject` are called on an - `RLMResults` which has not had its results accessed already. -* Fix for bug where schema version is 0 for new Realm created at the latest version. -* Fix for error message where no migration block is specified when required. - -0.87.4 Release notes (2014-11-07) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* None. - -### Bugfixes - -* Fix browser location in release zip. - -0.87.3 Release notes (2014-11-06) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Added method `-linkingObjectsOfClass:forProperty:` to RLMObject to expose inverse - relationships/backlinks. - -### Bugfixes - -* Fix for crash due to missing search index when migrating an object with a string primary key - in a database created using an older versions (0.86.3 and earlier). -* Throw an exception when passing an array containing a - non-RLMObject to -[RLMRealm addObjects:]. -* Fix for crash when deleting an object from multiple threads. - -0.87.0 Release notes (2014-10-21) -============================================================= - -### API breaking changes - -* RLMArray has been split into two classes, `RLMArray` and `RLMResults`. RLMArray is - used for object properties as in previous releases. Moving forward all methods used to - enumerate, query, and sort objects return an instance of a new class `RLMResults`. This - change was made to support diverging apis and the future addition of change notifications - for queries. -* The api for migrations has changed. You now call `setSchemaVersion:withMigrationBlock:` to - register a global migration block and associated version. This block is applied to Realms as - needed when opened for Realms at a previous version. The block can be applied manually if - desired by calling `migrateRealmAtPath:`. -* `arraySortedByProperty:ascending:` was renamed to `sortedResultsUsingProperty:ascending` -* `addObjectsFromArray:` on both `RLMRealm` and `RLMArray` has been renamed to `addObjects:` - and now accepts any container class which implements `NSFastEnumeration` -* Building with Swift support now requires Xcode 6.1 - -### Enhancements - -* Add support for sorting `RLMArray`s by multiple columns with `sortedResultsUsingDescriptors:` -* Added method `deleteAllObjects` on `RLMRealm` to clear a Realm. -* Added method `createObject:withObject:` on `RLMMigration` which allows object creation during migrations. -* Added method `deleteObject:` on `RLMMigration` which allows object deletion during migrations. -* Updating to core library version 0.85.0. -* Implement `objectsWhere:` and `objectsWithPredicate:` for array properties. -* Add `cancelWriteTransaction` to revert all changes made in a write transaction and end the transaction. -* Make creating `RLMRealm` instances on background threads when an instance - exists on another thread take a fifth of the time. -* Support for partial updates when calling `createOrUpdateWithObject:` and `addOrUpdateObject:` -* Re-enable Swift support on OS X - -### Bugfixes - -* Fix exceptions when trying to set `RLMObject` properties after rearranging - the properties in a `RLMObject` subclass. -* Fix crash on IN query with several thousand items. -* Fix crash when querying indexed `NSString` properties. -* Fixed an issue which prevented in-memory Realms from being used accross multiple threads. -* Preserve the sort order when querying a sorted `RLMResults`. -* Fixed an issue with migrations where if a Realm file is deleted after a Realm is initialized, - the newly created Realm can be initialized with an incorrect schema version. -* Fix crash in `RLMSuperSet` when assigning to a `RLMArray` property on a standalone object. -* Add an error message when the protocol for an `RLMArray` property is not a - valid object type. -* Add an error message when an `RLMObject` subclass is defined nested within - another Swift class. - -0.86.3 Release notes (2014-10-09) -============================================================= - -### Enhancements - -* Add support for != in queries on object relationships. - -### Bugfixes - -* Re-adding an object to its Realm no longer throws an exception and is now a no-op - (as it was previously). -* Fix another bug which would sometimes result in subclassing RLMObject - subclasses not working. - -0.86.2 Release notes (2014-10-06) -============================================================= - -### Bugfixes - -* Fixed issues with packaging "Realm Browser.app" for release. - -0.86.1 Release notes (2014-10-03) -============================================================= - -### Bugfixes - -* Fix a bug which would sometimes result in subclassing RLMObject subclasses - not working. - -0.86.0 Release notes (2014-10-03) -============================================================= - -### API breaking changes - -* Xcode 6 is now supported from the main Xcode project `Realm.xcodeproj`. - Xcode 5 is no longer supported. - -### Enhancements - -* Support subclassing RLMObject models. Although you can now persist subclasses, - polymorphic behavior is not supported (i.e. setting a property to an - instance of its subclass). -* Add support for sorting RLMArray properties. -* Speed up inserting objects with `addObject:` by ~20%. -* `readonly` properties are automatically ignored rather than having to be - added to `ignoredProperties`. -* Updating to core library version 0.83.1. -* Return "[deleted object]" rather than throwing an exception when - `-description` is called on a deleted RLMObject. -* Significantly improve performance of very large queries. -* Allow passing any enumerable to IN clauses rather than just NSArray. -* Add `objectForPrimaryKey:` and `objectInRealm:forPrimaryKey:` convenience - methods to fetch an object by primary key. - -### Bugfixes - -* Fix error about not being able to persist property 'hash' with incompatible - type when building for devices with Xcode 6. -* Fix spurious notifications of new versions of Realm. -* Fix for updating nested objects where some types do not have primary keys. -* Fix for inserting objects from JSON with NSNull values when default values - should be used. -* Trying to add a persisted RLMObject to a different Realm now throws an - exception rather than creating an uninitialized object. -* Fix validation errors when using IN on array properties. -* Fix errors when an IN clause has zero items. -* Fix for chained queries ignoring all but the last query's conditions. - -0.85.0 Release notes (2014-09-15) -============================================================= - -### API breaking changes - -* Notifications for a refresh being needed (when autorefresh is off) now send - the notification type RLMRealmRefreshRequiredNotification rather than - RLMRealmDidChangeNotification. - -### Enhancements - -* Updating to core library version 0.83.0. -* Support for primary key properties (for int and string columns). Declaring a property - to be the primary key ensures uniqueness for that property for all objects of a given type. - At the moment indexes on primary keys are not yet supported but this will be added in a future - release. -* Added methods to update or insert (upsert) for objects with primary keys defined. -* `[RLMObject initWithObject:]` and `[RLMObject createInRealmWithObject:]` now support - any object type with kvc properties. -* The Swift support has been reworked to work around Swift not being supported - in Frameworks on iOS 7. -* Improve performance when getting the count of items matching a query but not - reading any of the objects in the results. -* Add a return value to `-[RLMRealm refresh]` that indicates whether or not - there was anything to refresh. -* Add the class name to the error message when an RLMObject is missing a value - for a property without a default. -* Add support for opening Realms in read-only mode. -* Add an automatic check for updates when using Realm in a simulator (the - checker code is not compiled into device builds). This can be disabled by - setting the REALM_DISABLE_UPDATE_CHECKER environment variable to any value. -* Add support for Int16 and Int64 properties in Swift classes. - -### Bugfixes - -* Realm change notifications when beginning a write transaction are now sent - after updating rather than before, to match refresh. -* `-isEqual:` now uses the default `NSObject` implementation unless a primary key - is specified for an RLMObject. When a primary key is specified, `-isEqual:` calls - `-isEqualToObject:` and a corresponding implementation for `-hash` is also implemented. - -0.84.0 Release notes (2014-08-28) -============================================================= - -### API breaking changes - -* The timer used to trigger notifications has been removed. Notifications are now - only triggered by commits made in other threads, and can not currently be triggered - by changes made by other processes. Interprocess notifications will be re-added in - a future commit with an improved design. - -### Enhancements - -* Updating to core library version 0.82.2. -* Add property `deletedFromRealm` to RLMObject to indicate objects which have been deleted. -* Add support for the IN operator in predicates. -* Add support for the BETWEEN operator in link queries. -* Add support for multi-level link queries in predicates (e.g. `foo.bar.baz = 5`). -* Switch to building the SDK from source when using CocoaPods and add a - Realm.Headers subspec for use in targets that should not link a copy of Realm - (such as test targets). -* Allow unregistering from change notifications in the change notification - handler block. -* Significant performance improvements when holding onto large numbers of RLMObjects. -* Realm-Xcode6.xcodeproj now only builds using Xcode6-Beta6. -* Improved performance during RLMArray iteration, especially when mutating - contained objects. - -### Bugfixes - -* Fix crashes and assorted bugs when sorting or querying a RLMArray returned - from a query. -* Notifications are no longer sent when initializing new RLMRealm instances on background - threads. -* Handle object cycles in -[RLMObject description] and -[RLMArray description]. -* Lowered the deployment target for the Xcode 6 projects and Swift examples to - iOS 7.0, as they didn't actually require 8.0. -* Support setting model properties starting with the letter 'z' -* Fixed crashes that could result from switching between Debug and Relase - builds of Realm. - -0.83.0 Release notes (2014-08-13) -============================================================= - -### API breaking changes - -* Realm-Xcode6.xcodeproj now only builds using Xcode6-Beta5. -* Properties to be persisted in Swift classes must be explicitly declared as `dynamic`. -* Subclasses of RLMObject subclasses now throw an exception on startup, rather - than when added to a Realm. - -### Enhancements - -* Add support for querying for nil object properties. -* Improve error message when specifying invalid literals when creating or - initializing RLMObjects. -* Throw an exception when an RLMObject is used from the incorrect thread rather - than crashing in confusing ways. -* Speed up RLMRealm instantiation and array property iteration. -* Allow array and objection relation properties to be missing or null when - creating a RLMObject from a NSDictionary. - -### Bugfixes - -* Fixed a memory leak when querying for objects. -* Fixed initializing array properties on standalone Swift RLMObject subclasses. -* Fix for queries on 64bit integers. - -0.82.0 Release notes (2014-08-05) -============================================================= - -### API breaking changes - -* Realm-Xcode6.xcodeproj now only builds using Xcode6-Beta4. - -### Enhancements - -* Updating to core library version 0.80.5. -* Now support disabling the `autorefresh` property on RLMRealm instances. -* Building Realm-Xcode6 for iOS now builds a universal framework for Simulator & Device. -* Using NSNumber properties (unsupported) now throws a more informative exception. -* Added `[RLMRealm defaultRealmPath]` -* Proper implementation for [RLMArray indexOfObjectWhere:] -* The default Realm path on OS X is now ~/Library/Application Support/[bundle - identifier]/default.realm rather than ~/Documents -* We now check that the correct framework (ios or osx) is used at compile time. - -### Bugfixes - -* Fixed rapid growth of the realm file size. -* Fixed a bug which could cause a crash during RLMArray destruction after a query. -* Fixed bug related to querying on float properties: `floatProperty = 1.7` now works. -* Fixed potential bug related to the handling of array properties (RLMArray). -* Fixed bug where array properties accessed the wrong property. -* Fixed bug that prevented objects with custom getters to be added to a Realm. -* Fixed a bug where initializing a standalone object with an array literal would - trigger an exception. -* Clarified exception messages when using unsupported NSPredicate operators. -* Clarified exception messages when using unsupported property types on RLMObject subclasses. -* Fixed a memory leak when breaking out of a for-in loop on RLMArray. -* Fixed a memory leak when removing objects from a RLMArray property. -* Fixed a memory leak when querying for objects. - - -0.81.0 Release notes (2014-07-22) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Updating to core library version 0.80.3. -* Added support for basic querying of RLMObject and RLMArray properties (one-to-one and one-to-many relationships). - e.g. `[Person objectsWhere:@"dog.name == 'Alfonso'"]` or `[Person objectsWhere:@"ANY dogs.name == 'Alfonso'"]` - Supports all normal operators for numeric and date types. Does not support NSData properties or `BEGINSWITH`, `ENDSWITH`, `CONTAINS` - and other options for string properties. -* Added support for querying for object equality in RLMObject and RLMArray properties (one-to-one and one-to-many relationships). - e.g. `[Person objectsWhere:@"dog == %@", myDog]` `[Person objectsWhere:@"ANY dogs == %@", myDog]` `[Person objectsWhere:@"ANY friends.dog == %@", dog]` - Only supports comparing objects for equality (i.e. ==) -* Added a helper method to RLMRealm to perform a block inside a transaction. -* OSX framework now supported in CocoaPods. - -### Bugfixes - -* Fixed Unicode support in property names and string contents (Chinese, Russian, etc.). Closing #612 and #604. -* Fixed bugs related to migration when properties are removed. -* Fixed keyed subscripting for standalone RLMObjects. -* Fixed bug related to double clicking on a .realm file to launch the Realm Browser (thanks to Dean Moore). - - -0.80.0 Release notes (2014-07-15) -============================================================= - -### API breaking changes - -* Rename migration methods to -migrateDefaultRealmWithBlock: and -migrateRealmAtPath:withBlock: -* Moved Realm specific query methods from RLMRealm to class methods on RLMObject (-allObjects: to +allObjectsInRealm: ect.) - -### Enhancements - -* Added +createInDefaultRealmWithObject: method to RLMObject. -* Added support for array and object literals when calling -createWithObject: and -initWithObject: variants. -* Added method -deleteObjects: to batch delete objects from a Realm -* Support for defining RLMObject models entirely in Swift (experimental, see known issues). -* RLMArrays in Swift support Sequence-style enumeration (for obj in array). -* Implemented -indexOfObject: for RLMArray - -### Known Issues for Swift-defined models - -* Properties other than String, NSData and NSDate require a default value in the model. This can be an empty (but typed) array for array properties. -* The previous caveat also implies that not all models defined in Objective-C can be used for object properties. Only Objective-C models with only implicit (i.e. primitives) or explicit default values can be used. However, any Objective-C model object can be used in a Swift array property. -* Array property accessors don't work until its parent object has been added to a realm. -* Realm-Bridging-Header.h is temporarily exposed as a public header. This is temporary and will be private again once rdar://17633863 is fixed. -* Does not leverage Swift generics and still uses RLM-prefix everywhere. This is coming in #549. - - -0.22.0 Release notes -============================================================= - -### API breaking changes - -* Rename schemaForObject: to schemaForClassName: on RLMSchema -* Removed -objects:where: and -objects:orderedBy:where: from RLMRealm -* Removed -indexOfObjectWhere:, -objectsWhere: and -objectsOrderedBy:where: from RLMArray -* Removed +objectsWhere: and +objectsOrderedBy:where: from RLMObject - -### Enhancements - -* New Xcode 6 project for experimental swift support. -* New Realm Editor app for reading and editing Realm db files. -* Added support for migrations. -* Added support for RLMArray properties on objects. -* Added support for creating in-memory default Realm. -* Added -objectsWithClassName:predicateFormat: and -objectsWithClassName:predicate: to RLMRealm -* Added -indexOfObjectWithPredicateFormat:, -indexOfObjectWithPredicate:, -objectsWithPredicateFormat:, -objectsWithPredi -* Added +objectsWithPredicateFormat: and +objectsWithPredicate: to RLMObject -* Now allows predicates comparing two object properties of the same type. - - -0.20.0 Release notes (2014-05-28) -============================================================= - -Completely rewritten to be much more object oriented. - -### API breaking changes - -* Everything - -### Enhancements - -* None. - -### Bugfixes - -* None. - - -0.11.0 Release notes (not released) -============================================================= - -The Objective-C API has been updated and your code will break! - -### API breaking changes - -* `RLMTable` objects can only be created with an `RLMRealm` object. -* Renamed `RLMContext` to `RLMTransactionManager` -* Renamed `RLMContextDidChangeNotification` to `RLMRealmDidChangeNotification` -* Renamed `contextWithDefaultPersistence` to `managerForDefaultRealm` -* Renamed `contextPersistedAtPath:` to `managerForRealmWithPath:` -* Renamed `realmWithDefaultPersistence` to `defaultRealm` -* Renamed `realmWithDefaultPersistenceAndInitBlock` to `defaultRealmWithInitBlock` -* Renamed `find:` to `firstWhere:` -* Renamed `where:` to `allWhere:` -* Renamed `where:orderBy:` to `allWhere:orderBy:` - -### Enhancements - -* Added `countWhere:` on `RLMTable` -* Added `sumOfColumn:where:` on `RLMTable` -* Added `averageOfColumn:where:` on `RLMTable` -* Added `minOfProperty:where:` on `RLMTable` -* Added `maxOfProperty:where:` on `RLMTable` -* Added `toJSONString` on `RLMRealm`, `RLMTable` and `RLMView` -* Added support for `NOT` operator in predicates -* Added support for default values -* Added validation support in `createInRealm:withObject:` - -### Bugfixes - -* None. - - -0.10.0 Release notes (2014-04-23) -============================================================= - -TightDB is now Realm! The Objective-C API has been updated -and your code will break! - -### API breaking changes - -* All references to TightDB have been changed to Realm. -* All prefixes changed from `TDB` to `RLM`. -* `TDBTransaction` and `TDBSmartContext` have merged into `RLMRealm`. -* Write transactions now take an optional rollback parameter (rather than needing to return a boolean). -* `addColumnWithName:` and variant methods now return the index of the newly created column if successful, `NSNotFound` otherwise. - -### Enhancements - -* `createTableWithName:columns:` has been added to `RLMRealm`. -* Added keyed subscripting for RLMTable's first column if column is of type RLMPropertyTypeString. -* `setRow:atIndex:` has been added to `RLMTable`. -* `RLMRealm` constructors now have variants that take an writable initialization block -* New object interface - tables created/retrieved using `tableWithName:objectClass:` return custom objects - -### Bugfixes - -* None. - - -0.6.0 Release notes (2014-04-11) -============================================================= - -### API breaking changes - -* `contextWithPersistenceToFile:error:` renamed to `contextPersistedAtPath:error:` in `TDBContext` -* `readWithBlock:` renamed to `readUsingBlock:` in `TDBContext` -* `writeWithBlock:error:` renamed to `writeUsingBlock:error:` in `TDBContext` -* `readTable:withBlock:` renamed to `readTable:usingBlock:` in `TDBContext` -* `writeTable:withBlock:error:` renamed to `writeTable:usingBlock:error:` in `TDBContext` -* `findFirstRow` renamed to `indexOfFirstMatchingRow` on `TDBQuery`. -* `findFirstRowFromIndex:` renamed to `indexOfFirstMatchingRowFromIndex:` on `TDBQuery`. -* Return `NSNotFound` instead of -1 when appropriate. -* Renamed `castClass` to `castToTytpedTableClass` on `TDBTable`. -* `removeAllRows`, `removeRowAtIndex`, `removeLastRow`, `addRow` and `insertRow` methods - on table now return void instead of BOOL. - -### Enhancements -* A `TDBTable` can now be queried using `where:` and `where:orderBy:` taking - `NSPredicate` and `NSSortDescriptor` as arguments. -* Added `find:` method on `TDBTable` to find first row matching predicate. -* `contextWithDefaultPersistence` class method added to `TDBContext`. Will create a context persisted - to a file in app/documents folder. -* `renameColumnWithIndex:to:` has been added to `TDBTable`. -* `distinctValuesInColumnWithIndex` has been added to `TDBTable`. -* `dateIsBetween::`, `doubleIsBetween::`, `floatIsBetween::` and `intIsBetween::` - have been added to `TDBQuery`. -* Column names in Typed Tables can begin with non-capital letters too. The generated `addX` - selector can look odd. For example, a table with one column with name `age`, - appending a new row will look like `[table addage:7]`. -* Mixed typed values are better validated when rows are added, inserted, - or modified as object literals. -* `addRow`, `insertRow`, and row updates can be done using objects - derived from `NSObject`. -* `where` has been added to `TDBView`and `TDBViewProtocol`. -* Adding support for "smart" contexts (`TDBSmartContext`). - -### Bugfixes - -* Modifications of a `TDBView` and `TDBQuery` now throw an exception in a readtransaction. - - -0.5.0 Release notes (2014-04-02) -============================================================= - -The Objective-C API has been updated and your code will break! -Of notable changes a fast interface has been added. -This interface includes specific methods to get and set values into Tightdb. -To use these methods import ``. - -### API breaking changes - -* `getTableWithName:` renamed to `tableWithName:` in `TDBTransaction`. -* `addColumnWithName:andType:` renamed to `addColumnWithName:type:` in `TDBTable`. -* `columnTypeOfColumn:` renamed to `columnTypeOfColumnWithIndex` in `TDBTable`. -* `columnNameOfColumn:` renamed to `nameOfColumnWithIndex:` in `TDBTable`. -* `addColumnWithName:andType:` renamed to `addColumnWithName:type:` in `TDBDescriptor`. -* Fast getters and setters moved from `TDBRow.h` to `TDBRowFast.h`. - -### Enhancements - -* Added `minDateInColumnWithIndex` and `maxDateInColumnWithIndex` to `TDBQuery`. -* Transactions can now be started directly on named tables. -* You can create dynamic tables with initial schema. -* `TDBTable` and `TDBView` now have a shared protocol so they can easier be used interchangeably. - -### Bugfixes - -* Fixed bug in 64 bit iOS when inserting BOOL as NSNumber. - - -0.4.0 Release notes (2014-03-26) -============================================================= - -### API breaking changes - -* Typed interface Cursor has now been renamed to Row. -* TDBGroup has been renamed to TDBTransaction. -* Header files are renamed so names match class names. -* Underscore (_) removed from generated typed table classes. -* TDBBinary has been removed; use NSData instead. -* Underscope (_) removed from generated typed table classes. -* Constructor for TDBContext has been renamed to contextWithPersistenceToFile: -* Table findFirstRow and min/max/sum/avg operations has been hidden. -* Table.appendRow has been renamed to addRow. -* getOrCreateTable on Transaction has been removed. -* set*:inColumnWithIndex:atRowIndex: methods have been prefixed with TDB -* *:inColumnWithIndex:atRowIndex: methods have been prefixed with TDB -* addEmptyRow on table has been removed. Use [table addRow:nil] instead. -* TDBMixed removed. Use id and NSObject instead. -* insertEmptyRow has been removed from table. Use insertRow:nil atIndex:index instead. - -#### Enhancements - -* Added firstRow, lastRow selectors on view. -* firstRow and lastRow on table now return nil if table is empty. -* getTableWithName selector added on group. -* getting and creating table methods on group no longer take error argument. -* [TDBQuery parent] and [TDBQuery subtable:] selectors now return self. -* createTable method added on Transaction. Throws exception if table with same name already exists. -* Experimental support for pinning transactions on Context. -* TDBView now has support for object subscripting. - -### Bugfixes - -* None. - - -0.3.0 Release notes (2014-03-14) -============================================================= - -The Objective-C API has been updated and your code will break! - -### API breaking changes - -* Most selectors have been renamed in the binding! -* Prepend TDB-prefix on all classes and types. - -### Enhancements - -* Return types and parameters changed from size_t to NSUInteger. -* Adding setObject to TightdbTable (t[2] = @[@1, @"Hello"] is possible). -* Adding insertRow to TightdbTable. -* Extending appendRow to accept NSDictionary. - -### Bugfixes - -* None. - - -0.2.0 Release notes (2014-03-07) -============================================================= - -The Objective-C API has been updated and your code will break! - -### API breaking changes - -* addRow renamed to addEmptyRow - -### Enhancements - -* Adding a simple class for version numbering. -* Adding get-version and set-version targets to build.sh. -* tableview now supports sort on column with column type bool, date and int -* tableview has method for checking the column type of a specified column -* tableview has method for getting the number of columns -* Adding methods getVersion, getCoreVersion and isAtLeast. -* Adding appendRow to TightdbTable. -* Adding object subscripting. -* Adding method removeColumn on table. - -### Bugfixes - -* None. diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/Info.plist b/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index d67de1a..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,53 +0,0 @@ - - - - - BuildMachineOSBuild - 15E65 - CFBundleDevelopmentRegion - English - CFBundleExecutable - Realm - CFBundleIdentifier - io.Realm.Realm - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - Realm - CFBundlePackageType - FMWK - CFBundleShortVersionString - 0.98.6 - CFBundleSignature - ???? - CFBundleSupportedPlatforms - - MacOSX - - CFBundleVersion - 0.98.6 - DTCompiler - com.apple.compilers.llvm.clang.1_0 - DTPlatformBuild - 7D175 - DTPlatformVersion - GM - DTSDKBuild - 15E60 - DTSDKName - macosx10.11 - DTXcode - 0730 - DTXcodeBuild - 7D175 - NSHumanReadableCopyright - Copyright © 2014 Realm. All rights reserved. - UIDeviceFamily - - 3 - 2 - 1 - 4 - - - diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/LICENSE b/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/LICENSE deleted file mode 100644 index a194346..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/LICENSE +++ /dev/null @@ -1,269 +0,0 @@ -TABLE OF CONTENTS - -1. Apache License version 2.0 -2. Realm Components -3. Export Compliance - -------------------------------------------------------------------------------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -REALM COMPONENTS - -This software contains components with separate copyright and license terms. -Your use of these components is subject to the terms and conditions of the -following licenses. - -For the Realm Core component - - Realm Core Binary License - - Copyright (c) 2011-2014 Realm Inc All rights reserved - - Redistribution and use in binary form, with or without modification, is - permitted provided that the following conditions are met: - - 1. You agree not to attempt to decompile, disassemble, reverse engineer or - otherwise discover the source code from which the binary code was derived. - You may, however, access and obtain a separate license for most of the - source code from which this Software was created, at - http://realm.io/pricing/. - - 2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - 3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -EXPORT COMPLIANCE - -You understand that the Software may contain cryptographic functions that may be -subject to export restrictions, and you represent and warrant that you are not -located in a country that is subject to United States export restriction or embargo, -including Cuba, Iran, North Korea, Sudan, Syria or the Crimea region, and that you -are not on the Department of Commerce list of Denied Persons, Unverified Parties, -or affiliated with a Restricted Entity. - -You agree to comply with all export, re-export and import restrictions and -regulations of the Department of Commerce or other agency or authority of the -United States or other applicable countries. You also agree not to transfer, or -authorize the transfer of, directly or indirectly, the Software to any prohibited -country, including Cuba, Iran, North Korea, Sudan, Syria or the Crimea region, -or to any person or organization on or affiliated with the Department of -Commerce lists of Denied Persons, Unverified Parties or Restricted Entities, or -otherwise in violation of any such restrictions or regulations. diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/strip-frameworks.sh b/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/strip-frameworks.sh deleted file mode 100644 index 80814ab..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/strip-frameworks.sh +++ /dev/null @@ -1,72 +0,0 @@ -################################################################################ -# -# Copyright 2015 Realm Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -################################################################################ - -# This script strips all non-valid architectures from dynamic libraries in -# the application's `Frameworks` directory. -# -# The following environment variables are required: -# -# BUILT_PRODUCTS_DIR -# FRAMEWORKS_FOLDER_PATH -# VALID_ARCHS -# EXPANDED_CODE_SIGN_IDENTITY - - -# Signs a framework with the provided identity -code_sign() { - # Use the current code_sign_identitiy - echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" - echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements $1" - /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" -} - -# Set working directory to product’s embedded frameworks -cd "${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}" - -if [ "$ACTION" = "install" ]; then - echo "Copy .bcsymbolmap files to .xcarchive" - find . -name '*.bcsymbolmap' -type f -exec mv {} "${CONFIGURATION_BUILD_DIR}" \; -else - # Delete *.bcsymbolmap files from framework bundle unless archiving - find . -name '*.bcsymbolmap' -type f -exec rm -rf "{}" +\; -fi - -echo "Stripping frameworks" - -for file in $(find . -type f -perm +111); do - # Skip non-dynamic libraries - if ! [[ "$(file "$file")" == *"dynamically linked shared library"* ]]; then - continue - fi - # Get architectures for current file - archs="$(lipo -info "${file}" | rev | cut -d ':' -f1 | rev)" - stripped="" - for arch in $archs; do - if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then - # Strip non-valid architectures in-place - lipo -remove "$arch" -output "$file" "$file" || exit 1 - stripped="$stripped $arch" - fi - done - if [[ "$stripped" != "" ]]; then - echo "Stripped $file of architectures:$stripped" - if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then - code_sign "${file}" - fi - fi -done diff --git a/Carthage/Build/Mac/Realm.framework/Versions/Current b/Carthage/Build/Mac/Realm.framework/Versions/Current deleted file mode 120000 index 8c7e5a6..0000000 --- a/Carthage/Build/Mac/Realm.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/Carthage/Build/Mac/RealmSwift.framework.dSYM/Contents/Info.plist b/Carthage/Build/Mac/RealmSwift.framework.dSYM/Contents/Info.plist deleted file mode 100644 index fa8327b..0000000 --- a/Carthage/Build/Mac/RealmSwift.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.io.realm.RealmSwit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 0.98.6 - CFBundleVersion - 0.98.6 - - diff --git a/Carthage/Build/Mac/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift b/Carthage/Build/Mac/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift deleted file mode 100644 index 5a32668..0000000 Binary files a/Carthage/Build/Mac/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift and /dev/null differ diff --git a/Carthage/Build/Mac/RealmSwift.framework/Headers b/Carthage/Build/Mac/RealmSwift.framework/Headers deleted file mode 120000 index a177d2a..0000000 --- a/Carthage/Build/Mac/RealmSwift.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/Carthage/Build/Mac/RealmSwift.framework/Modules b/Carthage/Build/Mac/RealmSwift.framework/Modules deleted file mode 120000 index 5736f31..0000000 --- a/Carthage/Build/Mac/RealmSwift.framework/Modules +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Modules \ No newline at end of file diff --git a/Carthage/Build/Mac/RealmSwift.framework/RealmSwift b/Carthage/Build/Mac/RealmSwift.framework/RealmSwift deleted file mode 120000 index d2aa146..0000000 --- a/Carthage/Build/Mac/RealmSwift.framework/RealmSwift +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/RealmSwift \ No newline at end of file diff --git a/Carthage/Build/Mac/RealmSwift.framework/Resources b/Carthage/Build/Mac/RealmSwift.framework/Resources deleted file mode 120000 index 953ee36..0000000 --- a/Carthage/Build/Mac/RealmSwift.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Headers/RealmSwift-Swift.h b/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Headers/RealmSwift-Swift.h deleted file mode 100644 index a478e34..0000000 --- a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Headers/RealmSwift-Swift.h +++ /dev/null @@ -1,317 +0,0 @@ -// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.1 clang-703.0.29) -#pragma clang diagnostic push - -#if defined(__has_include) && __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if defined(__has_include) && __has_include() -# include -# elif !defined(__cplusplus) || __cplusplus < 201103L -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif - -#if defined(__has_attribute) && __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if defined(__has_attribute) && __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type -# if defined(__has_feature) && __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) -# endif -#endif -#if defined(__has_feature) && __has_feature(modules) -@import Realm; -@import Realm.Private; -@import Foundation; -@import ObjectiveC; -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -@class RLMRealm; -@class RLMObjectSchema; -@class RLMSchema; -@class RLMProperty; -@class RLMListBase; -@class RLMOptionalBase; - - -/// In Realm you define your model classes by subclassing Object and adding properties to be persisted. You then instantiate and use your custom subclasses instead of using the Object class directly. -/// -/// class Dog: Object { -/// dynamic var name: String = "" -/// dynamic var adopted: Bool = false -/// let siblings = List() -/// } -/// -/// -///

Supported property types

-///
  • String -/// , NSString -///
  • Int -///
  • Int8 -/// , Int16 -/// , Int32 -/// , Int64 -///
  • Float -///
  • Double -///
  • Bool -///
  • NSDate -///
  • NSData -///
  • RealmOptional -/// for optional numeric properties
  • Object -/// subclasses for to-one relationships
  • List -/// for to-many relationships
-/// String -/// , NSString -/// , NSDate -/// , NSData -/// and Object -/// subclass properties can be -/// optional. Int -/// , Int8 -/// , Int16, Int32 -/// , Int64 -/// , Float -/// , Double -/// , Bool -/// -/// and List -/// properties cannot. To store an optional number, instead use -/// RealmOptional -/// , RealmOptional -/// , RealmOptional -/// , or -/// RealmOptional -/// instead, which wraps an optional value of the generic type. -/// -/// All property types except for List -/// and RealmOptional -/// must be declared as -/// dynamic var -/// . List -/// and RealmOptional -/// properties must be declared as -/// non-dynamic let -/// properties. -/// -///

Querying

-/// You can gets Results -/// of an Object subclass via the objects(_:) -/// instance -/// method on Realm -/// . -/// -///

Relationships

-/// See our Cocoa guide for more details. -SWIFT_CLASS_NAMED("Object") -@interface RealmSwiftObject : RLMObjectBase - -/// Initialize a standalone (unpersisted) Object. Call add(_:) on a Realm to add standalone objects to a realm. -/// -///
  • see: Realm().add(_:)
-- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - -/// Initialize a standalone (unpersisted) Object with values from an Array or Dictionary. Call add(_:) on a Realm to add standalone objects to a realm. -/// -/// \param value The value used to populate the object. This can be any key/value coding compliant -/// object, or a JSON object such as those returned from the methods in NSJSONSerialization -/// , -/// or an Array -/// with one object for each persisted property. An exception will be -/// thrown if any required properties are not present and no default is set. -- (nonnull instancetype)initWithValue:(id _Nonnull)value OBJC_DESIGNATED_INITIALIZER; - -/// Indicates if an object can no longer be accessed. -/// -/// An object can no longer be accessed if the object has been deleted from the containing -/// realm -/// or if invalidate -/// is called on the containing realm -/// . -@property (nonatomic, readonly, getter=isInvalidated) BOOL invalidated; - -/// Returns a human-readable description of this object. -@property (nonatomic, readonly, copy) NSString * _Nonnull description; - -/// Helper to return the class name for an Object subclass. -@property (nonatomic, readonly, copy) NSString * _Nonnull className; - -/// WARNING: This is an internal helper method not intended for public use. :nodoc: -+ (Class _Nonnull)objectUtilClass:(BOOL)isSwift; - -/// Override to designate a property as the primary key for an Object subclass. Only properties of type String and Int can be designated as the primary key. Primary key properties enforce uniqueness for each value whenever the property is set which incurs some overhead. Indexes are created automatically for primary key properties. -/// -/// \returns Name of the property designated as the primary key, or nil -/// if the model has no primary key. -+ (NSString * _Nullable)primaryKey; - -/// Override to return an array of property names to ignore. These properties will not be persisted and are treated as transient. -/// -/// \returns Array -/// of property names to ignore. -+ (NSArray * _Nonnull)ignoredProperties; - -/// Return an array of property names for properties which should be indexed. Only supported for string and int properties. -/// -/// \returns Array -/// of property names to index. -+ (NSArray * _Nonnull)indexedProperties; -- (id _Nullable)objectForKeyedSubscript:(NSString * _Nonnull)key; -- (void)setObject:(id _Nullable)value forKeyedSubscript:(NSString * _Nonnull)key; - -/// Returns whether both objects are equal. -/// -/// Objects are considered equal when they are both from the same Realm and point to the same -/// underlying object in the database. -/// -/// \param object Object to compare for equality. -- (BOOL)isEqual:(id _Nullable)object; - -/// WARNING: This is an internal initializer not intended for public use. :nodoc: -- (nonnull instancetype)initWithRealm:(RLMRealm * _Nonnull)realm schema:(RLMObjectSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER; - -/// WARNING: This is an internal initializer not intended for public use. :nodoc: -- (nonnull instancetype)initWithValue:(id _Nonnull)value schema:(RLMSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER; -- (RLMListBase * _Nonnull)listForProperty:(RLMProperty * _Nonnull)prop; -- (RLMOptionalBase * _Nonnull)optionalForProperty:(RLMProperty * _Nonnull)prop; -@end - - - -/// Object interface which allows untyped getters and setters for Objects. :nodoc: -SWIFT_CLASS("_TtC10RealmSwift13DynamicObject") -@interface DynamicObject : RealmSwiftObject -- (RLMListBase * _Nonnull)listForProperty:(RLMProperty * _Nonnull)prop; -- (RLMOptionalBase * _Nonnull)optionalForProperty:(RLMProperty * _Nonnull)prop; - -/// :nodoc: -- (id _Nullable)valueForUndefinedKey:(NSString * _Nonnull)key; - -/// :nodoc: -- (void)setValue:(id _Nullable)value forUndefinedKey:(NSString * _Nonnull)key; - -/// :nodoc: -+ (BOOL)shouldIncludeInDefaultSchema; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)initWithValue:(id _Nonnull)value OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)initWithRealm:(RLMRealm * _Nonnull)realm schema:(RLMObjectSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)initWithValue:(id _Nonnull)value schema:(RLMSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER; -@end - -@class RLMArray; - - -/// :nodoc: Internal class. Do not use directly. -SWIFT_CLASS("_TtC10RealmSwift8ListBase") -@interface ListBase : RLMListBase - -/// Returns a human-readable description of the objects contained in the List. -@property (nonatomic, readonly, copy) NSString * _Nonnull description; - -/// Returns the number of objects in this List. -@property (nonatomic, readonly) NSInteger count; -- (null_unspecified instancetype)initWithArray:(RLMArray * _Null_unspecified)array OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface NSDate (SWIFT_EXTENSION(RealmSwift)) -@end - - - - -/// :nodoc: Internal class. Do not use directly. -SWIFT_CLASS_NAMED("ObjectUtil") -@interface RealmSwiftObjectUtil : NSObject -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -@class RLMResults; - - -/// :nodoc: Internal class. Do not use directly. -SWIFT_CLASS("_TtC10RealmSwift11ResultsBase") -@interface ResultsBase : NSObject -@property (nonatomic, readonly, strong) RLMResults * _Nonnull rlmResults; - -/// Returns a human-readable description of the objects contained in these results. -@property (nonatomic, readonly, copy) NSString * _Nonnull description; -- (nonnull instancetype)init:(RLMResults * _Nonnull)rlmResults OBJC_DESIGNATED_INITIALIZER; -- (NSInteger)countByEnumeratingWithState:(NSFastEnumerationState * _Null_unspecified)state objects:(id _Nullable * _Null_unspecified)buffer count:(NSInteger)len; -@end - -#pragma clang diagnostic pop diff --git a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/RealmSwift.swiftmodule/x86_64.swiftdoc b/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/RealmSwift.swiftmodule/x86_64.swiftdoc deleted file mode 100644 index d7d6ea9..0000000 Binary files a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/RealmSwift.swiftmodule/x86_64.swiftdoc and /dev/null differ diff --git a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule b/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule deleted file mode 100644 index 0767e0d..0000000 Binary files a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule and /dev/null differ diff --git a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/module.modulemap b/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/module.modulemap deleted file mode 100644 index 293772c..0000000 --- a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/module.modulemap +++ /dev/null @@ -1,3 +0,0 @@ -framework module RealmSwift { - header "RealmSwift-Swift.h" -} diff --git a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/RealmSwift b/Carthage/Build/Mac/RealmSwift.framework/Versions/A/RealmSwift deleted file mode 100755 index 8b025f2..0000000 Binary files a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/RealmSwift and /dev/null differ diff --git a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Resources/Info.plist b/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index fc59677..0000000 --- a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,46 +0,0 @@ - - - - - BuildMachineOSBuild - 15E65 - CFBundleDevelopmentRegion - English - CFBundleExecutable - RealmSwift - CFBundleIdentifier - io.realm.RealmSwit - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - RealmSwift - CFBundlePackageType - FMWK - CFBundleShortVersionString - 0.98.6 - CFBundleSignature - ???? - CFBundleSupportedPlatforms - - MacOSX - - CFBundleVersion - 0.98.6 - DTCompiler - com.apple.compilers.llvm.clang.1_0 - DTPlatformBuild - 7D175 - DTPlatformVersion - GM - DTSDKBuild - 15E60 - DTSDKName - macosx10.11 - DTXcode - 0730 - DTXcodeBuild - 7D175 - NSHumanReadableCopyright - Copyright © 2014 Realm. All rights reserved. - - diff --git a/Carthage/Build/Mac/RealmSwift.framework/Versions/Current b/Carthage/Build/Mac/RealmSwift.framework/Versions/Current deleted file mode 120000 index 8c7e5a6..0000000 --- a/Carthage/Build/Mac/RealmSwift.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/Carthage/Build/iOS/AD611D0C-4324-3354-AC55-66A897C4EB29.bcsymbolmap b/Carthage/Build/iOS/09280CE2-1276-346A-9DC2-4766069D38BC.bcsymbolmap similarity index 73% rename from Carthage/Build/iOS/AD611D0C-4324-3354-AC55-66A897C4EB29.bcsymbolmap rename to Carthage/Build/iOS/09280CE2-1276-346A-9DC2-4766069D38BC.bcsymbolmap index 463bc31..fe73ef0 100644 --- a/Carthage/Build/iOS/AD611D0C-4324-3354-AC55-66A897C4EB29.bcsymbolmap +++ b/Carthage/Build/iOS/09280CE2-1276-346A-9DC2-4766069D38BC.bcsymbolmap @@ -1,15 +1,8 @@ BCSymbolMap Version: 1.0 _TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ _TFSaCft12arrayLiteralGSax__GSax_ -_TFEsPs30RangeReplaceableCollectionType15reserveCapacityfWx5Index8Distance_T_ -_TFEsPs30RangeReplaceableCollectionTypeCuRd__s12SequenceTypeWx9Generator7Element_zWd__9GeneratorS2__rfqd__x -_TFEsPs30RangeReplaceableCollectionType16insertContentsOfuRd__s14CollectionTypeWx9Generator7Element_zWd__S1_S2__rfTqd__2atwx5Index_T_ -_TFEsPs30RangeReplaceableCollectionType13removeAtIndexfwx5IndexWx9Generator7Element_ -_TFEsPs30RangeReplaceableCollectionType17_customRemoveLastfT_GSqWx9Generator7Element__ -_TFEsPs30RangeReplaceableCollectionType11removeFirstfT_Wx9Generator7Element_ -_TFEsPs30RangeReplaceableCollectionType11removeFirstfSiT_ -_TFEsPs30RangeReplaceableCollectionType11removeRangefGVs5Rangewx5Index_T_ -_TFEsPs30RangeReplaceableCollectionType9removeAllfT12keepCapacitySb_T_ +objectdestroy +_TPA__TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_14LinkingObjectsx___dT__XFo_oGS1_GS2_x___dT__ _TFesRxs14CollectionTypewx11SubSequencezGVs5Slicex_wx5IndexzWxS0_S2__wx8_ElementzWxS0_9Generator7Element_WxS0_S3__zWxS0_S4_S5__WxS0_S4__zGVs17IndexingGeneratorGS1_x__WxS0_11SubSequence_zGS1_x_rS_g9subscriptFGVs5RangewxS2__GS1_x_ _TFEsPs14CollectionType10prefixUpTofwx5Indexwx11SubSequence _TFEsPs14CollectionType10suffixFromfwx5Indexwx11SubSequence @@ -29,13 +22,22 @@ _TFEsPs12SequenceType31_customContainsEquatableElementfWx9Generator7Element_GSqS _TFEsPs14CollectionType18_preprocessingPassurfFxqd__GSqqd___ _TFEsPs14CollectionType24_copyToNativeArrayBufferfT_GVs22_ContiguousArrayBufferWx9Generator7Element__ _TFEsPs12SequenceType13_initializeTofGSpWx9Generator7Element__GSpWxS0_S1___ +_TFEsPs30RangeReplaceableCollectionType15reserveCapacityfWx5Index8Distance_T_ +_TFEsPs30RangeReplaceableCollectionTypeCuRd__s12SequenceTypeWx9Generator7Element_zWd__9GeneratorS2__rfqd__x +_TFEsPs30RangeReplaceableCollectionType16insertContentsOfuRd__s14CollectionTypeWx9Generator7Element_zWd__S1_S2__rfTqd__2atwx5Index_T_ +_TFEsPs30RangeReplaceableCollectionType13removeAtIndexfwx5IndexWx9Generator7Element_ +_TFEsPs30RangeReplaceableCollectionType17_customRemoveLastfT_GSqWx9Generator7Element__ +_TFEsPs30RangeReplaceableCollectionType11removeFirstfT_Wx9Generator7Element_ +_TFEsPs30RangeReplaceableCollectionType11removeFirstfSiT_ +_TFEsPs30RangeReplaceableCollectionType11removeRangefGVs5Rangewx5Index_T_ +_TFEsPs30RangeReplaceableCollectionType9removeAllfT12keepCapacitySb_T_ _TFVC10RealmSwift5Realm13Configurationg16rlmConfigurationCSo21RLMRealmConfiguration _TFEsPs14CollectionTypeg5firstGSqWx9Generator7Element__ _TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__ -objectdestroy +objectdestroy.3 _TPA__TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__ _TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_ -objectdestroy.1 +objectdestroy.5 _TPA__TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_ _TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__ _TPA__TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__ @@ -93,22 +95,18 @@ _TTWVSC17NSMatchingOptionss16RawRepresentable10FoundationFS0_g8rawValuewx8RawVal _TTWVSC17NSMatchingOptionss13OptionSetType10FoundationFS0_CfT8rawValuewx8RawValue_x _TTSf4gs_gs___TZFsoi2eeFTSSSS_Sb _TFVs20ManagedBufferPointerlu5valuex -_TFSaCfGVs12_ArrayBufferx_GSax_ -_TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ _TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ -_TFSaCuRd__s12SequenceTypexzWd__9Generator7Element_rfqd__GSax_ -_TFSag5countSi _TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TFSag5countSi _TFSp10initializefxT_ -_TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TFVs22_ContiguousArrayBufferg5countSi -_TZFsoi2eeurFTGSqx_Vs26_OptionalNilComparisonType_Sb -_TFVs22_ContiguousArrayBuffers5countSi +_TFSaCuRd__s12SequenceTypexzWd__9Generator7Element_rfqd__GSax_ _TFVs15ContiguousArrayCfT_GS_x_ _TFVs15ContiguousArray6appendfxT_ _TFSa6appendfxT_ _TFs11numericCastu0_Rxs18_SignedIntegerType_S_rFxq_ _TFVs15ContiguousArray15reserveCapacityfSiT_ +_TFVs22_ContiguousArrayBufferCfT_GS_x_ +_TFVs22_ContiguousArrayBufferg5countSi _TFEsPs14CollectionTypeg7indicesGVs5Rangewx5Index_ _TFVs12_ArrayBufferg8capacitySi _TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ @@ -150,43 +148,51 @@ _TTSf4n_n_d___TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TZ _TTSf4n_n_d___TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element8subsumeswxS0__Sb _TTSf4n_n_d___TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element14isDisjointWithwxS0__Sb _TTSf4n_n_d___TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element14isDisjointWithwxS0__Sb -objectdestroy.14 +objectdestroy.13 _swift_dead_method_stub -_TPA__TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__.7 _TWturGVs15ContiguousArrayx_s12SequenceTypes11SubSequence _TWturGSax_s14CollectionTypes11SubSequence _TTWVSC17NSMatchingOptionss16RawRepresentable10FoundationFS0_CfT8rawValuewx8RawValue_GSqx_ _TTWVSC26NSRegularExpressionOptionss16RawRepresentable10FoundationFS0_CfT8rawValuewx8RawValue_GSqx_ -objectdestroy.3 -objectdestroy.5 -objectdestroy.8 -objectdestroy.11 +objectdestroy.7 +_TWturGVs22_ContiguousArrayBufferx_s9Indexables8_Element _TWturGVs12AnyGeneratorx_s13GeneratorTypes7Element _TWturGVs12_ArrayBufferx_s16_ArrayBufferTypes7Element _TWturGVs12_ArrayBufferx_s9Indexables8_Element _TWturGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypes7Element -_TWturGVs22_ContiguousArrayBufferx_s9Indexables8_Element _TTWVSC26NSRegularExpressionOptionss9Equatable10FoundationZFS0_oi2eefTxx_Sb _TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_g7isEmptySb -_TPA__TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__.13 +objectdestroy.1 +objectdestroy.9 +objectdestroy.11 _TTWVSC26NSRegularExpressionOptionss16RawRepresentable10FoundationFS0_g8rawValuewx8RawValue _TWTurGVs15ContiguousArrayx_s12SequenceTypes9GeneratorPs13GeneratorType_ _TWTurGSax_s14CollectionTypes9GeneratorPs13GeneratorType_ _TWTurGVs22_ContiguousArrayBufferx_s14CollectionTypes9GeneratorPs13GeneratorType_ _TTWVSC26NSRegularExpressionOptionss13OptionSetType10FoundationFS0_CfT8rawValuewx8RawValue_x -_TPA__TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_.10 +_TPA__TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_4Listx___dT__XFo_oGS1_GS2_x___dT__ +_TPA__TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx___dT__XFo_oGS1_GS2_x___dT__ +_TPA__TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_7Resultsx___dT__XFo_oGS1_GS2_x___dT__ _TWturGSax_s14CollectionTypes9Generator _TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_8containsfwx7ElementSb _TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_8containsfwx7ElementSb globalinit_33_47969F13D2F39044D14973F482FBAD86_token0 +metadata L_selector_data(_rlmArray) L_selector(_rlmArray) L_selector_data(count) L_selector(count) +metadata.2 L_selector_data(defaultConfiguration) L_selector(defaultConfiguration) +L_selector_data(allocWithZone:) +L_selector(allocWithZone:) +L_selector_data(initFileURLWithPath:isDirectory:) +L_selector(initFileURLWithPath:isDirectory:) L_selector_data(path) L_selector(path) +L_selector_data(fileURL) +L_selector(fileURL) L_selector_data(inMemoryIdentifier) L_selector(inMemoryIdentifier) L_selector_data(encryptionKey) @@ -197,9 +203,11 @@ globalinit_33_47969F13D2F39044D14973F482FBAD86_token0 L_selector(schemaVersion) L_selector_data(migrationBlock) L_selector(migrationBlock) -metadata -metadata.2 metadata.4 +metadata.6 +metadata.8 +L_selector_data(deleteRealmIfMigrationNeeded) +L_selector(deleteRealmIfMigrationNeeded) L_selector_data(customSchema) L_selector(customSchema) L_selector_data(disableFormatUpgrade) @@ -211,8 +219,7 @@ _TMLCSo12NSDictionary L_selector(isEqualToObjectSchema:) L_selector_data(isEqualToProperty:) L_selector(isEqualToProperty:) -metadata.6 -metadata.9 +metadata.10 metadata.12 L_selector_data(isEqualToSchema:) L_selector(isEqualToSchema:) @@ -251,13 +258,13 @@ field_type_vector_NSRegularExpressionOptions field_type_vector_NSMatchingOptions _TMLGCs23_ContiguousArrayStorageVSC26NSRegularExpressionOptions_ _TMLGCs23_ContiguousArrayStorageVSC17NSMatchingOptions_ -metadata.15 +metadata.14 switch.table -Apple LLVM version 7.3.0 (clang-703.0.29) --emit-bc /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Aliases.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Error.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/List.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Migration.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Object.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/ObjectSchema.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Optional.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Property.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Realm.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmCollectionType.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmConfiguration.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Results.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Schema.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SortDescriptor.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SwiftVersion.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Util.swift -target armv7-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode-7.3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk -I /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Products/Release-iphoneos -F /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Products/Release-iphoneos -application-extension -g -module-cache-path /Users/realm/Library/Developer/Xcode/DerivedData/ModuleCache -serialize-debugging-options -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-generated-files.hmap -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-own-target-headers.hmap -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-project-headers.hmap -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Products/Release-iphoneos/include -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/DerivedSources/armv7 -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/DerivedSources -Xcc -DREALM_HAVE_CONFIG -Xcc -D__ASSERTMACROS__ -Xcc -working-directory/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release -emit-module-doc-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmSwift.swiftdoc -O -module-name RealmSwift -emit-module-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmSwift.swiftmodule -emit-objc-header-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmSwift-Swift.h -serialize-diagnostics-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Aliases.dia -emit-dependencies-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Aliases.d -num-threads 4 -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Aliases.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Error.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/List.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Migration.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Object.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/ObjectSchema.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Optional.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Property.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Realm.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmCollectionType.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmConfiguration.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Results.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Schema.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/SortDescriptor.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/SwiftVersion.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Util.bc -resource-dir /Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift +Apple LLVM version 7.3.0 (clang-703.0.31) +-emit-bc /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Aliases.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Error.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/LinkingObjects.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/List.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Migration.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Object.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/ObjectSchema.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Optional.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Property.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Realm.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/RealmCollectionType.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/RealmConfiguration.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Results.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Schema.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/SortDescriptor.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/SwiftVersion.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Util.swift -target armv7-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk -I /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Products/Release-iphoneos -F /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Products/Release-iphoneos -application-extension -g -module-cache-path /Users/polquintana/Library/Developer/Xcode/DerivedData/ModuleCache -serialize-debugging-options -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-generated-files.hmap -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-own-target-headers.hmap -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-project-headers.hmap -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Products/Release-iphoneos/include -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/DerivedSources/armv7 -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/DerivedSources -Xcc -DREALM_HAVE_CONFIG -Xcc -D__ASSERTMACROS__ -Xcc -working-directory/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa -emit-module-doc-path /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmSwift.swiftdoc -O -module-name RealmSwift -emit-module-path /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmSwift.swiftmodule -emit-objc-header-path /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmSwift-Swift.h -serialize-diagnostics-path /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Aliases.dia -emit-dependencies-path /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Aliases.d -num-threads 4 -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Aliases.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Error.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/LinkingObjects.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/List.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Migration.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Object.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/ObjectSchema.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Optional.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Property.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Realm.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmCollectionType.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmConfiguration.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Results.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Schema.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/SortDescriptor.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/SwiftVersion.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Util.bc -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift $NSDecimal$_exponent$getter -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa $NSDecimal$_exponent$setter $NSDecimal$_length$getter $NSDecimal$_length$setter @@ -267,15 +274,13 @@ $NSDecimal$_isCompact$getter $NSDecimal$_isCompact$setter $NSDecimal$_reserved$getter $NSDecimal$_reserved$setter -Apple Swift version 2.2 (swiftlang-703.0.18.1 clang-703.0.29) +Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +_TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_14LinkingObjectsx___dT__XFo_oGS1_GS2_x___dT__ Aliases.swift -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift -_TFEsPs30RangeReplaceableCollectionType17_customRemoveLastfSiSb -_TFVs15EmptyCollectionCfT_GS_x_ +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift +_TZFsoi2eeurFTGSqx_Vs26_OptionalNilComparisonType_Sb _TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ _TFVs15ContiguousArrayg5countSi -_TFSp14initializeFromfTGSpx_5countSi_T_ -_TFVs22_ContiguousArrayBufferg5ownerPs9AnyObject_ _TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ _TFVs22_ContiguousArrayBufferg10startIndexSi _TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb @@ -305,12 +310,18 @@ _TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5I _TFVs14_IgnorePointerCfT_GS_x_ _TFSa16_copyToNewBufferfSiT_ _TFSa36_reserveCapacityAssumingUniqueBufferfSiT_ +_TFVs22_ContiguousArrayBuffers5countSi _TFVs12_ArrayBuffers5countSi _TFVs12_ArrayBufferg19firstElementAddressGSpx_ _TFSa37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ _TFEsPs14_Incrementable17_successorInPlacefT_T_ _TFs10_expectEnduRxs14CollectionTyperFTwx5Indexx_T_ _TFs34_copyCollectionToNativeArrayBufferuRxs14CollectionTyperFxGVs22_ContiguousArrayBufferWx9Generator7Element__ +_TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_4Listx___dT__XFo_oGS1_GS2_x___dT__ +_TFEsPs30RangeReplaceableCollectionType17_customRemoveLastfSiSb +_TFVs15EmptyCollectionCfT_GS_x_ +_TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx___dT__XFo_oGS1_GS2_x___dT__ +_TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_7Resultsx___dT__XFo_oGS1_GS2_x___dT__ init _TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraTypeCft12arrayLiteralGSawx7Element__x == @@ -425,6 +436,7 @@ prefixThrough suffixFrom prefixUpTo _addNotificationBlock +addNotificationBlock setValue valueForKeyPath valueForKey @@ -434,22 +446,24 @@ max min sorted indexOf +invalidated.get realm.get _TIFC10RealmSwift7Results6sortedFTSS9ascendingSb_GS0_x_A0_ Results.swift objectTypes.materialize inMemoryIdentifier.materialize -path.materialize -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A5_ -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A3_ -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A2_ -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A1_ +fileURL.materialize +_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A6_ +_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A5_ +_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A3_ +_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A2_ +_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A1_ defaultConfiguration.materialize next hashValue.get _TTWSSs9EquatablesZFS_oi2eefTxx_Sb _TTSg5O10RealmSwift12NotificationS0_s16RawRepresentableS__SSSSs9Equatables___TZFsoi2eeuRxs16RawRepresentablewx8RawValues9EquatablerFTxx_Sb -_TIFC10RealmSwift5Realm15writeCopyToPathFzTSS13encryptionKeyGSqCSo6NSData__T_A0_ +_TIFC10RealmSwift5Realm14writeCopyToURLFzTCSo5NSURL13encryptionKeyGSqCSo6NSData__T_A0_ Realm.swift _TIFC10RealmSwift5Realm13dynamicCreateFTSS5valuePs9AnyObject_6updateSb_CS_13DynamicObjectA1_ _TIFC10RealmSwift5Realm13dynamicCreateFTSS5valuePs9AnyObject_6updateSb_CS_13DynamicObjectA0_ @@ -457,7 +471,6 @@ _TIFC10RealmSwift5Realm6createuRxCS_6ObjectrFTMx5valuePs9AnyObject_6updateSb_xA1 _TIFC10RealmSwift5Realm6createuRxCS_6ObjectrFTMx5valuePs9AnyObject_6updateSb_xA0_ _TIFC10RealmSwift5Realm3adduRxs12SequenceTypeWx9Generator7Element_CS_6ObjectrFTx6updateSb_T_A0_ _TIFC10RealmSwift5Realm3addFTCS_6Object6updateSb_T_A0_ -_TIFC10RealmSwift5RealmcFzT13configurationVS0_13Configuration_S0_A_ _TIFC10RealmSwift13RealmOptionalcFTGSqx__GS0_x_A_ Optional.swift subscript.materialize @@ -481,20 +494,19 @@ Migration.swift _TTRXFo_oXFo_oCSo12RLMMigrationdVs6UInt64_dT___oXFo_oC10RealmSwift9MigrationdS0__dT__zoPs9ErrorType__XFo_iXFo_iTS_S0___iT___iXFo_iT9migrationS2_16oldSchemaVersionS0___iT__zoPS3___ _TFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_ _TTSg5SSSSs9Equatables___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb -_TTSg5SSSSs9Equatables___TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb -path.set -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A4_ -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A0_ +_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A4_ +_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A0_ _TFSSCfT21_builtinStringLiteralBp8byteSizeBw7isASCIIBi1__SS _TTSf4n_n_n_d___TFSSCfT21_builtinStringLiteralBp8byteSizeBw7isASCIIBi1__SS _TMaCSo21RLMRealmConfiguration _TTSg5FTCSo12RLMMigrationVs6UInt64_T__FT9migrationC10RealmSwift9Migration16oldSchemaVersionS0__T____TFSq3mapurfzFzxqd__GSqqd___ fromRLMRealmConfiguration +_TTSg5SSSSs9Equatables___TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb +fileURL.set defaultConfiguration.get -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A_ +_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A_ _TIF10RealmSwift12migrateRealmFTVCS_5Realm13Configuration_GSqCSo7NSError_A_ -_TIF10RealmSwift19schemaVersionAtPathFTSS13encryptionKeyGSqCSo6NSData_5errorGVs33AutoreleasingUnsafeMutablePointerGSqCSo7NSError___GSqVs6UInt64_A1_ -_TIF10RealmSwift19schemaVersionAtPathFTSS13encryptionKeyGSqCSo6NSData_5errorGVs33AutoreleasingUnsafeMutablePointerGSqCSo7NSError___GSqVs6UInt64_A0_ +_TIF10RealmSwift18schemaVersionAtURLFzTCSo5NSURL13encryptionKeyGSqCSo6NSData__Vs6UInt64A0_ removeAll removeRange removeFirst @@ -507,11 +519,13 @@ reserveCapacity replaceRange _TIFC10RealmSwift4List6sortedFTSS9ascendingSb_GCS_7Resultsx_A0_ List.swift +_TIFC10RealmSwift14LinkingObjects6sortedFTSS9ascendingSb_GCS_7Resultsx_A0_ +LinkingObjects.swift _code.get rlmError.get _domain.get _TFSig9hashValueSi -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Aliases.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Aliases.swift __swift_memcpy1_1 __swift_memcpy_array1_1 __swift_memmove_array1_1 @@ -532,76 +546,78 @@ _TWaO10RealmSwift5Errors9ErrorTypeS_ _TWaO10RealmSwift5Errors8HashableS_ ~= _TZFsoi2eeFTSSSS_Sb -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Error.swift -_TToFC10RealmSwift8ListBaseg11descriptionSS -_TToFC10RealmSwift8ListBaseg5countSi -_TToFC10RealmSwift8ListBasecfT5arrayGSQCSo8RLMArray__GSQS0__ -_TToFC10RealmSwift8ListBasecfT_S0_ -_TFFC10RealmSwift4Listg5realmGSqCS_5Realm_U_FCSo8RLMRealmS1_ -_TToFC10RealmSwift4Listg11invalidatedSb -_TToFC10RealmSwift4ListcfT_GS0_x_ -_TToFC10RealmSwift4List11valueForKeyfSSGSqPs9AnyObject__ -_TToFC10RealmSwift4List15valueForKeyPathfSSGSqPs9AnyObject__ -_TToFC10RealmSwift4List8setValuefTGSqPs9AnyObject__6forKeySS_T_ +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Error.swift +_TToFC10RealmSwift18LinkingObjectsBaseg15objectClassNameSS +_TToFC10RealmSwift18LinkingObjectsBaseg12propertyNameSS +_TMaCSo10RLMResults +_TToFC10RealmSwift18LinkingObjectsBase27countByEnumeratingWithStatefTGSpVSC22NSFastEnumerationState_7objectsGVs33AutoreleasingUnsafeMutablePointerGSqPs9AnyObject___5countSi_Si +_TToFC10RealmSwift18LinkingObjectsBasecfT_S0_ +_TToFC10RealmSwift14LinkingObjectsg11invalidatedSb +_TToFC10RealmSwift14LinkingObjectsg5countSi +_TToFC10RealmSwift14LinkingObjectsg11descriptionSS +_TToFC10RealmSwift14LinkingObjects11valueForKeyfSSGSqPs9AnyObject__ +_TToFC10RealmSwift14LinkingObjects15valueForKeyPathfSSGSqPs9AnyObject__ +_TToFC10RealmSwift14LinkingObjects8setValuefTGSqPs9AnyObject__6forKeySS_T_ _TFC10RealmSwift7ResultsCfCSo10RLMResultsGS0_x_ -_TFFC10RealmSwift4List6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrFqd__GCS_7Resultsx_U_FS4_Ps9AnyObject_ +_TFFC10RealmSwift14LinkingObjects6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrFqd__GCS_7Resultsx_U_FS4_Ps9AnyObject_ _TTRG__RxC10RealmSwift6Objectd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrXFo_oS4__oPs9AnyObject_zoPs9ErrorType__XFo_iS4__iPS5__zoPS6___ -_TToFC10RealmSwift4List13removeAtIndexfSiT_ -_TToFC10RealmSwift4List10removeLastfT_T_ -_TToFC10RealmSwift4List9removeAllfT_T_ -_TToFC10RealmSwift4List4movefT4fromSi2toSi_T_ -_TToFC10RealmSwift4List4swapfTSiSi_T_ -_TTRXFo_oCSo8RLMArrayoCSo7NSError_dT__XFdCb_dS_dS0__dT__ +_TFFC10RealmSwift14LinkingObjects20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TZFO10RealmSwift21RealmCollectionChange8fromObjcfTx6changeGSqCSo19RLMCollectionChange_5errorGSqCSo7NSError__GS0_x_ +_TTRXFo_oGSqCSo10RLMResults_oGSqCSo19RLMCollectionChange_oGSqCSo7NSError__dT__XFdCb_dGSqS__dGSqS0__dGSqS1___dT__ _TFC10RealmSwift12RLMGeneratorCfT10collectionPSo13RLMCollection__GS0_x_ -_TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ -_TFEsPs12SequenceType7reversefT_GSaWx9Generator7Element__ -_TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TFFC10RealmSwift14LinkingObjects21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ _TTSg5SSSSs10Streamables___TFs27_toStringReadOnlyStreamableuRxs10StreamablerFxSS -_TFs4swapurFTRxRx_T_ -_TFSaap9subscriptFSix -_TFVs17IndexingGeneratorCfxGS_x_ +_TTSg5SS___TFSa9_getCountfT_Si _TTSf4n_gs___TF10RealmSwift21throwForNegativeIndexFTSi13parameterNameSS_T_ _TMaGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__ _TPA__TTRG__RxC10RealmSwift6Objectd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrXFo_oS4__oPs9AnyObject_zoPs9ErrorType__XFo_iS4__iPS5__zoPS6___ -_TPA__TFFC10RealmSwift4List20addNotificationBlockFFGS0_x_T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayCSo7NSError_T_ +_TPA__TFFC10RealmSwift14LinkingObjects20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ block_copy_helper block_destroy_helper -_TPA__TFFC10RealmSwift4List21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayS2__T_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_7Element -_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_ -_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequencePs9Indexable_ -_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequencePs12SequenceType_ -_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_9Generator -_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_9GeneratorPs13GeneratorType_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_11SubSequence -get_field_types_ListBase -get_field_types_List -create_generic_metadata_List -_TMaGCs23_ContiguousArrayStorageSS_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_9Generator -_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s9IndexableS_8_Element -block_destroy_helper.8 -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequence -block_copy_helper.7 -_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_9GeneratorPs13GeneratorType_ -L_selector_data(initWithArray:) -L_selector(initWithArray:) -L_selector_data(allocWithZone:) -L_selector(allocWithZone:) -L_selector_data(init) -L_selector(init) +_TPA__TFFC10RealmSwift14LinkingObjects21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_S_19RealmCollectionTypeS_7Element +_TWIuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_S_19RealmCollectionTypeS_ +_TWTuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_11SubSequencePs9Indexable_ +_TWTuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_11SubSequencePs12SequenceType_ +_TWIuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_ +_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s12SequenceTypeS_9Generator +_TWTuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s12SequenceTypeS_9GeneratorPs13GeneratorType_ +_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s12SequenceTypeS_11SubSequence +get_field_types_LinkingObjectsBase +get_field_types_LinkingObjects +create_generic_metadata_LinkingObjects +_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_9Generator +_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s9IndexableS_8_Element +block_destroy_helper.6 +_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_11SubSequence +block_copy_helper.5 +_TWTuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_9GeneratorPs13GeneratorType_ +L_selector_data(countByEnumeratingWithState:objects:count:) +L_selector(countByEnumeratingWithState:objects:count:) +_TMLCSo10RLMResults +L_selector_data(emptyDetachedResults) +L_selector(emptyDetachedResults) +L_selector_data(object) +L_selector(object) L_selector_data(dealloc) L_selector(dealloc) +L_selector_data(isAttached) +L_selector(isAttached) L_selector_data(realm) L_selector(realm) L_selector_data(isInvalidated) L_selector(isInvalidated) L_selector_data(className) L_selector(className) -L_selector_data(initWithObjectClassName:) -L_selector(initWithObjectClassName:) +L_selector_data(init) +L_selector(init) +_TMLGCs23_ContiguousArrayStorageSS_ +L_selector_data(objectClassName) +L_selector(objectClassName) +L_selector_data(initWithPattern:options:error:) +L_selector(initWithPattern:options:error:) +L_selector_data(stringByReplacingMatchesInString:options:range:withTemplate:) +L_selector(stringByReplacingMatchesInString:options:range:withTemplate:) L_selector_data(indexOfObject:) L_selector(indexOfObject:) L_selector_data(indexOfObjectWithPredicate:) @@ -614,8 +630,6 @@ _PROTOCOL__TtPs9AnyObject_ L_selector(predicateWithFormat:argumentArray:) L_selector_data(objectAtIndexedSubscript:) L_selector(objectAtIndexedSubscript:) -L_selector_data(setObject:atIndexedSubscript:) -L_selector(setObject:atIndexedSubscript:) L_selector_data(firstObject) L_selector(firstObject) L_selector_data(lastObject) @@ -637,68 +651,135 @@ _TWLGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__uRxs9IndexablerGS_x_ _TMLGVs10ArraySliceV10RealmSwift14SortDescriptor_ L_selector_data(sortedResultsUsingDescriptors:) L_selector(sortedResultsUsingDescriptors:) -L_selector_data(predicateWithValue:) -L_selector(predicateWithValue:) -L_selector_data(addObject:) -L_selector(addObject:) -L_selector_data(insertObject:atIndex:) -L_selector(insertObject:atIndex:) -L_selector_data(removeObjectAtIndex:) -L_selector(removeObjectAtIndex:) -L_selector_data(removeLastObject) -L_selector(removeLastObject) -L_selector_data(removeAllObjects) -L_selector(removeAllObjects) -L_selector_data(replaceObjectAtIndex:withObject:) -L_selector(replaceObjectAtIndex:withObject:) -L_selector_data(moveObjectAtIndex:toIndex:) -L_selector(moveObjectAtIndex:toIndex:) -L_selector_data(exchangeObjectAtIndex:withObjectAtIndex:) -L_selector(exchangeObjectAtIndex:withObjectAtIndex:) +L_selector_data(minOfProperty:) +L_selector(minOfProperty:) +L_selector_data(maxOfProperty:) +L_selector(maxOfProperty:) +L_selector_data(sumOfProperty:) +L_selector(sumOfProperty:) +L_selector_data(averageOfProperty:) +L_selector(averageOfProperty:) +_TMLCSo8NSNumber block_descriptor L_selector_data(addNotificationBlock:) L_selector(addNotificationBlock:) -block_descriptor.9 -_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_ -L_selector_data(descriptionWithMaxDepth:) -_METACLASS_DATA__TtC10RealmSwift8ListBase -_INSTANCE_METHODS__TtC10RealmSwift8ListBase -_PROPERTIES__TtC10RealmSwift8ListBase -_DATA__TtC10RealmSwift8ListBase -_TWoFC10RealmSwift8ListBaseP33_027551CC6B6B2DBBB6CF4A740CB6E5D623descriptionWithMaxDepthfSuSS -_TMfC10RealmSwift8ListBase +block_descriptor.7 +_TWGuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_S_19RealmCollectionTypeS_ +_TWGuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_ +_TWGuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s12SequenceTypeS_ +_PROTOCOL_NSFastEnumeration +l_OBJC_LABEL_PROTOCOL_$_NSFastEnumeration +l_OBJC_PROTOCOL_REFERENCE_$_NSFastEnumeration +L_selector_data(propertyName) +_TWvdvC10RealmSwift18LinkingObjectsBaseP33_25CFEE8474EDA10420AA87D5D977CE2216cachedRLMResultsGSqCSo10RLMResults_ +_TWvdvC10RealmSwift18LinkingObjectsBaseP33_25CFEE8474EDA10420AA87D5D977CE226objectGSqCSo19RLMWeakObjectHandle_ +_TWvdvC10RealmSwift18LinkingObjectsBaseP33_25CFEE8474EDA10420AA87D5D977CE228propertyGSqCSo11RLMProperty_ +L_selector_data(attachToObject:property:) +L_selector_data(rlmResults) +L_selector_data(initFromClassName:property:) +L_selector_data(.cxx_destruct) +_PROTOCOLS__TtC10RealmSwift18LinkingObjectsBase +_METACLASS_DATA__TtC10RealmSwift18LinkingObjectsBase +_INSTANCE_METHODS__TtC10RealmSwift18LinkingObjectsBase +_PROTOCOLS__TtC10RealmSwift18LinkingObjectsBase.8 +_IVARS__TtC10RealmSwift18LinkingObjectsBase +_PROPERTIES__TtC10RealmSwift18LinkingObjectsBase +_DATA__TtC10RealmSwift18LinkingObjectsBase +_TWoFC10RealmSwift18LinkingObjectsBasegP33_25CFEE8474EDA10420AA87D5D977CE2216cachedRLMResultsGSqCSo10RLMResults_ +_TWoFC10RealmSwift18LinkingObjectsBasesP33_25CFEE8474EDA10420AA87D5D977CE2216cachedRLMResultsGSqCSo10RLMResults_ +_TWoFC10RealmSwift18LinkingObjectsBasemP33_25CFEE8474EDA10420AA87D5D977CE2216cachedRLMResultsGSqCSo10RLMResults_ +_TWoFC10RealmSwift18LinkingObjectsBasegP33_25CFEE8474EDA10420AA87D5D977CE226objectGSqCSo19RLMWeakObjectHandle_ +_TWoFC10RealmSwift18LinkingObjectsBasesP33_25CFEE8474EDA10420AA87D5D977CE226objectGSqCSo19RLMWeakObjectHandle_ +_TWoFC10RealmSwift18LinkingObjectsBasemP33_25CFEE8474EDA10420AA87D5D977CE226objectGSqCSo19RLMWeakObjectHandle_ +_TWoFC10RealmSwift18LinkingObjectsBasegP33_25CFEE8474EDA10420AA87D5D977CE228propertyGSqCSo11RLMProperty_ +_TWoFC10RealmSwift18LinkingObjectsBasesP33_25CFEE8474EDA10420AA87D5D977CE228propertyGSqCSo11RLMProperty_ +_TWoFC10RealmSwift18LinkingObjectsBasemP33_25CFEE8474EDA10420AA87D5D977CE228propertyGSqCSo11RLMProperty_ +_TMfC10RealmSwift18LinkingObjectsBase L_selector_data(invalidated) -L_selector_data(removeAtIndex:) -L_selector_data(removeLast) -L_selector_data(removeAll) -L_selector_data(moveFrom:to:) -L_selector_data(swap::) -_INSTANCE_METHODS__TtC10RealmSwift4List -_PROPERTIES__TtC10RealmSwift4List +_INSTANCE_METHODS__TtC10RealmSwift14LinkingObjects +_PROPERTIES__TtC10RealmSwift14LinkingObjects got._TMp10RealmSwift19RealmCollectionType -got._TMps30RangeReplaceableCollectionType got._TMps14CollectionType got._TMps9Indexable got._TMps12SequenceType -field_type_vector_ListBase -L_selector_data(getObjects:range:) -L_selector(getObjects:range:) -L_selector_data(objectAtIndex:) -L_selector(objectAtIndex:) +field_type_vector_LinkingObjectsBase +_TMLGSqCSo10RLMResults_ +_TMLGSqCSo19RLMWeakObjectHandle_ +_TMLCSo19RLMWeakObjectHandle +_TMLGSqCSo11RLMProperty_ +_TMLCSo11RLMProperty +L_selector_data(initWithObject:) +L_selector(initWithObject:) L_selector_data(sortDescriptorWithProperty:ascending:) L_selector(sortDescriptorWithProperty:ascending:) -_TMLGCs23_ContiguousArrayStorageSS_ -L_selector_data(objectClassName) -L_selector(objectClassName) -L_selector(descriptionWithMaxDepth:) -L_selector_data(initWithPattern:options:error:) -L_selector(initWithPattern:options:error:) -L_selector_data(stringByReplacingMatchesInString:options:range:withTemplate:) -L_selector(stringByReplacingMatchesInString:options:range:withTemplate:) +_PROTOCOL_INSTANCE_METHODS_NSFastEnumeration +_PROTOCOL_METHOD_TYPES_NSFastEnumeration objc_classes +_TTSg5VSC26NSRegularExpressionOptions___TFSag8endIndexSi +_TTSg5VSC26NSRegularExpressionOptions___TFSag10startIndexSi +_TTSg5VSC26NSRegularExpressionOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator +_TTSg5GSaVSC26NSRegularExpressionOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ +_TTSg5VSC26NSRegularExpressionOptions___TFSag9subscriptFSix +_TTSg5VSC17NSMatchingOptions___TFSag8endIndexSi +_TTSg5VSC17NSMatchingOptions___TFSag10startIndexSi +_TTSg5VSC17NSMatchingOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator +_TTSg5GSaVSC17NSMatchingOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ +_TTSg5VSC17NSMatchingOptions___TFSag9subscriptFSix +_TTSg5Vs18_StringBufferIVars_Vs6UInt16___TFVs11_HeapBufferg6_valueGSpx_ +_TTSf4s_n_n___TFVs13_StringBuffer4growfTGVs5RangeGSPVs7RawByte__12newUsedCountSi_Sb +_TFVs13_StringBufferg8capacitySi +_TMaGCs18_HeapBufferStorageVs18_StringBufferIVarsVs6UInt16_ +_TTSf4n_n_n_d___TFVs13_StringBufferCfT8capacitySi11initialSizeSi12elementWidthSi_S_ +_TFFVs11_StringCoreg11cocoaBufferGSqPs9AnyObject__U_FPS0__PS0__ +_TFVs11_StringCore12_copyInPlacefT7newSizeSi11newCapacitySi15minElementWidthSi_T_ +_TFFVs11_StringCore20representableAsASCIIFT_SbU_FVs6UInt16Sb +_TTSf1cl57_TTRXFo_dVs6UInt16_dSbzoPs9ErrorType__XFo_iS__dSbzoPS0___XFo_dVs6UInt16_dSbzoPs9ErrorType___n___TTSg5GSRVs6UInt16_GSRS__s12SequenceTypes_GVs28UnsafeBufferPointerGeneratorS__GS1_S__s13GeneratorTypes_S__GVs5SliceGSRS______TFEsPs12SequenceType8containsfzFzWx9Generator7Element_SbSb +_TFVs11_StringCore14_claimCapacityfTSi15minElementWidthSi_TSiVs14COpaquePointer_ +_TTSf4gs_n___TFVs11_StringCore6appendfS_T_ +_TTWSus21BitwiseOperationsTypesZFS_oi1ofTxx_x +rlmSortDescriptorValue.get +objectClassName.get +propertyName.get +attachTo +_TToFC10RealmSwift18LinkingObjectsBaseg10rlmResultsCSo10RLMResults +_TMaCSo11RLMProperty +_TMaGSqCSo11RLMProperty_ +_TMaCSo19RLMWeakObjectHandle +_TMaGSqCSo19RLMWeakObjectHandle_ +_TMaGSqCSo10RLMResults_ +_TMaC10RealmSwift18LinkingObjectsBase +_TWauRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s12SequenceTypeS_ +_TWauRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s9IndexableS_ +_TWauRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_ +_TWauRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_S_19RealmCollectionTypeS_ +deinit +_TMaCSo8NSNumber +_TMaGVs10ArraySliceV10RealmSwift14SortDescriptor_ +_TWlGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__uRxs9IndexablerGS_x_s13GeneratorTypes +_TWlGSaV10RealmSwift14SortDescriptor_urGSax_s9Indexables +_TWlGSaV10RealmSwift14SortDescriptor_urGSax_s12SequenceTypes +_TMaGSaV10RealmSwift14SortDescriptor_ +_TTSg5V10RealmSwift14SortDescriptor___TFSaCft12arrayLiteralGSax__GSax_ +_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5V10RealmSwift14SortDescriptor___TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5V10RealmSwift14SortDescriptor___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5V10RealmSwift14SortDescriptor___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5V10RealmSwift14SortDescriptor___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5V10RealmSwift14SortDescriptor___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TMaGCs23_ContiguousArrayStorageV10RealmSwift14SortDescriptor_ +_TTSg5V10RealmSwift14SortDescriptor___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg14_alignmentMaskSi +last.get +_TMaGSqCSo9RLMObject_ +_TIF10RealmSwift21throwForNegativeIndexFTSi13parameterNameSS_T_A0_ +_TMaPs9AnyObject_ +_TMaCSo9RLMObject +notFoundToNil _TTWVVSS9UTF16View5Indexs16ForwardIndexTypesFS1_10distanceTofxwx8Distance _TFSSg5utf16VSS9UTF16View _TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffer10getElementfSix @@ -708,8 +789,10 @@ _TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffers5countSi _TTSg5VSC17NSMatchingOptions___TFVs12_ArrayBuffers5countSi _TTSg5VSC17NSMatchingOptions___TFSaCfT19_uninitializedCountSi_GSax_ _TTSg5VSC17NSMatchingOptions___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ +_TTWSis14_IncrementablesFS_17_successorInPlacefT_T_ _TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffer10getElementfSix _TTSg5GSaVSC26NSRegularExpressionOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTWSis9EquatablesZFS_oi2eefTxx_Sb _TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBufferg5countSi _TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffers5countSi _TTSg5VSC26NSRegularExpressionOptions___TFVs12_ArrayBuffers5countSi @@ -717,7 +800,6 @@ _TTSg5VSC26NSRegularExpressionOptions___TFVs12_ArrayBufferCfT_GS_x_ _TTSg5VSC26NSRegularExpressionOptions___TFSaCfT19_uninitializedCountSi_GSax_ _TTSg5VSC26NSRegularExpressionOptions___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ _TFSSCft19stringInterpolationGSaSS__SS -_TTSg5SS___TFSa9_getCountfT_Si _TFSSCfT26stringInterpolationSegmentSS_SS _TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ _TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ @@ -726,6 +808,7 @@ _TTSg5SS___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayS _TTSg5SS___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ _TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg14_elementOffsetSi _TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TMaGCs23_ContiguousArrayStorageSS_ _TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ gsub _TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ @@ -735,31 +818,157 @@ _TTSg5SS___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ _TTSg5SS___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ _TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ _TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSf4s_s___TFFs26_unimplemented_initializerFTVs12StaticString8initNameS_4fileS_4lineSu6columnSu_T_U0_FGSRVs5UInt8_T_ +countByEnumeratingWithState +_TTSg5CSo10RLMResultsS_s9Equatable5Realm___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb +rlmResults.get +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/LinkingObjects.swift +_TToFC10RealmSwift8ListBaseg11descriptionSS +_TToFC10RealmSwift8ListBaseg5countSi +_TToFC10RealmSwift8ListBasecfT5arrayGSQCSo8RLMArray__GSQS0__ +_TToFC10RealmSwift8ListBasecfT_S0_ +_TFFC10RealmSwift4Listg5realmGSqCS_5Realm_U_FCSo8RLMRealmS1_ +_TToFC10RealmSwift4Listg11invalidatedSb +_TToFC10RealmSwift4ListcfT_GS0_x_ +_TToFC10RealmSwift4List11valueForKeyfSSGSqPs9AnyObject__ +_TToFC10RealmSwift4List15valueForKeyPathfSSGSqPs9AnyObject__ +_TToFC10RealmSwift4List8setValuefTGSqPs9AnyObject__6forKeySS_T_ +_TFFC10RealmSwift4List6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrFqd__GCS_7Resultsx_U_FS4_Ps9AnyObject_ +_TToFC10RealmSwift4List13removeAtIndexfSiT_ +_TToFC10RealmSwift4List10removeLastfT_T_ +_TToFC10RealmSwift4List9removeAllfT_T_ +_TToFC10RealmSwift4List4movefT4fromSi2toSi_T_ +_TToFC10RealmSwift4List4swapfTSiSi_T_ +_TFFC10RealmSwift4List20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo8RLMArray_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TTRXFo_oGSqCSo8RLMArray_oGSqCSo19RLMCollectionChange_oGSqCSo7NSError__dT__XFdCb_dGSqS__dGSqS0__dGSqS1___dT__ +_TFEsPs12SequenceType7reversefT_GSaWx9Generator7Element__ +_TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TFFC10RealmSwift4List21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo8RLMArray_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TFSaCfGVs12_ArrayBufferx_GSax_ +_TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TFs4swapurFTRxRx_T_ +_TFSaap9subscriptFSix +_TFVs17IndexingGeneratorCfxGS_x_ +_TFVs12_ArrayBufferg5countSi +_TFVs12_ArrayBufferg41_unconditionalMutableSubscriptBaseAddressGSpx_ +_TPA__TFFC10RealmSwift4List20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo8RLMArray_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TPA__TFFC10RealmSwift4List21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo8RLMArray_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_7Element +_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_ +_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequencePs9Indexable_ +_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequencePs12SequenceType_ +_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_ +_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_9Generator +_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_9GeneratorPs13GeneratorType_ +_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_11SubSequence +get_field_types_ListBase +get_field_types_List +create_generic_metadata_List +_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_9Generator +_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_ +_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s9IndexableS_8_Element +block_destroy_helper.8 +_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequence +block_copy_helper.7 +_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_9GeneratorPs13GeneratorType_ +L_selector_data(initWithArray:) +L_selector(initWithArray:) +L_selector_data(initWithObjectClassName:) +L_selector(initWithObjectClassName:) +L_selector_data(setObject:atIndexedSubscript:) +L_selector(setObject:atIndexedSubscript:) +L_selector_data(predicateWithValue:) +L_selector(predicateWithValue:) +L_selector_data(addObject:) +L_selector(addObject:) +L_selector_data(insertObject:atIndex:) +L_selector(insertObject:atIndex:) +L_selector_data(removeObjectAtIndex:) +L_selector(removeObjectAtIndex:) +L_selector_data(removeLastObject) +L_selector(removeLastObject) +L_selector_data(removeAllObjects) +L_selector(removeAllObjects) +L_selector_data(replaceObjectAtIndex:withObject:) +L_selector(replaceObjectAtIndex:withObject:) +L_selector_data(moveObjectAtIndex:toIndex:) +L_selector(moveObjectAtIndex:toIndex:) +L_selector_data(exchangeObjectAtIndex:withObjectAtIndex:) +L_selector(exchangeObjectAtIndex:withObjectAtIndex:) +block_descriptor.9 +_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_ +_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_ +_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_ +_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_ +L_selector_data(descriptionWithMaxDepth:) +_METACLASS_DATA__TtC10RealmSwift8ListBase +_INSTANCE_METHODS__TtC10RealmSwift8ListBase +_PROPERTIES__TtC10RealmSwift8ListBase +_DATA__TtC10RealmSwift8ListBase +_TWoFC10RealmSwift8ListBaseP33_027551CC6B6B2DBBB6CF4A740CB6E5D623descriptionWithMaxDepthfSuSS +_TMfC10RealmSwift8ListBase +L_selector_data(removeAtIndex:) +L_selector_data(removeLast) +L_selector_data(removeAll) +L_selector_data(moveFrom:to:) +L_selector_data(swap::) +_INSTANCE_METHODS__TtC10RealmSwift4List +_PROPERTIES__TtC10RealmSwift4List +got._TMps30RangeReplaceableCollectionType +field_type_vector_ListBase +L_selector_data(getObjects:range:) +L_selector(getObjects:range:) +L_selector_data(objectAtIndex:) +L_selector(objectAtIndex:) +L_selector(descriptionWithMaxDepth:) descriptionWithMaxDepth _TTRGRxC10RealmSwift6ObjectrXFo_oCSo8RLMRealm_oCS_5RealmzoPs9ErrorType__XFo_iS1__iS2_zoPS3___ -rlmSortDescriptorValue.get -_TFFC10RealmSwift4List20addNotificationBlockFFGS0_x_T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayCSo7NSError_T_ +_TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ +_TFSa9_getCountfT_Si _TFVs12_ArrayBuffer28isUniquelyReferencedOrPinnedfT_Sb _TFVs12_ArrayBuffer38isMutableAndUniquelyReferencedOrPinnedfT_Sb +_TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TFs30_isBridgedVerbatimToObjectiveCurFMxSb +_TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TFVs20ManagedBufferPointerg19_allocatedByteCountSi +_TFVs20ManagedBufferPointerg21allocatedElementCountSi _TFVs12_ArrayBufferg21needsElementTypeCheckSb +_TFVs12_ArrayBufferCfT7storageGVs14_BridgeStorageCs27_ContiguousArrayStorageBasePs16_NSArrayCoreType___GS_x_ +_TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___ _TFVs12_ArrayBuffer18_typeCheckSlowPathfSiT_ _TFVs12_ArrayBuffer10_typeCheckfGVs5RangeSi_T_ +_TFSp14initializeFromfTGSpx_5countSi_T_ +_TFVs22_ContiguousArrayBufferg5ownerPs9AnyObject_ _TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ _TFVs12_ArrayBufferg10startIndexSi _TZFSa11_copyBufferfRGVs12_ArrayBufferx_T_ _TFSa29_makeMutableAndUniqueOrPinnedfT_T_ +_TFVs12_ArrayBufferg21deferredTypeCheckMaskSi _TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TFVs20ManagedBufferPointerg13_valuePointerGSpx_ _TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ _TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ _TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken _TFSa22_checkSubscript_nativefSiT_ -_TFVs12_ArrayBufferg41_unconditionalMutableSubscriptBaseAddressGSpx_ +_TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TFVs20ManagedBufferPointerg15_elementPointerGSpq__ _TFSa18_getElementAddressfSiGSpx_ +_TFs25_isClassOrObjCExistentialurFMxSb +_TFVs12_ArrayBufferg9_isNativeSb +_TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ _TFVs12_ArrayBufferg5ownerPs9AnyObject_ +_TZFVs20ManagedBufferPointer28_sanityCheckValidBufferClassfTPMPs9AnyObject_8creatingSb_T_ +_TIZFVs20ManagedBufferPointer28_sanityCheckValidBufferClassFTPMPs9AnyObject_8creatingSb_T_A0_ +_TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ +_TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ +_TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase _TFVs12_ArrayBufferg11nativeOwnerPs9AnyObject_ _TFSa33_getOwnerWithSemanticLabel_nativefT_Bo _TFSa16_getOwner_nativefT_Bo -_TFFC10RealmSwift4List21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayS2__T_ _TMaC10RealmSwift8ListBase _TWauRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_ _TWauRxC10RealmSwift6ObjectrGCS_4Listx_s9IndexableS_ @@ -767,44 +976,14 @@ _TWauRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_ _TWauRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_ _TWauRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_ _TTSg5SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si___TFVs14RangeGenerator4nextfT_GSqx_ -_TTWSis9EquatablesZFS_oi2eefTxx_Sb -_TTWSis14_IncrementablesFS_17_successorInPlacefT_T_ -deinit -addNotificationBlock swap move replace removeLast -_TMaGVs10ArraySliceV10RealmSwift14SortDescriptor_ -_TWlGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__uRxs9IndexablerGS_x_s13GeneratorTypes -_TWlGSaV10RealmSwift14SortDescriptor_urGSax_s9Indexables -_TWlGSaV10RealmSwift14SortDescriptor_urGSax_s12SequenceTypes -_TMaGSaV10RealmSwift14SortDescriptor_ -_TTSg5V10RealmSwift14SortDescriptor___TFSaCft12arrayLiteralGSax__GSax_ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5V10RealmSwift14SortDescriptor___TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5V10RealmSwift14SortDescriptor___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5V10RealmSwift14SortDescriptor___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5V10RealmSwift14SortDescriptor___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ -_TTSg5V10RealmSwift14SortDescriptor___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TMaGCs23_ContiguousArrayStorageV10RealmSwift14SortDescriptor_ -_TTSg5V10RealmSwift14SortDescriptor___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg14_alignmentMaskSi -last.get subscript.set -_TIF10RealmSwift21throwForNegativeIndexFTSi13parameterNameSS_T_A0_ -_TMaPs9AnyObject_ -_TMaCSo9RLMObject -notFoundToNil -invalidated.get _TPA__TTRGRxC10RealmSwift6ObjectrXFo_oCSo8RLMRealm_oCS_5RealmzoPs9ErrorType__XFo_iS1__iS2_zoPS3___ _TTSg5CSo8RLMRealm_C10RealmSwift5Realm___TFSq3mapurfzFzxqd__GSqqd___ -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/List.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/List.swift _TTRXFo_oGSqCSo9RLMObject_oGSqS___dT__XFdCb_dGSqS__dGSqS___dT__ _TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_ _TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__ @@ -818,14 +997,13 @@ get_field_types_Migration _TMaCSo15RLMObjectSchema _TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBuffer19_getElementSlowPathfSiPs9AnyObject_ _TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__ -objectdestroy.7 block_destroy_helper.10 _TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__ block_copy_helper.9 -L_selector_data(schemaVersionAtPath:encryptionKey:error:) -L_selector(schemaVersionAtPath:encryptionKey:error:) -L_selector_data(setPath:) -L_selector(setPath:) +L_selector_data(schemaVersionAtURL:encryptionKey:error:) +L_selector(schemaVersionAtURL:encryptionKey:error:) +L_selector_data(setInMemoryIdentifier:) +L_selector(setInMemoryIdentifier:) L_selector_data(setEncryptionKey:) L_selector(setEncryptionKey:) L_selector_data(setReadOnly:) @@ -834,19 +1012,22 @@ block_copy_helper.9 L_selector(setSchemaVersion:) L_selector_data(setMigrationBlock:) L_selector(setMigrationBlock:) +L_selector_data(setDeleteRealmIfMigrationNeeded:) +L_selector(setDeleteRealmIfMigrationNeeded:) L_selector_data(setCustomSchema:) L_selector(setCustomSchema:) L_selector_data(setDisableFormatUpgrade:) L_selector(setDisableFormatUpgrade:) L_selector_data(migrateRealm:) L_selector(migrateRealm:) -L_selector_data(setInMemoryIdentifier:) -L_selector(setInMemoryIdentifier:) +L_selector_data(initFileURLWithPath:) +L_selector(initFileURLWithPath:) +L_selector_data(setFileURL:) +L_selector(setFileURL:) L_selector_data(oldSchema) L_selector(oldSchema) L_selector_data(newSchema) L_selector(newSchema) -metadata.8 block_descriptor.11 L_selector_data(enumerateObjects:block:) L_selector(enumerateObjects:block:) @@ -854,6 +1035,8 @@ block_descriptor.11 L_selector(createObject:withValue:) L_selector_data(deleteDataForClassName:) L_selector(deleteDataForClassName:) +L_selector_data(renamePropertyForClass:oldName:newName:) +L_selector(renamePropertyForClass:oldName:newName:) _METACLASS_DATA__TtC10RealmSwift9Migration _IVARS__TtC10RealmSwift9Migration _DATA__TtC10RealmSwift9Migration @@ -894,27 +1077,30 @@ _TTSg5CSo15RLMObjectSchema___TFSag9subscriptFSix _TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ _TTSg5CSo15RLMObjectSchema___TFSag8endIndexSi _TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TMaGSqCSo9RLMObject_ _TFFC10RealmSwift9Migration9enumerateFTSSFT9oldObjectGSqCS_13DynamicObject_9newObjectGSqS1___T__T_U_FTGSqCSo9RLMObject_GSqS2___T_ _TMaCSo12RLMMigration _TMaC10RealmSwift9Migration +renamePropertyForClass deleteData delete create enumerate newSchema.get oldSchema.get +_TTSg5CSo5NSURLS_s9Equatable10Foundation___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb +_TFFVC10RealmSwift5Realm13Configurationg7fileURLGSqCSo5NSURL_U_FSSS2_ accessorMigrationBlock _TFFVC10RealmSwift5Realm13Configurationg16rlmConfigurationCSo21RLMRealmConfigurationU_FFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS4__T_ _TTRXFo_oXFo_oC10RealmSwift9MigrationdVs6UInt64_dT___oXFo_oCSo12RLMMigrationdS1__dT__zoPs9ErrorType__XFo_iXFo_iT9migrationS0_16oldSchemaVersionS1___iT___iXFo_iTS2_S1___iT__zoPS3___ -path.get +_TTSg5SS_CSo5NSURL___TFSq3mapurfzFzxqd__GSqqd___ +inMemoryIdentifier.get _TTSg5FT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T__FTCSo12RLMMigrationS1__T____TFSq3mapurfzFzxqd__GSqqd___ rlmConfiguration.get -inMemoryIdentifier.get +fileURL.get migrateRealm _TMaCSo8RLMRealm -schemaVersionAtPath -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Migration.swift +schemaVersionAtURL +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Migration.swift _TToFC10RealmSwift6ObjectcfT_S0_ _TToFC10RealmSwift6ObjectcfT5valuePs9AnyObject__S0_ _TToFC10RealmSwift6Objectg11invalidatedSb @@ -923,7 +1109,6 @@ _TToFC10RealmSwift6Objectg9classNameSS _TToZFC10RealmSwift6Object15objectUtilClassfSbPMPs9AnyObject_ _TToZFC10RealmSwift6Object10primaryKeyfT_GSqSS_ _TToZFC10RealmSwift6Object17ignoredPropertiesfT_GSaSS_ -_TFs15_arrayForceCastu0_rFGSax_GSaq__ _TToFC10RealmSwift6Objectg9subscriptFSSGSqPs9AnyObject__ _TToFC10RealmSwift6Objects9subscriptFSSGSqPs9AnyObject__ _TToFC10RealmSwift6Object7isEqualfGSqPs9AnyObject__Sb @@ -933,6 +1118,8 @@ _TFC10RealmSwift13DynamicObject15listForPropertyfCSo11RLMPropertyCSo11RLMListBas _TToFC10RealmSwift13DynamicObject15listForPropertyfCSo11RLMPropertyCSo11RLMListBase _TFC10RealmSwift13DynamicObject19optionalForPropertyfCSo11RLMPropertyCSo15RLMOptionalBase _TToFC10RealmSwift13DynamicObject19optionalForPropertyfCSo11RLMPropertyCSo15RLMOptionalBase +_TFC10RealmSwift13DynamicObject25linkingObjectsForPropertyfCSo11RLMPropertyGSqCS_18LinkingObjectsBase_ +_TToFC10RealmSwift13DynamicObject25linkingObjectsForPropertyfCSo11RLMPropertyGSqCS_18LinkingObjectsBase_ _TToFC10RealmSwift13DynamicObject20valueForUndefinedKeyfSSGSqPs9AnyObject__ _TToFC10RealmSwift13DynamicObject8setValuefTGSqPs9AnyObject__15forUndefinedKeySS_T_ _TToZFC10RealmSwift13DynamicObject28shouldIncludeInDefaultSchemafT_Sb @@ -941,16 +1128,9 @@ _TToFC10RealmSwift13DynamicObjectcfT5valuePs9AnyObject__S0_ _TToFC10RealmSwift13DynamicObjectcfT5realmCSo8RLMRealm6schemaCSo15RLMObjectSchema_S0_ _TToFC10RealmSwift13DynamicObjectcfT5valuePs9AnyObject_6schemaCSo9RLMSchema_S0_ _TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getGenericListPropertyNamesFPs9AnyObject_CSo7NSArrayU0_FT5labelGSqSS_5valueP__GSqSS_ -_TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb +_TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getLinkingObjectsPropertiesFPs9AnyObject_CSo12NSDictionaryU0_FT5labelGSqSS_5valueP__GSqTSSCS_18LinkingObjectsBase__ _TToFC10RealmSwift10ObjectUtilcfT_S0_ globalinit_33_47969F13D2F39044D14973F482FBAD86_func0 -_TFVs12_ArrayBuffer19requestNativeBufferfT_GSqGVs22_ContiguousArrayBufferx__ -_TFSaCfT20_immutableCocoaArrayPs16_NSArrayCoreType__GSax_ -_TFVs12_ArrayBuffer13_asCocoaArrayfT_Ps16_NSArrayCoreType_ -_TFVs22_ContiguousArrayBuffer30withUnsafeMutableBufferPointerurfzFzGSrx_qd__qd__ -_TFFs15_arrayForceCastu0_rFGSax_GSaq__U_FGSrQ0__T_ -_TFs19_bridgeToObjectiveCurFxGSqPs9AnyObject__ -_TFVs22_ContiguousArrayBuffer13_asCocoaArrayfT_Ps16_NSArrayCoreType_ _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__ _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TZFOs25_VariantDictionaryStorage24maybeGetFromCocoaStoragefTVs23_CocoaDictionaryStorage6forKeyx_GSqq__ @@ -958,19 +1138,24 @@ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TZFOs25_VariantDictionaryStorage24m _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ -_TFVs12_ArrayBufferg5countSi _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_ _TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ _TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ _TTSg5SS_CSo15RLMOptionalBase___TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ +_TTSg5SS_GVs10DictionarySSSS____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ +_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ _TTSg5SS___TFSa16_copyToNewBufferfSiT_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa16_copyToNewBufferfSiT_ _TTSg5GVs12_ArrayBufferSS_GS_SS_s16_ArrayBufferTypes_SS_GVs17IndexingGeneratorGS_SS__GS1_GS_SS__s13GeneratorTypes_SS_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferSS_GS6_SS_s14CollectionTypes_GS1_GS6_SS__GS1_GS6_SS__S2_s_SS_SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_SS_GS6_SS_s9IndexablesGS6_SS_s12SequenceTypes_GS1_GS6_SS__GS1_GS6_SS__S2_s_SS_SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_SS__SS_SS_SS___TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ _TTSg5GVs22_ContiguousArrayBufferT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s16_ArrayBufferTypes_T5labelGSqSS_5valueP___GVs17IndexingGeneratorGS_T5labelGSqSS_5valueP____GS1_GS_T5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferT5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s14CollectionTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s9IndexablesGS6_T5labelGSqSS_5valueP___s12SequenceTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP____T5labelGSqSS_5valueP___T5labelGSqSS_5valueP___T5labelGSqSS_5valueP_____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5GVs12_ArrayBufferTSSC10RealmSwift18LinkingObjectsBase__GS_TSSS1___s16_ArrayBufferTypes_TSSS1___GVs17IndexingGeneratorGS_TSSS1____GS3_GS_TSSS1____s13GeneratorTypes_TSSS1___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferTSSS1___GS8_TSSS1___s14CollectionTypes_GS3_GS8_TSSS1____GS3_GS8_TSSS1____S4_s_TSSS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_TSSS1___GS8_TSSS1___s9IndexablesGS8_TSSS1___s12SequenceTypes_GS3_GS8_TSSS1____GS3_GS8_TSSS1____S4_s_TSSS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_TSSS1____TSSS1___TSSS1___TSSS1_____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ _TTSg5GVs22_ContiguousArrayBufferT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s16_ArrayBufferTypes_T5labelGSqSS_5valueP___GVs17IndexingGeneratorGS_T5labelGSqSS_5valueP____GS1_GS_T5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferT5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s14CollectionTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s9IndexablesGS6_T5labelGSqSS_5valueP___s12SequenceTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP____T5labelGSqSS_5valueP___T5labelGSqSS_5valueP___T5labelGSqSS_5valueP_____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ _TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray16_copyToNewBufferfSiT_ _TTSf4n_d___TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ @@ -995,18 +1180,28 @@ _TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferT5labelGSqSS_5valueP___GS_T5la _TTSf4s_n_n___TTSg5SS___TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ _TTSf4n_n_n_n_d___TTSg5GVs12_ArrayBufferSS_GS_SS_s16_ArrayBufferTypes_GVs14_IgnorePointerSS_GS1_SS_s20_PointerFunctionTypes_SS_GVs17IndexingGeneratorGS_SS__GS3_GS_SS__s13GeneratorTypes_SS_GVs12_SliceBufferSS_GS5_SS_s14CollectionTypes_GS3_GS5_SS__GS3_GS5_SS__S4_s_SS_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS5_SS_GS5_SS_s9IndexablesGS5_SS_s12SequenceTypes_GS3_GS5_SS__GS3_GS5_SS__S4_s_SS_SiSiS7_s_SiSiS8_s_SiSiS9_s_Si_GS5_SS__SS_SS_SS___TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ _TTSf4g_n___TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s12SequenceTypes_GVs17IndexingGeneratorGSaT5labelGSqSS_5valueP____GS0_GSaT5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___GVs10ArraySliceT5labelGSqSS_5valueP____SS___TFEsPs12SequenceType7flatMapurfzFzWx9Generator7Element_GSqqd___GSaqd___ +_TTSf4s_n_n___TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSf4n_n_n_n_d___TTSg5GVs12_ArrayBufferTSSC10RealmSwift18LinkingObjectsBase__GS_TSSS1___s16_ArrayBufferTypes_GVs14_IgnorePointerTSSS1___GS3_TSSS1___s20_PointerFunctionTypes_TSSS1___GVs17IndexingGeneratorGS_TSSS1____GS5_GS_TSSS1____s13GeneratorTypes_TSSS1___GVs12_SliceBufferTSSS1___GS7_TSSS1___s14CollectionTypes_GS5_GS7_TSSS1____GS5_GS7_TSSS1____S6_s_TSSS1___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS7_TSSS1___GS7_TSSS1___s9IndexablesGS7_TSSS1___s12SequenceTypes_GS5_GS7_TSSS1____GS5_GS7_TSSS1____S6_s_TSSS1___SiSiS9_s_SiSiS10_s_SiSiS11_s_Si_GS7_TSSS1____TSSS1___TSSS1___TSSS1_____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ +_TTSf4g_n___TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s12SequenceTypes_GVs17IndexingGeneratorGSaT5labelGSqSS_5valueP____GS0_GSaT5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___GVs10ArraySliceT5labelGSqSS_5valueP____TSSC10RealmSwift18LinkingObjectsBase____TFEsPs12SequenceType7flatMapurfzFzWx9Generator7Element_GSqqd___GSaqd___ _TTSf4g_n___TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage26migrateDataToNativeStoragefVs23_CocoaDictionaryStorageT_ _TTSf4g_n_n___TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E621getOptionalPropertiesFPs9AnyObject_CSo12NSDictionaryU_FTGVs10DictionarySSPS1___T5labelGSqSS_5valueP___GS3_SSPS1___ +_TTSf4n_d___TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ +_TTSf4g_d___TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TZFVs24_NativeDictionaryStorage9fromArrayfGSaTxq___GS_xq__ +_TTSf4g_d___TTSg5SSSSs8Hashables_SS___TZFVs24_NativeDictionaryStorage9fromArrayfGSaTxq___GS_xq__ +_TTSf4g_s_g___TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getLinkingObjectsPropertiesFPs9AnyObject_CSo12NSDictionaryU1_FTGVs10DictionarySSGS3_SSSS__TSSCS_18LinkingObjectsBase__GS3_SSGS3_SSSS__ +_TMaGCs17_AnyCollectionBoxT5labelGSqSS_5valueP___ +_TMaGCs20_AnyGeneratorBoxBaseT5labelGSqSS_5valueP___ +_TPA__TTRXFo_oGSqSS_iP__oGSqTSSC10RealmSwift18LinkingObjectsBase__zoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___iGSqTSSS0___zoPS1___ _TPA__TTRXFo_oGSqSS_iP__oGSqSS_zoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___iGSqSS_zoPS___ _TMaGCs28_NativeDictionaryStorageImplSSCSo15RLMOptionalBase_ _TMaGCs28_NativeDictionaryStorageImplSSGC10RealmSwift4ListCS0_13DynamicObject__ -_TPA__TFFs15_arrayForceCastu0_rFGSax_GSaq__U_FGSrQ0__T_ -objectdestroy.9 -_TPA__TTRG0_rXFo_dGSrq___dT_zoPs9ErrorType__XFo_dGSrq___iT_zoPS___ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ _TToZFC10RealmSwift6Object17indexedPropertiesfT_GSaSS_ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_ L_selector_data(sharedSchema) L_selector(sharedSchema) L_selector_data(partialSharedSchema) @@ -1038,6 +1233,7 @@ _TWvdvC10RealmSwift13DynamicObjectP33_95A69397B44B27F7A8F436871D45D9E618optional L_selector_data(isEqual:) L_selector_data(listForProperty:) L_selector_data(optionalForProperty:) +L_selector_data(linkingObjectsForProperty:) _CLASS_METHODS_RealmSwiftObject _METACLASS_DATA_RealmSwiftObject _INSTANCE_METHODS_RealmSwiftObject @@ -1047,7 +1243,6 @@ _TMfC10RealmSwift6Object L_selector_data(valueForUndefinedKey:) L_selector_data(setValue:forUndefinedKey:) L_selector_data(shouldIncludeInDefaultSchema) -L_selector_data(.cxx_destruct) _CLASS_METHODS__TtC10RealmSwift13DynamicObject _METACLASS_DATA__TtC10RealmSwift13DynamicObject _INSTANCE_METHODS__TtC10RealmSwift13DynamicObject @@ -1057,11 +1252,14 @@ _TMfC10RealmSwift13DynamicObject L_selector_data(swiftVersion) L_selector_data(ignoredPropertiesForClass:) L_selector_data(indexedPropertiesForClass:) +L_selector_data(linkingObjectsPropertiesForClass:) L_selector_data(getGenericListPropertyNames:) L_selector_data(initializeListProperty:property:array:) L_selector_data(initializeOptionalProperty:property:) L_selector_data(getOptionalProperties:) L_selector_data(requiredPropertiesForClass:) +L_selector_data(getLinkingObjectsProperties:) +L_selector_data(initializeLinkingObjectsProperty:property:) _CLASS_METHODS_RealmSwiftObjectUtil _METACLASS_DATA_RealmSwiftObjectUtil _INSTANCE_METHODS_RealmSwiftObjectUtil @@ -1069,11 +1267,14 @@ _DATA_RealmSwiftObjectUtil _TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E612swiftVersionfT_CSo8NSString _TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E625ignoredPropertiesForClassfPMPs9AnyObject_GSqCSo7NSArray_ _TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E625indexedPropertiesForClassfPMPs9AnyObject_GSqCSo7NSArray_ +_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E632linkingObjectsPropertiesForClassfPMPs9AnyObject_GSqCSo12NSDictionary_ _TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getGenericListPropertyNamesfPs9AnyObject_CSo7NSArray _TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E622initializeListPropertyfTCSo13RLMObjectBase8propertyCSo11RLMProperty5arrayCSo8RLMArray_T_ _TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E626initializeOptionalPropertyfTCSo13RLMObjectBase8propertyCSo11RLMProperty_T_ _TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E621getOptionalPropertiesfPs9AnyObject_CSo12NSDictionary _TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E626requiredPropertiesForClassfPMPs9AnyObject_GSqCSo7NSArray_ +_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getLinkingObjectsPropertiesfPs9AnyObject_CSo12NSDictionary +_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E632initializeLinkingObjectsPropertyfTCSo13RLMObjectBase8propertyCSo11RLMProperty_T_ _TMfC10RealmSwift10ObjectUtil field_type_vector_ObjectUtil field_type_vector_DynamicObject @@ -1082,11 +1283,27 @@ _TMLGVs10DictionarySSCSo15RLMOptionalBase_ field_type_vector_Object _TMLP_ _TMLPs17CustomReflectable_ -_TMLGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__ _TMLGCs17_AnyCollectionBoxT5labelGSqSS_5valueP___ _TMLT5labelGSqSS_5valueP__ _TMLGSqSS_ _TMLGCs20_AnyGeneratorBoxBaseT5labelGSqSS_5valueP___ +_TMLGCs29_NativeDictionaryStorageOwnerSSGVs10DictionarySSSS__ +_TMLGVs10DictionarySSSS_ +_TMLTSSC10RealmSwift18LinkingObjectsBase_ +_TMLGCs23_ContiguousArrayStorageTSSSS__ +_TMLTSSSS_ +_TMLGCs29_NativeDictionaryStorageOwnerSSSS_ +_TMLGCs23_ContiguousArrayStorageT5labelGSqSS_5valueP___ +_PROTOCOL__TtPs17_NSStringCoreType_ +l_OBJC_LABEL_PROTOCOL_$__TtPs17_NSStringCoreType_ +l_OBJC_PROTOCOL_REFERENCE_$__TtPs17_NSStringCoreType_ +L_selector_data(objectForKey:) +L_selector(objectForKey:) +_TMLGCs28_NativeDictionaryStorageImplSSGVs10DictionarySSSS__ +_TMLGCs28_NativeDictionaryStorageImplSSSS_ +_TMLGCs23_ContiguousArrayStorageTSSC10RealmSwift18LinkingObjectsBase__ +_TMLPMP_ +_TMLGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__ _TMLGSqCSo8NSString_ _TMLCSo8NSString _TMLGSqCSo6NSDate_ @@ -1102,19 +1319,11 @@ _TMLGC10RealmSwift13RealmOptionalVs5Int64_ _TMLGC10RealmSwift13RealmOptionalSf_ _TMLGC10RealmSwift13RealmOptionalSd_ _TMLGC10RealmSwift13RealmOptionalSb_ -_TMLPMP_ _TMLCSo8NSObject L_selector_data(initWithName:reason:userInfo:) L_selector(initWithName:reason:userInfo:) L_selector_data(raise) L_selector(raise) -_PROTOCOL__TtPs17_NSStringCoreType_ -l_OBJC_LABEL_PROTOCOL_$__TtPs17_NSStringCoreType_ -l_OBJC_PROTOCOL_REFERENCE_$__TtPs17_NSStringCoreType_ -L_selector_data(objectForKey:) -L_selector(objectForKey:) -L_selector_data(countByEnumeratingWithState:objects:count:) -L_selector(countByEnumeratingWithState:objects:count:) _TMLGCs28_NativeDictionaryStorageImplSSPs9AnyObject__ L_selector_data(setProperty:) L_selector(setProperty:) @@ -1122,10 +1331,8 @@ _TMLGCs28_NativeDictionaryStorageImplSSPs9AnyObject__ L_selector(setObject:) L_selector_data(set_rlmArray:) L_selector(set_rlmArray:) -_TMLGCs23_ContiguousArrayStorageT5labelGSqSS_5valueP___ _TMLGCs28_NativeDictionaryStorageImplSSCSo15RLMOptionalBase_ _TMLGCs28_NativeDictionaryStorageImplSSGC10RealmSwift4ListCS0_13DynamicObject__ -metadata.10 _PROTOCOL__TtPs14_NSCopyingType_ l_OBJC_LABEL_PROTOCOL_$__TtPs14_NSCopyingType_ l_OBJC_PROTOCOL_REFERENCE_$__TtPs14_NSCopyingType_ @@ -1151,42 +1358,6 @@ _TMaTSuSuSuSuSu_ Object.swift _TMaGSpSu_ _TMaGVs33AutoreleasingUnsafeMutablePointerGSqPs9AnyObject___ -_TFOs17_ValueOrReferenceCurfMxS_ -_TFOs12_BridgeStyleCurfMxS_ -_TFs34_conditionallyBridgeFromObjectiveCurFTPs9AnyObject_Mx_GSqx_ -_TFs31_arrayConditionalBridgeElementsu0_rFGSax_GSqGSaq___ -_TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TFs30_isBridgedVerbatimToObjectiveCurFMxSb -_TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TFSa9_getCountfT_Si -_TFSrCfT5startGSpx_5countSi_GSrx_ -_TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TFFVs22_ContiguousArrayBuffer30withUnsafeMutableBufferPointerurFzFzGSrx_qd__qd__L_6$deferfT_T_ -_TFSrg11baseAddressGSpx_ -_TTRG0_rXFo_dGSrq___dT_zoPs9ErrorType__XFo_dGSrq___iT_zoPS___ -_TFVs12_ArrayBufferCfT7nsArrayPs16_NSArrayCoreType__GS_x_ -_TFVs12_ArrayBufferg9_isNativeSb -_TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ -_TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TFCs27_ContiguousArrayStorageBaseg17staticElementTypePMP_ -_TFVs22_ContiguousArrayBuffer24storesOnlyElementsOfTypeurfMqd__Sb -_TFs25_isClassOrObjCExistentialurFMxSb -_TZFVs20ManagedBufferPointer28_sanityCheckValidBufferClassfTPMPs9AnyObject_8creatingSb_T_ -_TIZFVs20ManagedBufferPointer28_sanityCheckValidBufferClassFTPMPs9AnyObject_8creatingSb_T_A0_ -_TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ -_TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ -_TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase -_TFVs12_ArrayBufferg21deferredTypeCheckMaskSi -_TFVs12_ArrayBuffer39downcastToBufferWithDeferredTypeCheckOfurfMqd__GS_qd___ -_TFVs12_ArrayBufferCfT7storageGVs14_BridgeStorageCs27_ContiguousArrayStorageBasePs16_NSArrayCoreType___GS_x_ -_TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___ _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_ _TTSg5GC10RealmSwift4ListCS_13DynamicObject____TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x @@ -1221,10 +1392,12 @@ _TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ _TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ listForProperty optionalForProperty +linkingObjectsForProperty _TF10RealmSwiftau20swiftLanguageVersionSS swiftVersion ignoredPropertiesForClass indexedPropertiesForClass +linkingObjectsPropertiesForClass _TTRXFo_oGSqSS_iP__oGSqSS_zoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___iGSqSS_zoPS___ _TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg19_allocatedByteCountSi _TTSg5SS___TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g8capacitySi @@ -1252,66 +1425,10 @@ _TTSg5SS___TFVs22_ContiguousArrayBufferg8capacitySi _TTSg5SS___TFVs22_ContiguousArrayBufferg5countSi _TTSg5SS___TFVs12_ArrayBuffer20isUniquelyReferencedfT_Sb _TTSg5SS___TFVs12_ArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TFVs17IndexingGeneratorCfxGS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer10getElementfSix -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg9subscriptFSix -_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x -_TTSg5T5labelGSqSS_5valueP_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ -_TTSg5T5labelGSqSS_5valueP_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken -_TTSg5T5labelGSqSS_5valueP_____TFSag9subscriptFSix -_TTSg5T5labelGSqSS_5valueP_____TFSag8endIndexSi -_TTSg5T5labelGSqSS_5valueP_____TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator _TTSg5SS___TFSa36_reserveCapacityAssumingUniqueBufferfSiT_ _TTSg5SS___TFSa6appendfxT_ _TTSg5SS___TFSa40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ -_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TMaGCs23_ContiguousArrayStorageT5labelGSqSS_5valueP___ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFSp18moveInitializeFromfTGSpx_5countSi_T_ -_TTSg5T5labelGSqSS_5valueP_____TFSp7destroyfSiT_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TTSg5T5labelGSqSS_5valueP_____TFSp14initializeFromfTGSpx_5countSi_T_ -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerlu5valuex -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg10startIndexSi -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__ -_TTSg5T5labelGSqSS_5valueP_____TFSp10initializefxT_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffers5countSi -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg8capacitySi -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg5countSi -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TTSg5T5labelGSqSS_5valueP_____TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArrayCfT_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray6appendfxT_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TTRXFo_oGSqSS_iP__dSbzoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___dSbzoPS___ _TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getGenericListPropertyNamesFPs9AnyObject_CSo7NSArrayU_FT5labelGSqSS_5valueP__Sb -_TTSg5GVs20AnyForwardCollectionT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s12SequenceTypes_GVs12AnyGeneratorT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s13GeneratorTypes_T5labelGSqSS_5valueP___GVs5SliceGS_T5labelGSqSS_5valueP_______TFEsPs12SequenceType6filterfzFzWx9Generator7Element_SbGSaWxS0_S1___ getGenericListPropertyNames initializeListProperty _TTSg5CSo15RLMOptionalBase___TFSp4movefT_x @@ -1349,29 +1466,7 @@ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage11up _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs10Dictionarys9subscriptFxGSqq__ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs10Dictionaryg9subscriptFxGSqq__ initializeOptionalProperty -_TZFVs6Mirror19_noSuperclassMirrorfT_GSqS__ -_TMaGSqPMP__ -_TFs19_isClassSuperMirrorFPMP_Sb -_TFEsPs11_MirrorType12_superMirrorfT_GSqPS___ -_TFFVs6MirrorcFT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_U_FT_GSqS__ -_TTRXFo_iT__iGSqVs6Mirror__XFo__oGSqS___ -_TPA__TTRXFo_iT__iGSqVs6Mirror__XFo__oGSqS___ -_TPA__TFFVs6MirrorcFT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_U_FT_GSqS__ -_TMaPMPs9AnyObject_ -_TWlGVs17IndexingGeneratorGVs5SliceVVs6Mirror14LegacyChildren__uRxs9IndexablerGS_x_s13GeneratorTypes -_TWlGVs5SliceVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_s12SequenceTypes -_TWlGVs17IndexingGeneratorVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_s13GeneratorTypes -_TWlGVs5SliceVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_S2_s -_TMaGVs17IndexingGeneratorGVs5SliceVVs6Mirror14LegacyChildren__ -_TMaGVs5SliceVVs6Mirror14LegacyChildren_ -_TMaGVs17IndexingGeneratorVVs6Mirror14LegacyChildren_ -_TMaGCs14_CollectionBoxVVs6Mirror14LegacyChildren_ -_TMaGCs21_RandomAccessIndexBoxSi_ -_TPA__TZFVs6Mirror19_noSuperclassMirrorfT_GSqS__ -_TTSf4n_n_n_d___TFVs6MirrorCfT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_ _TTSg5SS_Ps9AnyObject____TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ -_TFZFCs28_NativeDictionaryStorageImpl6createFSiGS_xq__U_FGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8_S1_ -_TTSg5Vs29_HashedContainerStorageHeader_Vs5UInt8___TFZFCs13ManagedBuffer6createFTSi12initialValueFGCs18ManagedProtoBufferxq__x_GS_xq__U_FTPs9AnyObject_FPS1__Si_Q_ _TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi _TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi _TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi @@ -1385,36 +1480,19 @@ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_nextfSiSi _TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5keyAtfSix -__swift_memmove_array32_4 -__swift_memcpy_array32_4 -__swift_copy_outline_pointer -_TwalVSC28_SwiftNSFastEnumerationState -_TwTkVSC28_SwiftNSFastEnumerationState -__swift_memcpy32_4 -_TwCpVSC28_SwiftNSFastEnumerationState -_TwdeVSC28_SwiftNSFastEnumerationState -_TwprVSC28_SwiftNSFastEnumerationState -_TwCPVSC28_SwiftNSFastEnumerationState -_TwXXVSC28_SwiftNSFastEnumerationState -_TMaGSqPs9AnyObject__ _TTSg5Ps9AnyObject____TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x -_TTSg5SS___TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb _TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage20isUniquelyReferencedfT_Sb _TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader _TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImpls6_countSi _TTSg5Ps9AnyObject____TFSp10initializefxT_ -_TTSg5SS___TFSp10initializefxT_ _TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg21_maxLoadFactorInverseSd _TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6_countSi _TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ _TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader _TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg9_capacitySi -_TMaPs17_NSStringCoreType_ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage7_bucketfxSi -_TTWSSs8HashablesFS_g9hashValueSi -_TTSf4s___TFSSg9hashValueSi _TMaCSo8NSObject throwRealmException _TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ @@ -1432,7 +1510,6 @@ _TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferCfT_GS_x_ _TTSg5TSSPs9AnyObject_____TFSaCfT19_uninitializedCountSi_GSax_ _TTSg5TSSPs9AnyObject_____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ _TTSg5TSSPs9AnyObject_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TMaPMP_ _TTSg5PMP____TFSSCurfxSS _TTSg5PMP____TFSSCurfT26stringInterpolationSegmentx_SS _TTWOVs6Mirror12DisplayStyles9EquatablesZFS1_oi2eefTxx_Sb @@ -1455,28 +1532,329 @@ _TTSg5OVs6Mirror12DisplayStyleS0_s9Equatables___TZFsoi2eeuRxs9EquatablerFTGSqx_G _TTSg5CSo15RLMOptionalBase___TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionarys9subscriptFxGSqq__ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__ -_TTSf4s_n___TFs9_abstractFTVs12StaticString4lineSu_T_ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCfT15minimumCapacitySi_GS_xq__ -_TMaGCs20_AnyGeneratorBoxBaseT5labelGSqSS_5valueP___ -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs20AnyForwardCollectionx_s12SequenceTypesFS0_8generatefT_wx9Generator -_TMaGSqSS_ -_TMaT5labelGSqSS_5valueP__ -_TMaGCs17_AnyCollectionBoxT5labelGSqSS_5valueP___ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnercfT15minimumCapacitySi_GS_xq__ _TMaGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerCfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ +_TTSg5GVs20AnyForwardCollectionT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s12SequenceTypes_GVs12AnyGeneratorT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s13GeneratorTypes_T5labelGSqSS_5valueP___GVs5SliceGS_T5labelGSqSS_5valueP_____GVs10DictionarySSPs9AnyObject_____TFEsPs12SequenceType6reduceurfzTqd__7combineFzTqd__Wx9Generator7Element__qd___qd__ +_TTRXFo_oGVs10DictionarySSPs9AnyObject__oGSqSS_iP__oGS_SSPS0___zoPs9ErrorType__XFo_iGS_SSPS0___iT5labelGSqSS_5valueP___iGS_SSPS0___zoPS1___ +getOptionalProperties +requiredPropertiesForClass +_TZFVs6Mirror19_noSuperclassMirrorfT_GSqS__ +_TMaPMP_ +_TMaGSqPMP__ +_TFs19_isClassSuperMirrorFPMP_Sb +_TFEsPs11_MirrorType12_superMirrorfT_GSqPS___ +_TFFVs6MirrorcFT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_U_FT_GSqS__ +_TTRXFo_iT__iGSqVs6Mirror__XFo__oGSqS___ +_TPA__TTRXFo_iT__iGSqVs6Mirror__XFo__oGSqS___ +_TPA__TFFVs6MirrorcFT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_U_FT_GSqS__ +_TMaPMPs9AnyObject_ +_TWlGVs17IndexingGeneratorGVs5SliceVVs6Mirror14LegacyChildren__uRxs9IndexablerGS_x_s13GeneratorTypes +_TWlGVs5SliceVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_s12SequenceTypes +_TWlGVs17IndexingGeneratorVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_s13GeneratorTypes +_TWlGVs5SliceVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_S2_s +_TMaGVs17IndexingGeneratorGVs5SliceVVs6Mirror14LegacyChildren__ +_TMaGVs5SliceVVs6Mirror14LegacyChildren_ +_TMaGVs17IndexingGeneratorVVs6Mirror14LegacyChildren_ +_TMaGCs14_CollectionBoxVVs6Mirror14LegacyChildren_ +_TMaGCs21_RandomAccessIndexBoxSi_ +_TPA__TZFVs6Mirror19_noSuperclassMirrorfT_GSqS__ +_TTSf4n_n_n_d___TFVs6MirrorCfT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_ +_TTRXFo_oGSqSS_iP__oGSqTSSC10RealmSwift18LinkingObjectsBase__zoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___iGSqTSSS0___zoPS1___ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerg19_allocatedByteCountSi +_TMaGCs23_ContiguousArrayStorageTSSC10RealmSwift18LinkingObjectsBase__ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g8capacitySi +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerg21allocatedElementCountSi +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferCfT_GS_x_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TTSg5GVs12_ArrayBufferTSSC10RealmSwift18LinkingObjectsBase__GS_TSSS1___s16_ArrayBufferTypes_TSSS1___GVs17IndexingGeneratorGS_TSSS1____GS3_GS_TSSS1____s13GeneratorTypes_TSSS1___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferTSSS1___GS8_TSSS1___s14CollectionTypes_GS3_GS8_TSSS1____GS3_GS8_TSSS1____S4_s_TSSS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_TSSS1___GS8_TSSS1___s9IndexablesGS8_TSSS1___s12SequenceTypes_GS3_GS8_TSSS1____GS3_GS8_TSSS1____S4_s_TSSS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_TSSS1____TSSS1___TSSS1___TSSS1_____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSp14initializeFromfTGSpx_5countSi_T_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer10_typeCheckfGVs5RangeSi_T_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSp18moveInitializeFromfTGSpx_5countSi_T_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSp7destroyfSiT_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGVs12_ArrayBufferx_s9IndexablesFS0_g8endIndexwx5Index +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg10startIndexSi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferx__ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerlu5valuex +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferwx7Element__ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSp10initializefxT_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferg8capacitySi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer20isUniquelyReferencedfT_Sb +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer30isMutableAndUniquelyReferencedfT_Sb +_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TFVs17IndexingGeneratorCfxGS_x_ +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg9subscriptFSix +_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5T5labelGSqSS_5valueP_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5T5labelGSqSS_5valueP_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5T5labelGSqSS_5valueP_____TFSag9subscriptFSix +_TTSg5T5labelGSqSS_5valueP_____TFSag8endIndexSi +_TTSg5T5labelGSqSS_5valueP_____TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSaCft12arrayLiteralGSax__GSax_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBuffers5countSi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffers5countSi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferCfT_GS_x_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSaCfT19_uninitializedCountSi_GSax_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa36_reserveCapacityAssumingUniqueBufferfSiT_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa6appendfxT_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ +_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ +_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5TSSGVs10DictionarySSSS_____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5Vs10_ArrayBody_TSSGVs10DictionarySSSS_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TMaTSSGVs10DictionarySSSS__ +_TTSg5Vs10_ArrayBody_TSSGVs10DictionarySSSS_____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5TSSGVs10DictionarySSSS_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5TSSGVs10DictionarySSSS_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5TSSGVs10DictionarySSSS_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5GSaTSSGVs10DictionarySSSS___GSaTSSGS_SSSS___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSGS_SSSS_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5TSSGVs10DictionarySSSS_____TFSag8endIndexSi +_TTSg5TSSGVs10DictionarySSSS_____TFSag10startIndexSi +_TTSg5Vs10_ArrayBody_TSSGVs10DictionarySSSS_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg5countSi +_TTSg5TSSGVs10DictionarySSSS_____TFSa9_getCountfT_Si +_TTSg5TSSGVs10DictionarySSSS_____TFSag5countSi +_TTSg5TSSGVs10DictionarySSSS_____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5TSSGVs10DictionarySSSS_____TFSag9subscriptFSix +_TTSg5GSaTSSGVs10DictionarySSSS___GSaTSSGS_SSSS___s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceTSSGS_SSSS___GS4_TSSGS_SSSS___s9IndexablesGS4_TSSGS_SSSS___s12SequenceTypes_GVs17IndexingGeneratorGS4_TSSGS_SSSS____GS7_GS4_TSSGS_SSSS____s13GeneratorTypes_TSSGS_SSSS___SiSiS1_s_SiSiS2_s_SiSiS3_s_Si_GS4_TSSGS_SSSS____TSSGS_SSSS___TSSGS_SSSS_____TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ +_TTSg5SS_SS___TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ +_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi +_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi +_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ +_TMaGCs28_NativeDictionaryStorageImplSSSS_ +_TTSf4n_d___TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageg11_bucketMaskSi +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb +_TTSg5SSSSs8Hashables_SS___TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage5_nextfSiSi +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage5keyAtfSix +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImpls6_countSi +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg9_capacitySi +_TTSg5TSSSS____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5TSSSS____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5TSSSS____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5TSSSS____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5TSSSS____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5TSSSS____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5TSSSS____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5TSSSS____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5GSaTSSSS__GSaTSSSS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSSS____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5TSSSS____TFSag8endIndexSi +_TTSg5TSSSS____TFSag10startIndexSi +_TTSg5Vs10_ArrayBody_TSSSS____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5TSSSS____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5TSSSS____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5TSSSS____TFVs12_ArrayBufferg5countSi +_TTSg5TSSSS____TFSa9_getCountfT_Si +_TTSg5TSSSS____TFSag5countSi +_TTSg5TSSSS____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage7_bucketfxSi +_TTSg5TSSSS____TFSag9subscriptFSix +_TTSg5GSaTSSSS__GSaTSSSS__s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceTSSSS__GS3_TSSSS__s9IndexablesGS3_TSSSS__s12SequenceTypes_GVs17IndexingGeneratorGS3_TSSSS___GS6_GS3_TSSSS___s13GeneratorTypes_TSSSS__SiSiS0_s_SiSiS1_s_SiSiS2_s_Si_GS3_TSSSS___TSSSS__TSSSS____TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ +_TTSg5TSSSS____TFSp7destroyfSiT_ +_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_TSSSS____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5TSSSS____TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_ +_TTSg5TSSSS____TFCs23_ContiguousArrayStoraged +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorageg11_bucketMaskSi +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage5_nextfSiSi +_TTSg5SS_GVs10DictionarySSSS____TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ +_TFZFCs28_NativeDictionaryStorageImpl6createFSiGS_xq__U_FGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8_S1_ +_TTSg5Vs29_HashedContainerStorageHeader_Vs5UInt8___TFZFCs13ManagedBuffer6createFTSi12initialValueFGCs18ManagedProtoBufferxq__x_GS_xq__U_FTPs9AnyObject_FPS1__Si_Q_ +_TTSg5SS_GVs10DictionarySSSS____TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi +_TTSg5SS_GVs10DictionarySSSS____TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi +_TTSg5SS_GVs10DictionarySSSS____TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ +_TMaGCs28_NativeDictionaryStorageImplSSGVs10DictionarySSSS__ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage5keyAtfSix +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFOs25_VariantDictionaryStorage20isUniquelyReferencedfT_Sb +__swift_memmove_array32_4 +__swift_memcpy_array32_4 +__swift_copy_outline_pointer +_TwalVSC28_SwiftNSFastEnumerationState +_TwTkVSC28_SwiftNSFastEnumerationState +__swift_memcpy32_4 +_TwCpVSC28_SwiftNSFastEnumerationState +_TwdeVSC28_SwiftNSFastEnumerationState +_TwprVSC28_SwiftNSFastEnumerationState +_TwCPVSC28_SwiftNSFastEnumerationState +_TwXXVSC28_SwiftNSFastEnumerationState +_TMaGSqPs9AnyObject__ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwnercfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwnerCfT15minimumCapacitySi_GS_xq__ +_TTSg5GVs10DictionarySSSS____TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x +_TTSg5SS___TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImpls6_countSi +_TTSg5GVs10DictionarySSSS____TFSp10initializefxT_ +_TTSg5SS___TFSp10initializefxT_ +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg21_maxLoadFactorInverseSd +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg6_countSi +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg9_capacitySi +_TMaPs17_NSStringCoreType_ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage7_bucketfxSi +_TTWSSs8HashablesFS_g9hashValueSi +_TTSf4s___TFSSg9hashValueSi +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg19_allocatedByteCountSi +_TMaGCs23_ContiguousArrayStorageT5labelGSqSS_5valueP___ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg21allocatedElementCountSi +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TTSg5T5labelGSqSS_5valueP_____TFSp18moveInitializeFromfTGSpx_5countSi_T_ +_TTSg5T5labelGSqSS_5valueP_____TFSp7destroyfSiT_ +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSg5T5labelGSqSS_5valueP_____TFSp14initializeFromfTGSpx_5countSi_T_ +_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerlu5valuex +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg10startIndexSi +_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ +_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__ +_TTSf4s_n___TFs9_abstractFTVs12StaticString4lineSu_T_ +_TTSg5T5labelGSqSS_5valueP_____TFSp10initializefxT_ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffers5countSi +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg8capacitySi +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb +_TTSg5C10RealmSwift18LinkingObjectsBaseS0_s9EquatableS____TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs10Dictionarys9subscriptFxGSqq__ +_TTSg5SSSSs8Hashables_SS___TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TMaGCs29_NativeDictionaryStorageOwnerSSSS_ +_TTSg5SSSSs8Hashables_SS___TFCs29_NativeDictionaryStorageOwnerCfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_SS___TFVs10DictionaryCfT14_nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5TSSSS____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5TSSSS____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__ +_TTSg5SSSSs8Hashables_SS___TFVs10DictionaryCft17dictionaryLiteralGSaTxq____GS_xq__ +_TTSg5TSSSS____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5TSSSS____TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5TSSSS____TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TMaTSSSS_ +_TMaGCs23_ContiguousArrayStorageTSSSS__ +_TTSg5TSSSS____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TMaTSSC10RealmSwift18LinkingObjectsBase_ +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferg9subscriptFSix +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5GSaTSSC10RealmSwift18LinkingObjectsBase__GSaTSSS0___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSS0_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg5countSi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa9_getCountfT_Si +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSag8endIndexSi +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TMaGVs10DictionarySSSS_ +_TMaGCs29_NativeDictionaryStorageOwnerSSGVs10DictionarySSSS__ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwnerCfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs10DictionaryCft17dictionaryLiteralGSaTxq____GS_xq__ +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_TSSGVs10DictionarySSSS_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_TSSGVs10DictionarySSSS_____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5TSSGVs10DictionarySSSS_____TFVs22_ContiguousArrayBuffers5countSi +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBuffers5countSi +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferCfT_GS_x_ +_TTSg5TSSGVs10DictionarySSSS_____TFSaCfT19_uninitializedCountSi_GSax_ +_TTSg5TSSGVs10DictionarySSSS_____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ +_TTSg5TSSGVs10DictionarySSSS_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5T5labelGSqSS_5valueP_____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__ +_TTSg5T5labelGSqSS_5valueP_____TTWurGVs20AnyForwardCollectionx_s12SequenceTypesFS0_8generatefT_wx9Generator +_TMaGSqSS_ +_TMaT5labelGSqSS_5valueP__ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ +_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArrayCfT_GS_x_ +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfT_GS_x_ _TMaPs17CustomReflectable_ _TMaP_ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ _TTSg5T5labelGSqSS_5valueP_____TFVs12AnyGenerator4nextfT_GSqx_ _TTSg5T5labelGSqSS_5valueP_____TFCs20_AnyGeneratorBoxBase4nextfT_GSqx_ _TTSg5T5labelGSqSS_5valueP_____TFVs20AnyForwardCollection8generatefT_GVs12AnyGeneratorx_ _TTSg5T5labelGSqSS_5valueP_____TFCs15_AnySequenceBox8generatefT_GVs12AnyGeneratorx_ -_TTSg5GVs20AnyForwardCollectionT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s12SequenceTypes_GVs12AnyGeneratorT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s13GeneratorTypes_T5labelGSqSS_5valueP___GVs5SliceGS_T5labelGSqSS_5valueP_____GVs10DictionarySSPs9AnyObject_____TFEsPs12SequenceType6reduceurfzTqd__7combineFzTqd__Wx9Generator7Element__qd___qd__ -_TTRXFo_oGVs10DictionarySSPs9AnyObject__oGSqSS_iP__oGS_SSPS0___zoPs9ErrorType__XFo_iGS_SSPS0___iT5labelGSqSS_5valueP___iGS_SSPS0___zoPS1___ +_TTSg5Vs10_ArrayBody_TSSSS____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5GSaTSSC10RealmSwift18LinkingObjectsBase__GSaTSSS0___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSS0_____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSag9subscriptFSix +_TTRXFo_oGVs10DictionarySSGS_SSSS__oSSoC10RealmSwift18LinkingObjectsBase_oGS_SSGS_SSSS__zoPs9ErrorType__XFo_iGS_SSGS_SSSS__iTSSS1___iGS_SSGS_SSSS__zoPS2___ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs10DictionaryCfT14_nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5GSaTSSC10RealmSwift18LinkingObjectsBase__GSaTSSS0___s12SequenceTypes_GVs17IndexingGeneratorGSaTSSS0____GS2_GSaTSSS0____s13GeneratorTypes_TSSS0___GVs10ArraySliceTSSS0____GVs10DictionarySSGS5_SSSS_____TFEsPs12SequenceType6reduceurfzTqd__7combineFzTqd__Wx9Generator7Element__qd___qd__ +_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ +_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ +_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray6appendfxT_ +_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ +_TTSg5C10RealmSwift18LinkingObjectsBaseS0_s9EquatableS____TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb +_TTRXFo_oGSqSS_iP__dSbzoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___dSbzoPS___ +_TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getLinkingObjectsPropertiesFPs9AnyObject_CSo12NSDictionaryU_FT5labelGSqSS_5valueP__Sb +_TTSg5GVs20AnyForwardCollectionT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s12SequenceTypes_GVs12AnyGeneratorT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s13GeneratorTypes_T5labelGSqSS_5valueP___GVs5SliceGS_T5labelGSqSS_5valueP_______TFEsPs12SequenceType6filterfzFzWx9Generator7Element_SbGSaWxS0_S1___ _TFVs6MirrorCfT10reflectingP__S_ -getOptionalProperties -requiredPropertiesForClass +getLinkingObjectsProperties +initializeLinkingObjectsProperty _TMaGVs10DictionarySSCSo15RLMOptionalBase_ _TMaGVs10DictionarySSGC10RealmSwift4ListCS0_13DynamicObject__ _TMaC10RealmSwift10ObjectUtil @@ -1504,7 +1882,6 @@ _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs10Dictionary _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__ _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs10Dictionaryg9subscriptFxGSqq__ dynamicList -linkingObjects _TTSg5SS___TFSaCft12arrayLiteralGSax__GSax_ _TTSg5SS___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ _TTSg5SS___TFVs12_ArrayBufferg9_isNativeSb @@ -1519,7 +1896,7 @@ objectUtilClass className.get objectSchema.get _TMaCSo9RLMSchema -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Object.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Object.swift _TTSg5C10RealmSwift8Property___TFVs15ContiguousArray15reserveCapacityfSiT_ _TTSg5GVs22_ContiguousArrayBufferC10RealmSwift8Property_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ _TTSg5GVs22_ContiguousArrayBufferC10RealmSwift8Property_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ @@ -1530,7 +1907,6 @@ _TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferC10RealmSwift8Property_GS_S1__ _TMaGCs23_ContiguousArrayStorageC10RealmSwift8Property_ L_selector_data(properties) L_selector(properties) -_TMLCSo11RLMProperty L_selector_data(primaryKeyProperty) L_selector(primaryKeyProperty) L_selector(objectForKeyedSubscript:) @@ -1618,7 +1994,6 @@ _TTSg5CSo11RLMProperty___TTWurGSax_s14CollectionTypesFS_g5countWx5Index8Distance _TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg9_isNativeSb _TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg5countSi _TTSg5CSo11RLMProperty___TFSa9_getCountfT_Si -_TMaCSo11RLMProperty _TTWSis14_IncrementablesFS_9successorfT_x _TTSg5C10RealmSwift8Property___TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ _TTSg5C10RealmSwift8Property___TFVs15ContiguousArray6appendfxT_ @@ -1634,7 +2009,7 @@ _TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ _TTSg5CSo11RLMProperty___TFSag5countSi _TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ properties.get -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/ObjectSchema.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/ObjectSchema.swift _TF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24realmOptionalToAnyObjectuRxS_17RealmOptionalTyperFGSqx_GSqPs9AnyObject__ _TF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24anyObjectToRealmOptionaluRxS_17RealmOptionalTyperFGSqPs9AnyObject__GSqx_ _TFF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24anyObjectToRealmOptionaluRxS_17RealmOptionalTyperFGSqPs9AnyObject__GSqx_U_FSiVs4Int8 @@ -1683,7 +2058,7 @@ _TWaVs4Int810RealmSwift17RealmOptionalTypeS0_ _TWaSi10RealmSwift17RealmOptionalTypeS_ value.set value.get -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Optional.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Optional.swift get_field_types_Property L_selector_data(indexed) L_selector(indexed) @@ -1698,17 +2073,17 @@ Property.swift _TMaC10RealmSwift8Property _TWaC10RealmSwift8Propertys9EquatableS_ _TWaC10RealmSwift8Propertys23CustomStringConvertibleS_ -objectClassName.get optional.get indexed.get type.get name.get -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Property.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Property.swift _TTRXFo__dT__XFdCb__dT__ +_TFFC10RealmSwift5Realm20addNotificationBlockFFT12notificationOS_12Notification5realmS0__T_CSo20RLMNotificationTokenU_FTSSCSo8RLMRealm_T_ _TTRXFo_oSSoCSo8RLMRealm_dT__XFdCb_dCSo8NSStringdS__dT__ -_TFF10RealmSwift41rlmNotificationBlockFromNotificationBlockFFT12notificationOS_12Notification5realmCS_5Realm_T_FTSSCSo8RLMRealm_T_U_FTSSS2__T_ _TTSg5SS___TFCs23_ContiguousArrayStoraged -_TPA__TFF10RealmSwift41rlmNotificationBlockFromNotificationBlockFFT12notificationOS_12Notification5realmCS_5Realm_T_FTSSCSo8RLMRealm_T_U_FTSSS2__T_ +objectdestroy.79 +_TPA__TFFC10RealmSwift5Realm20addNotificationBlockFFT12notificationOS_12Notification5realmS0__T_CSo20RLMNotificationTokenU_FTSSCSo8RLMRealm_T_ get_field_types_Realm _TwxsO10RealmSwift12Notification _TwxgO10RealmSwift12Notification @@ -1716,7 +2091,6 @@ _TwugO10RealmSwift12Notification _TwupO10RealmSwift12Notification _TwuiO10RealmSwift12Notification get_field_types_Notification -objectdestroy.13 objectdestroy.16 objectdestroy.19 objectdestroy.22 @@ -1734,7 +2108,6 @@ objectdestroy.61 objectdestroy.64 objectdestroy.67 objectdestroy.70 -objectdestroy.79 block_destroy_helper.26 block_destroy_helper.50 block_destroy_helper.74 @@ -1763,8 +2136,6 @@ _TPA__TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT_ _TPA__TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_.66 _TPA__TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFo_iTS_S0___iT__.69 _TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__.72 -L_selector_data(isReadOnly) -L_selector(isReadOnly) L_selector_data(schema) L_selector(schema) L_selector_data(configuration) @@ -1773,7 +2144,6 @@ _TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__.72 L_selector(isEmpty) L_selector_data(realmWithConfiguration:error:) L_selector(realmWithConfiguration:error:) -metadata.14 metadata.17 metadata.20 metadata.23 @@ -1812,8 +2182,6 @@ block_descriptor.78 _TMLGC10RealmSwift7ResultsCS_13DynamicObject_ metadata.80 block_descriptor.83 -L_selector_data(removeNotification:) -L_selector(removeNotification:) L_selector_data(autorefresh) L_selector(autorefresh) L_selector_data(setAutorefresh:) @@ -1822,10 +2190,8 @@ block_descriptor.83 L_selector(refresh) L_selector_data(invalidate) L_selector(invalidate) -L_selector_data(writeCopyToPath:error:) -L_selector(writeCopyToPath:error:) -L_selector_data(writeCopyToPath:encryptionKey:error:) -L_selector(writeCopyToPath:encryptionKey:error:) +L_selector_data(writeCopyToURL:encryptionKey:error:) +L_selector(writeCopyToURL:encryptionKey:error:) _METACLASS_DATA__TtC10RealmSwift5Realm _IVARS__TtC10RealmSwift5Realm _DATA__TtC10RealmSwift5Realm @@ -1834,17 +2200,6 @@ _TMfO10RealmSwift12Notification field_type_vector_Notification field_type_vector_Realm _TMLCSo8RLMRealm -_TTSg5Vs18_StringBufferIVars_Vs6UInt16___TFVs11_HeapBufferg6_valueGSpx_ -_TTSf4s_n_n___TFVs13_StringBuffer4growfTGVs5RangeGSPVs7RawByte__12newUsedCountSi_Sb -_TFVs13_StringBufferg8capacitySi -_TMaGCs18_HeapBufferStorageVs18_StringBufferIVarsVs6UInt16_ -_TTSf4n_n_n_d___TFVs13_StringBufferCfT8capacitySi11initialSizeSi12elementWidthSi_S_ -_TFFVs11_StringCoreg11cocoaBufferGSqPs9AnyObject__U_FPS0__PS0__ -_TFVs11_StringCore12_copyInPlacefT7newSizeSi11newCapacitySi15minElementWidthSi_T_ -_TFFVs11_StringCore20representableAsASCIIFT_SbU_FVs6UInt16Sb -_TTSf1cl57_TTRXFo_dVs6UInt16_dSbzoPs9ErrorType__XFo_iS__dSbzoPS0___XFo_dVs6UInt16_dSbzoPs9ErrorType___n___TTSg5GSRVs6UInt16_GSRS__s12SequenceTypes_GVs28UnsafeBufferPointerGeneratorS__GS1_S__s13GeneratorTypes_S__GVs5SliceGSRS______TFEsPs12SequenceType8containsfzFzWx9Generator7Element_SbSb -_TFVs11_StringCore14_claimCapacityfTSi15minElementWidthSi_TSiVs14COpaquePointer_ -_TTSf4gs_n___TFVs11_StringCore6appendfS_T_ _TTSg5SS___TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_ _TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffer10getElementfSix _TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ @@ -1875,13 +2230,11 @@ _TWaO10RealmSwift12Notifications8HashableS_ _TWaO10RealmSwift12Notifications9EquatableS_ _TWaC10RealmSwift5Realms9EquatableS_ add -writeCopyToPath +writeCopyToURL invalidate refresh autorefresh.set autorefresh.get -removeNotification -rlmNotificationBlockFromNotificationBlock _TMaGSqC10RealmSwift13DynamicObject_ dynamicObjectForPrimaryKey _TMaGSQPs9AnyObject__ @@ -1901,16 +2254,14 @@ beginWrite write configuration.get schema.get -readOnly.get -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Realm.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Realm.swift _TFC10RealmSwift12RLMGeneratorcfT10collectionPSo13RLMCollection__GS0_x_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5realmGSqCS_5Realm_ +_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg11invalidatedSb _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5countSi _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg11descriptionSS _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffxGSqSi_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffCSo11NSPredicateGSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOfftSSGSaPs9AnyObject___GSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6filterftSSGSaPs9AnyObject___GCS_7Resultsx_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6filterfCSo11NSPredicateGCS_7Resultsx_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6sortedfTSS9ascendingSb_GCS_7Resultsx_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrfqd__GCS_7Resultsx_ @@ -1925,19 +2276,18 @@ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg8e _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase11valueForKeyfSSGSqPs9AnyObject__ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase15valueForKeyPathfSSGSqPs9AnyObject__ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase8setValuefTGSqPs9AnyObject__6forKeySS_T_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase21_addNotificationBlockfFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationToken +_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase21_addNotificationBlockfFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationToken _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasecfT_GS0_x_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseD _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBased _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectioncfT4basex_GS0_x_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectionCfT4basex_GS0_x_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong5realmGSqCS_5Realm_ +_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong11invalidatedSb _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong5countSi _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong11descriptionSS _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7indexOffwx7ElementGSqSi_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7indexOffCSo11NSPredicateGSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7indexOfftSSGSaPs9AnyObject___GSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6filterftSSGSaPs9AnyObject___GCS_7Resultswx7Element_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6filterfCSo11NSPredicateGCS_7Resultswx7Element_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6sortedfTSS9ascendingSb_GCS_7Resultswx7Element_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrfqd__GCS_7Resultswx7Element_ @@ -1952,13 +2302,10 @@ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong8endIn _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection11valueForKeyfSSGSqPs9AnyObject__ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection15valueForKeyPathfSSGSqPs9AnyObject__ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection8setValuefTGSqPs9AnyObject__6forKeySS_T_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection21_addNotificationBlockfFTGSqGCS_18AnyRealmCollectionwx7Element__GSqCSo7NSError__T_CSo20RLMNotificationToken +_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection21_addNotificationBlockfFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionwx7Element__T_CSo20RLMNotificationToken _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectionD _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiond _TWtuRxC10RealmSwift6ObjectrGCS_12RLMGeneratorx_s13GeneratorTypeS_7Element -_TWIuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_ -_TWIuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_ -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_11SubSequence _TWIuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_ _TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_11SubSequencePs9Indexable_ _TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_11SubSequencePs12SequenceType_ @@ -1967,37 +2314,51 @@ _TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_9Generato _TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_9GeneratorPs13GeneratorType_ _TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_11SubSequence get_field_types_RLMGenerator +get_field_types_RealmCollectionChange +_TwXXO10RealmSwift21RealmCollectionChange +_TwCPO10RealmSwift21RealmCollectionChange +_TwprO10RealmSwift21RealmCollectionChange +_TwdeO10RealmSwift21RealmCollectionChange +_TwxxO10RealmSwift21RealmCollectionChange +_TwCpO10RealmSwift21RealmCollectionChange +_TwcpO10RealmSwift21RealmCollectionChange +_TwcaO10RealmSwift21RealmCollectionChange +_TwTkO10RealmSwift21RealmCollectionChange +_TwtkO10RealmSwift21RealmCollectionChange +_TwtaO10RealmSwift21RealmCollectionChange +_TwalO10RealmSwift21RealmCollectionChange +_TwTKO10RealmSwift21RealmCollectionChange +_TwXxO10RealmSwift21RealmCollectionChange +_TwCcO10RealmSwift21RealmCollectionChange +_TwTtO10RealmSwift21RealmCollectionChange +_TwtTO10RealmSwift21RealmCollectionChange +_TwugO10RealmSwift21RealmCollectionChange +_TwupO10RealmSwift21RealmCollectionChange +_TwuiO10RealmSwift21RealmCollectionChange +create_generic_metadata_RealmCollectionChange get_field_types__AnyRealmCollectionBase create_generic_metadata__AnyRealmCollectionBase get_field_types__AnyRealmCollection create_generic_metadata__AnyRealmCollection get_field_types_AnyRealmCollection create_generic_metadata_AnyRealmCollection -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_9Generator -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_9Generator +_TTSg5CSo8NSNumber___TFVs12_ArrayBuffer19_getElementSlowPathfSiPs9AnyObject_ +_TTSf4g___TTSg5CSo8NSNumber_Si___TFs31_arrayConditionalBridgeElementsu0_rFGSax_GSqGSaq___ _TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_9Generator -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_7Element -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s9IndexableS_8_Element _TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_7Element _TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s9IndexableS_8_Element -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_11SubSequence _TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_11SubSequence -_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_11SubSequencePs9Indexable_ -_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_11SubSequencePs12SequenceType_ -_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_9GeneratorPs13GeneratorType_ -_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_9GeneratorPs13GeneratorType_ _TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_9GeneratorPs13GeneratorType_ create_generic_metadata_RLMGenerator -_TWGuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_ _TWGuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_ _TWGuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_ _TWGuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_ _TWvdvC10RealmSwift12RLMGeneratorP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E13generatorBaseC10Foundation15NSFastGenerator _IVARS__TtC10RealmSwift12RLMGenerator +_TMLGSaSi_ _TMnC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5realmGSqCS_5Realm_ +_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg11invalidatedSb _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5countSi _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg11descriptionSS _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffxGSqSi_ @@ -2018,7 +2379,7 @@ _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase11valueForKeyfSSGSqPs9AnyObject__ _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase15valueForKeyPathfSSGSqPs9AnyObject__ _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase8setValuefTGSqPs9AnyObject__6forKeySS_T_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase21_addNotificationBlockfFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationToken +_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase21_addNotificationBlockfFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationToken _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseCfT_GS0_x_ _TMPC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase _TMnC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection @@ -2028,19 +2389,75 @@ _TMPC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection _TWvdvC10RealmSwift18AnyRealmCollectionP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E4baseGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_ _IVARS__TtC10RealmSwift18AnyRealmCollection got._TMps13GeneratorType +_TMLCSo7NSError +L_selector_data(deletions) +L_selector(deletions) +L_selector_data(insertions) +L_selector(insertions) +L_selector_data(modifications) +L_selector(modifications) +_TMLGCs23_ContiguousArrayStorageSi_ RealmCollectionType.swift +_TTSg5CSo8NSNumber_Ps9AnyObject____TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___ +_TTSg5CSo8NSNumber___TFVs22_ContiguousArrayBufferg5countSi +_TTSg5Vs10_ArrayBody_CSo8NSNumber___TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Si___TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5Si___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Si___TFVs22_ContiguousArrayBuffers5countSi +_TTSg5Vs10_ArrayBody_CSo8NSNumber___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_CSo8NSNumber___TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5CSo8NSNumber___TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5CSo8NSNumber___TFVs22_ContiguousArrayBufferg9subscriptFSix +_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5Vs10_ArrayBody_CSo8NSNumber___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_CSo8NSNumber___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5CSo8NSNumber___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5CSo8NSNumber___TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ +_TTSg5Si___TFSp10initializefxT_ +_TTSg5Si___TZFsoi2eeurFTGSqx_Vs26_OptionalNilComparisonType_Sb +_TTSg5Si___TFs34_conditionallyBridgeFromObjectiveCurFTPs9AnyObject_Mx_GSqx_ +_TTSg5CSo8NSNumber___TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5CSo8NSNumber___TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5CSo8NSNumber___TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg32arrayPropertyIsNativeTypeCheckedSb +_TTSg5CSo8NSNumber___TFSa29_hoistableIsNativeTypeCheckedfT_Sb +_TTSg5GSaCSo8NSNumber_GSaS__s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS4_S__s9IndexablesGS4_S__s12SequenceTypes_GVs17IndexingGeneratorGS4_S___GS7_GS4_S___s13GeneratorTypes_S__SiSiS1_s_SiSiS2_s_SiSiS3_s_Si_GS4_S___S__S____TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ +_TTSg5CSo8NSNumber___TFSag8endIndexSi +_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Si___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerg19_allocatedByteCountSi +_TTSg5Vs10_ArrayBody_Si___TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TMaGCs23_ContiguousArrayStorageSi_ +_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg9_isNativeSb +_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg5countSi +_TTSg5CSo8NSNumber___TFSa9_getCountfT_Si +_TTSg5GSaCSo8NSNumber_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5CSo8NSNumber___TFSag9subscriptFSix +_TTSg5CSo8NSNumber___TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerg21allocatedElementCountSi +_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_Si___TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5Si___TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TTSg5Vs10_ArrayBody_Si___TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Si___TFVs22_ContiguousArrayBufferCfT_GS_x_ +_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ +_TTSg5CSo8NSNumber___TFSag5countSi +_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5CSo8NSNumber_Si___TFs15_arrayForceCastu0_rFGSax_GSaq__ +_TTSg5GSaSi____TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb +fromObjc +_TMaCSo7NSError +_TMaGSaSi_ _TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_ _TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s9IndexableS_ _TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s23CustomStringConvertibleS_ _TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_ _TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s9IndexableS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s23CustomStringConvertibleS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_ _TWauRxC10RealmSwift6ObjectrGCS_12RLMGeneratorx_s13GeneratorTypeS_ -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmCollectionType.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/RealmCollectionType.swift _TTSg5MC10RealmSwift6Object___TFVs15ContiguousArray15reserveCapacityfSiT_ _TTSg5GVs22_ContiguousArrayBufferMC10RealmSwift6Object_GS_MS1__s16_ArrayBufferTypes_MS1__GVs17IndexingGeneratorGS_MS1___GS3_GS_MS1___s13GeneratorTypes_MS1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferMS1__GS8_MS1__s14CollectionTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1__GS8_MS1__s9IndexablesGS8_MS1__s12SequenceTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1___MS1__MS1__MS1____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ _TTSg5GVs22_ContiguousArrayBufferMC10RealmSwift6Object_GS_MS1__s16_ArrayBufferTypes_MS1__GVs17IndexingGeneratorGS_MS1___GS3_GS_MS1___s13GeneratorTypes_MS1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferMS1__GS8_MS1__s14CollectionTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1__GS8_MS1__s9IndexablesGS8_MS1__s12SequenceTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1___MS1__MS1__MS1____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ @@ -2057,12 +2474,12 @@ _TwCpVC10RealmSwift5Realm13Configuration _TwcpVC10RealmSwift5Realm13Configuration _TwcaVC10RealmSwift5Realm13Configuration _TwTkVC10RealmSwift5Realm13Configuration -__swift_memcpy61_8 +__swift_memcpy65_8 _TwtaVC10RealmSwift5Realm13Configuration _TwalVC10RealmSwift5Realm13Configuration _TwXxVC10RealmSwift5Realm13Configuration _TwCcVC10RealmSwift5Realm13Configuration -__swift_memmove_array64_8 +__swift_memmove_array72_8 get_field_types_Configuration _TMaGCs23_ContiguousArrayStoragePMPs9AnyObject__ _TPA__TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__.30 @@ -2182,24 +2599,17 @@ _TFFFVC10RealmSwift5Realm13Configurationg11objectTypesGSqGSaMCS_6Object__U_FCSo9 _TTSg5GSaCSo15RLMObjectSchema_GSaS__s14CollectionTypes_GVs17IndexingGeneratorGSaS___GS1_GSaS___s13GeneratorTypes_S__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS6_S__s9IndexablesGS6_S__s12SequenceTypes_GS1_GS6_S___GS1_GS6_S___S2_s_S__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_S___S__S__MC10RealmSwift6Object___TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___ _TTSg5MC10RealmSwift6Object___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ _TTSg5CSo15RLMObjectSchema___TFSag5countSi -_TTSg5VSC26NSRegularExpressionOptions___TFSag8endIndexSi -_TTSg5VSC26NSRegularExpressionOptions___TFSag10startIndexSi -_TTSg5VSC26NSRegularExpressionOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator -_TTSg5GSaVSC26NSRegularExpressionOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ -_TTSg5VSC26NSRegularExpressionOptions___TFSag9subscriptFSix -_TTSg5VSC17NSMatchingOptions___TFSag8endIndexSi -_TTSg5VSC17NSMatchingOptions___TFSag10startIndexSi -_TTSg5VSC17NSMatchingOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator -_TTSg5GSaVSC17NSMatchingOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ -_TTSg5VSC17NSMatchingOptions___TFSag9subscriptFSix -_TTWSus21BitwiseOperationsTypesZFS_oi1ofTxx_x _TMaGSqCSo9RLMSchema_ _TMaT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_ _TMaFT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T_ _TMaGSqFT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T__ _TMaVC10RealmSwift5Realm13Configuration _TWaVC10RealmSwift5Realm13Configurations23CustomStringConvertibleS_ +_TTRXFo_oSS_oCSo5NSURLzoPs9ErrorType__XFo_iSS_iS_zoPS0___ defaultConfiguration.set +deleteRealmIfMigrationNeeded.materialize +deleteRealmIfMigrationNeeded.set +deleteRealmIfMigrationNeeded.get migrationBlock.materialize migrationBlock.set migrationBlock.get @@ -2208,6 +2618,7 @@ schemaVersion.set schemaVersion.get readOnly.materialize readOnly.set +readOnly.get encryptionKey.materialize encryptionKey.set encryptionKey.get @@ -2221,11 +2632,12 @@ _TTSg5GSaMC10RealmSwift6Object__CSo9RLMSchema___TFSq3mapurfzFzxqd__GSqqd___ _TTRXFo_oGSaMC10RealmSwift6Object__oCSo9RLMSchemazoPs9ErrorType__XFo_iGSaMS0___iS1_zoPS2___ _TTSg5GSaPMPs9AnyObject_____TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb inMemoryIdentifier.set -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmConfiguration.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/RealmConfiguration.swift _TToFC10RealmSwift11ResultsBaseg10rlmResultsCSo10RLMResults _TToFC10RealmSwift11ResultsBaseg11descriptionSS _TToFC10RealmSwift11ResultsBase27countByEnumeratingWithStatefTGSpVSC22NSFastEnumerationState_7objectsGVs33AutoreleasingUnsafeMutablePointerGSqPs9AnyObject___5countSi_Si _TToFC10RealmSwift11ResultsBasecfT_S0_ +_TToFC10RealmSwift7Resultsg11invalidatedSb _TToFC10RealmSwift7Resultsg5countSi _TFC10RealmSwift7ResultscfCSo10RLMResultsGS0_x_ _TToFC10RealmSwift7ResultscfCSo10RLMResultsGS0_x_ @@ -2233,11 +2645,10 @@ _TToFC10RealmSwift7Results11valueForKeyfSSGSqPs9AnyObject__ _TToFC10RealmSwift7Results15valueForKeyPathfSSGSqPs9AnyObject__ _TToFC10RealmSwift7Results8setValuefTGSqPs9AnyObject__6forKeySS_T_ _TFFC10RealmSwift7Results6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrFqd__GS0_x_U_FS4_Ps9AnyObject_ -_TFFC10RealmSwift7Results20addNotificationBlockFFTGSqGS0_x__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS1___T_ -_TTRXFo_oGSqCSo10RLMResults_oGSqCSo7NSError__dT__XFdCb_dGSqS__dGSqS0___dT__ -_TFFC10RealmSwift7Results21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS2___T_ -_TPA__TFFC10RealmSwift7Results20addNotificationBlockFFTGSqGS0_x__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS1___T_ -_TPA__TFFC10RealmSwift7Results21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS2___T_ +_TFFC10RealmSwift7Results20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TFFC10RealmSwift7Results21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TPA__TFFC10RealmSwift7Results20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TPA__TFFC10RealmSwift7Results21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ _TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_7Element _TWIuRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_ _TWTuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_11SubSequencePs9Indexable_ @@ -2251,27 +2662,11 @@ get_field_types_Results create_generic_metadata_Results _TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_9Generator _TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s9IndexableS_8_Element -block_destroy_helper.6 _TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_11SubSequence -block_copy_helper.5 _TWTuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_9GeneratorPs13GeneratorType_ -L_selector_data(minOfProperty:) -L_selector(minOfProperty:) -L_selector_data(maxOfProperty:) -L_selector(maxOfProperty:) -L_selector_data(sumOfProperty:) -L_selector(sumOfProperty:) -L_selector_data(averageOfProperty:) -L_selector(averageOfProperty:) -_TMLCSo8NSNumber -block_descriptor.7 _TWGuRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_ _TWGuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_ _TWGuRxC10RealmSwift6ObjectrGCS_7Resultsx_s12SequenceTypeS_ -_PROTOCOL_NSFastEnumeration -l_OBJC_LABEL_PROTOCOL_$_NSFastEnumeration -l_OBJC_PROTOCOL_REFERENCE_$_NSFastEnumeration -L_selector_data(rlmResults) L_selector_data(init:) _PROTOCOLS__TtC10RealmSwift11ResultsBase _METACLASS_DATA__TtC10RealmSwift11ResultsBase @@ -2285,13 +2680,6 @@ _INSTANCE_METHODS__TtC10RealmSwift7Results _PROPERTIES__TtC10RealmSwift7Results got.OBJC_CLASS_$_NSDate field_type_vector_ResultsBase -_TMLCSo10RLMResults -_PROTOCOL_INSTANCE_METHODS_NSFastEnumeration -_PROTOCOL_METHOD_TYPES_NSFastEnumeration -_TTSg5CSo10RLMResultsCSo8NSObjects9Equatable10ObjectiveC___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb -_TTSg5CSo10RLMResultsCSo8NSObjects9Equatable10ObjectiveC___TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb -rlmResults.get -_TMaCSo10RLMResults _TMaC10RealmSwift11ResultsBase _TWauRxC10RealmSwift6ObjectrGCS_7Resultsx_s12SequenceTypeS_ _TWauRxC10RealmSwift6ObjectrGCS_7Resultsx_s9IndexableS_ @@ -2312,10 +2700,7 @@ _TWaVs4Int810RealmSwift10MinMaxTypeS0_ _TWaSi10RealmSwift10MinMaxTypeS_ _TWaSf10RealmSwift10MinMaxTypeS_ _TWaSd10RealmSwift10MinMaxTypeS_ -_TTSf4s_s___TFFs26_unimplemented_initializerFTVs12StaticString8initNameS_4fileS_4lineSu6columnSu_T_U0_FGSRVs5UInt8_T_ -countByEnumeratingWithState -_TMaCSo8NSNumber -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Results.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Results.swift _TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray15reserveCapacityfSiT_ _TTSg5GVs22_ContiguousArrayBufferC10RealmSwift12ObjectSchema_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ _TTSg5GVs22_ContiguousArrayBufferC10RealmSwift12ObjectSchema_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ @@ -2387,7 +2772,7 @@ _TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray40_makeUniqueAndReserve _TTRXFo_oCSo15RLMObjectSchema_oC10RealmSwift12ObjectSchemazoPs9ErrorType__XFo_iS__iS1_zoPS2___ _TTSg5GSaCSo15RLMObjectSchema_GSaS__s14CollectionTypes_GVs17IndexingGeneratorGSaS___GS1_GSaS___s13GeneratorTypes_S__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS6_S__s9IndexablesGS6_S__s12SequenceTypes_GS1_GS6_S___GS1_GS6_S___S2_s_S__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_S___S__S__C10RealmSwift12ObjectSchema___TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___ _TTSg5C10RealmSwift12ObjectSchema___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Schema.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Schema.swift _TwXXV10RealmSwift14SortDescriptor _TwCPV10RealmSwift14SortDescriptor _TwprV10RealmSwift14SortDescriptor @@ -2419,8 +2804,8 @@ _TWaV10RealmSwift14SortDescriptors23CustomStringConvertibleS_ ascending.get property.get reversed -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SortDescriptor.swift -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SwiftVersion.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/SortDescriptor.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/SwiftVersion.swift Util.swift throwForNegativeIndex -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Util.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Util.swift diff --git a/Carthage/Build/iOS/49654D04-27D6-3F4B-AD17-76EF4408CD37.bcsymbolmap b/Carthage/Build/iOS/17E4C2A3-7FF4-3384-9868-7425D8366A20.bcsymbolmap similarity index 57% rename from Carthage/Build/iOS/49654D04-27D6-3F4B-AD17-76EF4408CD37.bcsymbolmap rename to Carthage/Build/iOS/17E4C2A3-7FF4-3384-9868-7425D8366A20.bcsymbolmap index 85b4fa2..69bd540 100644 --- a/Carthage/Build/iOS/49654D04-27D6-3F4B-AD17-76EF4408CD37.bcsymbolmap +++ b/Carthage/Build/iOS/17E4C2A3-7FF4-3384-9868-7425D8366A20.bcsymbolmap @@ -1,76 +1,40 @@ BCSymbolMap Version: 1.0 -_ZN5realm9TableViewD1Ev -__clang_call_terminate -_ZNK5realm5_impl10AsyncQuery21is_for_current_threadEv -_ZN5realm13TableViewBaseC2Ev -_ZN5realm9TableViewD0Ev -_ZNK5realm13TableViewBase15get_column_baseEm -_ZNK5realm13TableViewBase4sizeEv -_ZNK5realm9TableView18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_18ConstSourcePayloadE -_ZN5realm9TableView18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_20MutableSourcePayloadE -_ZN5realm9TableView23apply_and_consume_patchERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEERNS_5GroupE -_ZN5realm10RowIndexesD1Ev -_ZN5realm10RowIndexesD0Ev -_ZNK5realm10RowIndexes14sync_if_neededEv -_ZNK5realm10RowIndexes10is_in_syncEv -_ZN5realm19ColumnBaseWithIndexD2Ev -_ZNK5realm19ColumnBaseWithIndex16has_search_indexEv -_ZNK5realm19ColumnBaseWithIndex16get_search_indexEv -_ZN5realm19ColumnBaseWithIndex16get_search_indexEv -_ZN5realm10ColumnBase39set_search_index_allow_duplicate_valuesEb -_ZN5realm6ColumnIxE18replace_root_arrayENSt3__110unique_ptrINS_5ArrayENS2_14default_deleteIS4_EEEE -_ZNK5realm10ColumnBase21get_subtable_accessorEm -_ZN5realm10ColumnBase25discard_subtable_accessorEm -_ZN5realm10ColumnBase19adj_acc_insert_rowsEmm -_ZN5realm10ColumnBase17adj_acc_erase_rowEm -_ZN5realm10ColumnBase17adj_acc_move_overEmm -_ZN5realm10ColumnBase17adj_acc_swap_rowsEmm -_ZN5realm10ColumnBase24adj_acc_clear_root_tableEv -_ZN5realm10ColumnBase4markEi -_ZN5realm10ColumnBase30bump_link_origin_table_versionEv -_ZN5realm10ColumnBase26do_discard_child_accessorsEv -_ZNK5realm6ColumnIxE7get_valEm -_ZNK5realm14ColumnTemplateIxE14compare_valuesEmm -_ZThn16_NK5realm6ColumnIxE7get_valEm -_ZN5realm12ArrayIntegerD1Ev -_ZN5realm12ArrayIntegerD0Ev -_ZN5realm5Array16update_child_refEmm -_ZNK5realm5Array13get_child_refEm -_ZNK5realm5Array12GetWidthTypeEv -_ZN5realm10LogicErrorD1Ev -_ZN5realm5_impl17NullableOrNothingINS_12ArrayIntegerEE8set_nullERS2_m -_ZN5realm6BpTreeIxE14SetNullHandlerD1Ev -_ZN5realm6BpTreeIxE14SetNullHandler6updateENS_6MemRefEPNS_11ArrayParentEmm -_ZN5realm6BpTreeIxE14SetNullHandlerD0Ev -_ZN5realm6BpTreeIxE17LeafValueInserter11leaf_insertENS_6MemRefERNS_11ArrayParentEmRNS_9AllocatorEmRNS_5Array10TreeInsertIS2_EE -_ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZThn16_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZThn16_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZTv0_n24_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZTv0_n24_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekposENS_4fposI11__mbstate_tEEj -_ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_ -_ZN5realm6BpTreeIxE12EraseHandlerD1Ev -_ZN5realm6BpTreeIxE12EraseHandler15erase_leaf_elemENS_6MemRefEPNS_11ArrayParentEmm -_ZN5realm6BpTreeIxE12EraseHandler12destroy_leafENS_6MemRefE -_ZN5realm6BpTreeIxE12EraseHandler20replace_root_by_leafENS_6MemRefE -_ZN5realm6BpTreeIxE12EraseHandler26replace_root_by_empty_leafEv -_ZN5realm6BpTreeIxE12EraseHandlerD0Ev -_ZN5realm6BpTreeIxE13UpdateHandlerD1Ev -_ZN5realm6BpTreeIxE13UpdateHandler6updateENS_6MemRefEPNS_11ArrayParentEmm -_ZN5realm6BpTreeIxE13UpdateHandlerD0Ev -_ZN5realm10BpTreeBase7destroyEv -_ZN5realm6BpTreeIxE12SliceHandler10slice_leafENS_6MemRefEmmRNS_9AllocatorE -_ZN5realm6ColumnIxE13CreateHandler11create_leafEm -_ZNK5realm5Table10unbind_ptrEv -_ZNKSt3__114default_deleteIN5realm22TableViewHandoverPatchEEclEPS2_ -_ZN5realm13TableViewBaseD2Ev -_ZN5realm13TableViewBaseaSEOS0_ -_ZN5realm11SharedGroup10BadVersionD1Ev -_ZN5realm11SharedGroup10BadVersionD0Ev +_ZNSt3__16vectorIN12_GLOBAL__N_17RowInfoENS_9allocatorIS2_EEE7reserveEm +_ZNSt3__16vectorIN12_GLOBAL__N_134LongestCommonSubsequenceCalculator3RowENS_9allocatorIS3_EEE7reserveEm +_ZNSt3__16vectorIN12_GLOBAL__N_134LongestCommonSubsequenceCalculator3RowENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE +_ZNSt3__16__sortIRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_8PNS1_34LongestCommonSubsequenceCalculator3RowEEEvT0_SG_T_ +_ZNSt3__17__sort3IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_8PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_T_ +_ZNSt3__17__sort4IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_8PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_SG_T_ +_ZNSt3__17__sort5IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_8PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_SG_SG_T_ +_ZNSt3__127__insertion_sort_incompleteIRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_8PNS1_34LongestCommonSubsequenceCalculator3RowEEEbT0_SG_T_ +_ZNSt3__16__sortIRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_9PNS1_34LongestCommonSubsequenceCalculator3RowEEEvT0_SG_T_ +_ZNSt3__17__sort3IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_9PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_T_ +_ZNSt3__17__sort4IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_9PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_SG_T_ +_ZNSt3__17__sort5IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_9PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_SG_SG_T_ +_ZNSt3__127__insertion_sort_incompleteIRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_9PNS1_34LongestCommonSubsequenceCalculator3RowEEEbT0_SG_T_ +_ZN12_GLOBAL__N_134LongestCommonSubsequenceCalculator20find_longest_matchesEmmmm +_ZNSt3__16vectorIN12_GLOBAL__N_134LongestCommonSubsequenceCalculator5MatchENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE +_ZNSt3__16__sortIRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_3PNS1_19CollectionChangeSet4MoveEEEvT0_S9_T_ +_ZNSt3__17__sort3IRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_3PNS1_19CollectionChangeSet4MoveEEEjT0_S9_S9_T_ +_ZNSt3__17__sort4IRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_3PNS1_19CollectionChangeSet4MoveEEEjT0_S9_S9_S9_T_ +_ZNSt3__17__sort5IRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_3PNS1_19CollectionChangeSet4MoveEEEjT0_S9_S9_S9_S9_T_ +_ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_3PNS1_19CollectionChangeSet4MoveEEEbT0_S9_T_ +_ZNSt3__16vectorIN12_GLOBAL__N_17RowInfoENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE +_ZNSt3__16__sortIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_4PN12_GLOBAL__N_17RowInfoEEEvT0_SI_T_ +_ZNSt3__17__sort3IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_4PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_T_ +_ZNSt3__17__sort4IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_4PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_T_ +_ZNSt3__17__sort5IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_4PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_SI_T_ +_ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_4PN12_GLOBAL__N_17RowInfoEEEbT0_SI_T_ +_ZNSt3__16__sortIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_5PN12_GLOBAL__N_17RowInfoEEEvT0_SI_T_ +_ZNSt3__17__sort3IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_5PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_T_ +_ZNSt3__17__sort4IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_5PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_T_ +_ZNSt3__17__sort5IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_5PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_SI_T_ +_ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_5PN12_GLOBAL__N_17RowInfoEEEbT0_SI_T_ +_ZNSt3__16__sortIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_7PN12_GLOBAL__N_17RowInfoEEEvT0_SI_T_ +_ZNSt3__17__sort3IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_7PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_T_ +_ZNSt3__17__sort4IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_7PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_T_ +_ZNSt3__17__sort5IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_7PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_SI_T_ +_ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_7PN12_GLOBAL__N_17RowInfoEEEbT0_SI_T_ _ZNSt3__117bad_function_callD1Ev _ZNSt3__117bad_function_callD0Ev .str @@ -83,477 +47,834 @@ _ZNSt3__117bad_function_callD0Ev .str.7 .str.8 .str.9 -.str.10 -.str.11 -.str.12 -_ZTSN5realm9TableViewE -_ZTIN5realm9TableViewE -_ZTSN5realm10RowIndexesE -_ZTIN5realm10RowIndexesE -_ZTSN5realm6ColumnIxEE -_ZTSN5realm14ColumnTemplateIxEE -_ZTSN5realm18ColumnTemplateBaseE -_ZTIN5realm18ColumnTemplateBaseE -_ZTIN5realm14ColumnTemplateIxEE -_ZTIN5realm6ColumnIxEE -_ZTSN5realm12ArrayIntegerE -_ZTIN5realm12ArrayIntegerE -.str.13 -.str.14 -.str.15 -.str.16 -_ZTSN5realm6BpTreeIxE14SetNullHandlerE -_ZTSN5realm5Array13UpdateHandlerE -_ZTIN5realm5Array13UpdateHandlerE -_ZTIN5realm6BpTreeIxE14SetNullHandlerE -.str.17 -.str.18 -.str.19 -.str.20 -.str.21 -.str.22 -.str.23 -.str.24 -_ZTSNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEEE -_ZTINSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEEE -_ZTSNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEEE -_ZTINSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEEE -.str.25 -.str.26 -.str.27 -.str.28 -.str.29 -.str.30 -.str.31 -.str.32 -_ZTSN5realm6BpTreeIxE12EraseHandlerE -_ZTSN5realm5Array12EraseHandlerE -_ZTIN5realm5Array12EraseHandlerE -_ZTIN5realm6BpTreeIxE12EraseHandlerE -.str.33 -.str.34 -.str.35 -_ZTSN5realm6BpTreeIxE13UpdateHandlerE -_ZTIN5realm6BpTreeIxE13UpdateHandlerE -.str.36 -.str.37 -.str.39 -.str.40 -.str.41 -_ZTSN5realm6BpTreeIxE12SliceHandlerE -_ZTSN5realm10BpTreeBase12SliceHandlerE -_ZTIN5realm10BpTreeBase12SliceHandlerE -_ZTIN5realm6BpTreeIxE12SliceHandlerE -_ZTSN5realm6ColumnIxE13CreateHandlerE -_ZTSN5realm10ColumnBase13CreateHandlerE -_ZTIN5realm10ColumnBase13CreateHandlerE -_ZTIN5realm6ColumnIxE13CreateHandlerE -.str.42 -.str.43 -_ZTSN5realm11SharedGroup10BadVersionE -_ZTIN5realm11SharedGroup10BadVersionE _ZTSNSt3__117bad_function_callE _ZTINSt3__117bad_function_callE -Apple LLVM version 7.3.0 (clang-703.0.29) -operator* -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/memory -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release -operator bool -operator= -__libcpp_compressed_pair_imp -__compressed_pair -unique_ptr -get_deleter -forward > -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/type_traits -move > &> -import_from_handover -core/include/realm/group_shared.hpp -function -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/functional -operator[] -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/vector -clear -forward +Apple LLVM version 7.3.0 (clang-703.0.31) ~bad_function_call +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/functional +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa +exception +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/exception bad_function_call operator() -~unique_ptr -first -operator-> -forward > -release -move > &> -~BadVersion -BadVersion -import_from_handover -forward > > -second -reset -move *&> -forward -Handover -export_for_handover -load -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/atomic -get -empty -__wrap_iter -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iterator -__unwrap_iter -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/algorithm -__move -move +__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *> +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/algorithm +__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *> +__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *> +__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *> +__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *> +operator()<(anonymous namespace)::RowInfo, (anonymous namespace)::RowInfo> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp +__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *> +sort<(anonymous namespace)::RowInfo *, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &> +sort<(anonymous namespace)::RowInfo, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15)> +__wrap_iter<(anonymous namespace)::RowInfo *> +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iterator +operator- +__unwrap_iter<(anonymous namespace)::RowInfo *> +__move<(anonymous namespace)::RowInfo, (anonymous namespace)::RowInfo> +move<(anonymous namespace)::RowInfo *, (anonymous namespace)::RowInfo *> __annotate_shrink +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/vector __destruct_at_end -__wrap_iter -__make_iter -begin -cbegin +operator== +operator!= base -operator- +operator- erase -operator- -__distance > -distance > -operator== -operator() -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/async_query.cpp -find_if, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/async_query.cpp:78:27)> -end > > -begin > > +operator()<(anonymous namespace)::RowInfo> +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:621:35) &> +remove_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:621:35)> +__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *> +__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *> +__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *> +__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *> +__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *> +__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *> +sort<(anonymous namespace)::RowInfo *, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &> +sort<(anonymous namespace)::RowInfo, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47)> +__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *> +__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *> +__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *> +__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *> +__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *> +swap<(anonymous namespace)::RowInfo> +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/type_traits +__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *> +sort<(anonymous namespace)::RowInfo *, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &> +sort<(anonymous namespace)::RowInfo, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47)> +end > > +begin > > +second +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/memory +__alloc +max_size +__max_size +__recommend +__push_back_slow_path<(anonymous namespace)::RowInfo> +__done +move<(anonymous namespace)::RowInfo &> +forward<(anonymous namespace)::RowInfo> +construct<(anonymous namespace)::RowInfo, (anonymous namespace)::RowInfo> +__construct<(anonymous namespace)::RowInfo, (anonymous namespace)::RowInfo> +__RAII_IncreaseAnnotator +push_back +operator[] size -store -~function +first __end_cap -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__split_buffer +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__split_buffer capacity +clear ~__split_buffer __invalidate_all_iterators __annotate_new -move -swap -move_if_noexcept -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/utility -__construct_backward +move<(anonymous namespace)::RowInfo *&> +swap<(anonymous namespace)::RowInfo *> +__construct_backward<(anonymous namespace)::RowInfo> data __annotate_contiguous_container __annotate_delete __swap_out_circular_buffer -__alloc allocate -forward &> +__libcpp_compressed_pair_imp +forward &> +__compressed_pair __split_buffer -max_size -__max_size -__recommend -__push_back_slow_path -__done -forward -Callback -Realm/ObjectStore/impl/async_query.hpp -construct -__construct -__RAII_IncreaseAnnotator -push_back -operator!= -move -swap -move -swap -swap -shared_ptr -move &> -~lock_guard -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__mutex_base -lock_guard -forward > > -unlock -core/include/realm/util/thread.hpp -~LockGuard -move *&> -max -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/limits -VersionID -forward -lock -LockGuard -export_for_handover -~Handover +reserve allocator -forward +forward<(anonymous namespace)::RowInfo *> __vector_base vector -~shared_ptr -bad_weak_ptr -shared_ptr -shared_from_this +operator* +operator++ +operator==<(anonymous namespace)::RowInfo *, (anonymous namespace)::RowInfo *> +operator!=<(anonymous namespace)::RowInfo *> end -__bit_iterator -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__bit_reference -__copy_unaligned >, true> -__to_raw_pointer -min > -min -__copy_aligned >, true> -copy >, true> -operator- -__distance >, true, 0> > -distance >, true, 0> > -__construct_at_end >, true, 0> > -__external_cap_to_internal -__internal_cap_to_external -forward > -select_on_container_copy_construction -~vector -move, std::__1::default_delete > > &> -move, std::__1::default_delete > > &> -move -operator!= +__wrap_iter +__make_iter +begin +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/unordered_map +__destroy +destroy +__destroy +destroy +reset +~unique_ptr +release +forward +pair, void *> *>, bool> +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/utility +get +forward +forward, void *> *> > +pair, void *> *>, bool &, void> +ceil +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/cmath +__is_hash_power2 +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__hash_table +__clz +__next_hash_pow2 +__rehash +rehash +__node_insert_unique +unique_ptr +move, void *>, std::__1::__hash_map_node_destructor, void *> > > > &> +addressof +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__functional_base +construct +__construct +get_deleter +operator-> +addressof +construct +__construct +forward, void *> > > > +move, void *> > > &> +__hash_map_node_destructor +__construct_node_with_key +addressof > +pointer_to +find +__hash_const_iterator +forward, void *> > > > +forward, void *> *> +move, void *> > > &> +__hash_node_destructor +remove +find +__erase_unique +Realm/ObjectStore/index_set.hpp +back +operator-- +front +__advance > > +advance > > +prev > > +operator!= +next_chunk +offset +outer +operator== +operator== > > +operator!= > > +cbegin +operator+ +__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *> +__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *> +__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *> +__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *> +__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *> +swap +operator() +__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *> +sort +sort +__push_back_slow_path operator== -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/thread -is_for_current_thread -~__vector_base -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.hpp -move -move &> -__move_assign_alloc +operator!= +__hash_map_iterator +__hash_iterator +operator() +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:127:53) &> +remove_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:127:53)> +move +swap +__construct_forward +__construct_backward +__construct_at_end > +forward &> +__unwrap_iter +__copy +copy, realm::CollectionChangeSet::Move *> +__move_backward +move_backward +forward +construct +__construct +__move_range +forward +construct +__construct +__construct_range_forward, realm::CollectionChangeSet::Move *> +operator+= +__advance > +advance > +operator- +__distance > +distance > +insert > +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:83:31) &> +remove_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:83:31)> +__wrap_iter +operator- +__unwrap_iter +__move +move +operator== +operator!= +operator- +move +pop_back +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:54:61)> +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:52:55) &> +remove_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:52:55)> +end > > +begin > > +operator== +operator!= +__unordered_map_equal +forward +__unordered_map_hasher +__hash_node_base +forward +__bucket_list_deallocator +forward, void *> **> +__hash_table +unordered_map +forward > +forward +empty deallocate -__move_assign -move &> -__cap -move &> -core/include/realm/views.hpp +__to_raw_pointer<(anonymous namespace)::RowInfo> +destroy +__destroy<(anonymous namespace)::RowInfo> +destroy<(anonymous namespace)::RowInfo> +~__vector_base +~vector +calculate_moves_unsorted +operator==<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match *, (anonymous namespace)::LongestCommonSubsequenceCalculator::Match *> +operator!=<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match *> +~LongestCommonSubsequenceCalculator +forward > +move &> +__push_back_slow_path<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match> +move<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match &> +forward<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match> +construct<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match, (anonymous namespace)::LongestCommonSubsequenceCalculator::Match> +__construct<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match, (anonymous namespace)::LongestCommonSubsequenceCalculator::Match> +__destroy<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match> +destroy<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match> +move<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match *&> +swap<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match *> +__construct_backward<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match> +forward &> +__push_back_slow_path +__to_raw_pointer<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match> +forward +construct<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match, const (anonymous namespace)::LongestCommonSubsequenceCalculator::Match &> +__construct<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match, const (anonymous namespace)::LongestCommonSubsequenceCalculator::Match &> +__construct_backward +forward &> +__push_back_slow_path +move +forward +construct +__construct +operator== +operator!= +operator==<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +operator!=<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +operator()<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row, unsigned long> +__advance > +advance > +operator-<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__distance > +distance > +__lower_bound<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:437:35) &, std::__1::__wrap_iter<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *>, unsigned long> +lower_bound, unsigned long, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:437:35)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:455:33)> +__to_raw_pointer +__destroy +destroy +__swap_allocator > +move +swap +swap +forward +find_longest_match +find_longest_matches +forward<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match *> +LongestCommonSubsequenceCalculator +__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:530:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:530:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:530:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:530:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:530:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +operator()<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:530:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +sort<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:530:33) &> +sort<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:530:33)> +end > > +begin > > +__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:510:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:510:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:510:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:510:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:510:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +swap<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +__tuple_leaf +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/tuple +__tuple_impl<0, 1, unsigned long &, unsigned long &, unsigned long &, unsigned long &> +tuple +tie +operator(), std::__1::tuple > +get<1, unsigned long &, unsigned long &> +get<0, unsigned long &, unsigned long &> +operator< +__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:510:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +sort<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:510:33) &> +sort<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:510:33)> max > max -__allocate -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/new min > min +__push_back_slow_path<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +move<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row &> +forward<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +construct<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +__construct<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +__destroy<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +destroy<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +move<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *&> +swap<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__construct_backward<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +__to_raw_pointer<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +__allocate +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/new +forward &> +forward<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +calculate_moves_sorted +ChunkedRangeVectorIterator +MutableChunkedRangeVectorIterator +max +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/limits +get +get<1, const unsigned long, unsigned long> +forward +get<0, const unsigned long, unsigned long> +forward +pair &, void> +~ChunkedRangeVector +~IndexSet +__to_raw_pointer +__destroy +destroy +~CollectionChangeBuilder +Realm/ObjectStore/impl/collection_change_builder.hpp +ChunkedRangeVector +IndexSet +move +move, std::__1::__unordered_map_hasher, std::__1::hash, true>, std::__1::__unordered_map_equal, std::__1::equal_to, true>, std::__1::allocator > > &> +bucket_count +__constrain_hash +addressof, void *> *> > +move, std::__1::equal_to, true> &> +key_eq +max_load_factor +move, std::__1::hash, true> &> +hash_function +move, void *> > &> +move, void *> *> &> +__move_assign_alloc +reset, void *> **> +__move_assign +operator= +move &> +__to_raw_pointer +__to_raw_pointer > +__destroy > +destroy > +~Chunk +__destroy +destroy +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/collection_notifications.hpp +~CollectionChangeSet +__deallocate +addressof > +~__hash_value_type +__destroy > +destroy > +__node_alloc +~__hash_table +~unordered_map +CollectionChangeSet +move > &> +forward > +forward +__vector_base_common +move &> +move +calculate +verify +move_over +move +insert +modify +parse_complete +clean_up_stale_moves +merge +CollectionChangeBuilder +_ZN5realm4util15AtomicSharedPtrINS_5_impl18CollectionNotifierELb1EE8exchangeENSt3__110shared_ptrIS3_EE +__clang_call_terminate +_ZN5realm4util15AtomicSharedPtrINS_5_impl18CollectionNotifierELb1EEaSEOS4_ +_ZN5realm4util15AtomicSharedPtrINS_5_impl18CollectionNotifierELb1EEC2EOS4_ +atomic_store +Realm/ObjectStore/util/atomic_shared_ptr.hpp +AtomicSharedPtr +operator bool +move +swap +move +swap +atomic_exchange +exchange +~shared_ptr +shared_ptr +move &> +~AtomicSharedPtr +move &> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/collection_notifications.cpp +NotificationToken +~NotificationToken +Realm/ObjectStore/collection_notifications.cpp +_ZN5realm13BasicTableRefIKNS_5TableEED1Ev +_ZN5realm5_impl18CollectionNotifier10do_deliverERNS_11SharedGroupE +_ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev +_ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev +_ZThn16_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev +_ZThn16_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev +_ZTv0_n24_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev +_ZTv0_n24_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev +_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev +_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev +_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekposENS_4fposI11__mbstate_tEEj +_ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_ +_ZNSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEED1Ev +_ZNSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEED0Ev +_ZNKSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEE7__cloneEv +_ZNKSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEE7__cloneEPNS0_6__baseISE_EE +_ZNSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEE7destroyEv +_ZNSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEE18destroy_deallocateEv +_ZNSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEEclEOm +_ZNKSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEE6targetERKSt9type_info +_ZNKSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEE11target_typeEv +_ZNSt3__110__function6__funcIN5realm5_impl17DeepChangeCheckerENS_9allocatorIS4_EEFbmEED1Ev +_ZNSt3__110__function6__funcIN5realm5_impl17DeepChangeCheckerENS_9allocatorIS4_EEFbmEED0Ev +.str.10 +_ZTSNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEEE +_ZTINSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEEE +_ZTSNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEEE +_ZTINSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEEE +.str.11 +.str.12 +.str.13 +.str.14 +.str.15 +_ZTVNSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEEE +_ZTSNSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEEE +_ZTSNSt3__110__function6__baseIFbmEEE +_ZTINSt3__110__function6__baseIFbmEEE +_ZTINSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEEE +_ZTSZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS0_21TransactionChangeInfoERKNS_5TableEE3$_0 +_ZTIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS0_21TransactionChangeInfoERKNS_5TableEE3$_0 +_ZTSNSt3__110__function6__funcIN5realm5_impl17DeepChangeCheckerENS_9allocatorIS4_EEFbmEEE +_ZTINSt3__110__function6__funcIN5realm5_impl17DeepChangeCheckerENS_9allocatorIS4_EEFbmEEE +_ZTSN5realm5_impl17DeepChangeCheckerE +_ZTIN5realm5_impl17DeepChangeCheckerE +function +forward +forward +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__bit_reference +__bit_reference +__make_ref +__bit_iterator +__fill_n_false > > +__fill_n_true > > +fill_n > > +__swap_allocator > +move +swap +move +swap +cend +__copy_unaligned >, true> +__to_raw_pointer +operator- +__copy_aligned >, true> +copy >, true> +__align_it +__copy_unaligned >, false> __to_raw_pointer -destroy -__destroy -destroy -__construct_range_forward -__construct_at_end -__unwrap_iter -__copy -copy -__advance -advance -__distance -distance -assign -__copy_assign_alloc -move &> -move -swap +min > +min +__copy_aligned >, false> +copy >, false> +__distance >, false, 0> > +distance >, false, 0> > +__construct_at_end >, false, 0> > +__cap +__external_cap_to_internal +forward > +allocator +allocator +__internal_cap_to_external +resize +operator== +operator!= +unique_lock +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__mutex_base +operator!= +move +swap +__wrap_iter +__unwrap_iter +__move +move +operator- +operator- +__distance > +distance > +operator== +operator() +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:200:27)> +end > > +begin > > +store +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/atomic +~function +move +swap +move_if_noexcept +__construct_backward +forward &> +__push_back_slow_path +forward +Callback +Realm/ObjectStore/impl/collection_notifier.hpp +construct +__construct +~lock_guard +lock_guard +operator!= +forward +move +swap +move_if_noexcept +forward +construct +__construct +__construct_backward +__construct_at_end +forward &> +construct +__construct +__append +impl_get_row_ndx +core/include/realm/row.hpp +row_ndx +get_index +operator== +operator!= +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/array +operator== +operator() +operator!= +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:85:23)> +end > > +begin > > core/include/realm/util/bind_ptr.hpp -bind_ptr -move -move &> -core/include/realm/bptree.hpp -move_assign -core/include/realm/column.hpp -BasicTableRef core/include/realm/table_ref.hpp -move -core/include/realm/table_view.hpp -is_attached -wants_background_updates -move -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/exception -get_coordinator -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.hpp -~Callback -move &> -operator++ -~SortOrder -move &> +move +swap +__construct_backward +forward &> +__push_back_slow_path +move +forward +construct +__construct +move +swap +move_if_noexcept +__construct_backward +forward &> +forward +__push_back_slow_path +move +forward +forward > +forward +move &> +RelatedTable +construct +__construct +operator() +any_of, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:50:38)> +target_type +target +forward +__invoke +__call +destroy_deallocate +get<0, const std::__1::allocator &> +__libcpp_compressed_pair_imp &, 0, 0> +move &> &> +__compressed_pair &> +__tuple_leaf &, void> +__tuple_impl<0, const std::__1::allocator &, const std::__1::allocator &> +forward &> +forward_as_tuple &> +__func +__clone +forward +construct +__construct +__construct_range_forward +__construct_at_end +select_on_container_copy_construction +DeepChangeChecker +get<0, const realm::_impl::DeepChangeChecker &> +__libcpp_compressed_pair_imp &&, 0, 0> +move &> +__compressed_pair &&> +__tuple_leaf +__tuple_impl<0, const realm::_impl::DeepChangeChecker &, const realm::_impl::DeepChangeChecker &> +forward +forward_as_tuple +allocator +~__func +~__libcpp_compressed_pair_imp +~__compressed_pair +forward > +forward +move &> +get<0, realm::_impl::DeepChangeChecker &&> +forward +get<0, std::__1::allocator &&> +forward &&> +__libcpp_compressed_pair_imp &&, 0, 0> +move &&> &> +move &> +__compressed_pair &&> +move &> +__tuple_leaf, void> +__tuple_impl<0, std::__1::allocator &&, std::__1::allocator > +tuple , false> +forward > +forward_as_tuple > +__tuple_leaf +__tuple_impl<0, realm::_impl::DeepChangeChecker &&, realm::_impl::DeepChangeChecker> +tuple +forward +forward_as_tuple +allocator, bool (unsigned long)> > +move +forward, bool (unsigned long)> > > > +forward, bool (unsigned long)> *> +move, bool (unsigned long)> > > &> +__allocator_destructor +__not_null +function +name +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/typeinfo +__compare_nonunique_names +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &> +__invoke<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &, unsigned long> +__call<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &, unsigned long> +get<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> &> +__libcpp_compressed_pair_imp &, 0, 0> +move &> &> +__compressed_pair &> +__tuple_leaf &, void> +__tuple_impl<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> &, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> &> +forward &> +forward_as_tuple &> +get<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> &&> +forward &&> +get<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &> +__libcpp_compressed_pair_imp &&, 0, 0> +move &&> &> +move &> +__compressed_pair &&> +move &> +__tuple_leaf, void> +__tuple_impl<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> > +tuple , false> +forward > +forward_as_tuple > +__tuple_leaf +__tuple_impl<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &> +forward +forward_as_tuple +allocator, bool (unsigned long)> > +forward, bool (unsigned long)> > > > +forward, bool (unsigned long)> *> +move, bool (unsigned long)> > > &> +allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> +~__base +get<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &&> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &&> +__libcpp_compressed_pair_imp<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &&, 0> +move &> +move &> +__compressed_pair<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &&> +forward_as_tuple<> +__tuple_leaf<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16), void> +__tuple_impl<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &&, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> +tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16), false> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> +forward_as_tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> +__base +move<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &> +__not_null<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> +function<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> +any_of, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:36:27)> +unbind ~bind_ptr -move -swap -move &> -~TableViewBase -~TableView -__to_raw_pointer -__destroy -destroy +~BasicTableRef +do_deliver +__construct_range_forward +__construct_at_end +forward +__construct_range_forward > +__construct_at_end *> +forward > > +forward *> +Chunk +construct +__construct +__construct_range_forward +__construct_at_end +core/include/realm/group_shared.hpp +version +load +have_callbacks +operator() +max_element, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:249:28)> +move +get_coordinator +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.hpp +~Callback +move &> +__to_raw_pointer +__destroy +destroy +__to_raw_pointer +__destroy +destroy __atomic_base atomic exception_ptr get_shared_group -forward *> -apply_patch -apply_and_consume_patch -TableView -clone_for_handover -forward -move -forward -forward > *> -forward -QueryHandoverPatch -core/include/realm/handover_defs.hpp -forward -TableViewHandoverPatch -__to_raw_pointer > > -__destroy > > -destroy > > -~QueryHandoverPatch -~LinkViewHandoverPatch -~TableViewHandoverPatch -get_column_base -~RowIndexes -unbind_ptr +move &> +mutex +BasicRowExpr +BasicRowExpr core/include/realm/table.hpp -unbind -~BasicTableRef -core/include/realm/link_view.hpp -__to_raw_pointer -__destroy -destroy -__deallocate -__to_raw_pointer -__destroy -destroy -~Sorter -init_from_ref -core/include/realm/array.hpp -get_root_array -get_alloc -~CreateHandler -create -create_array -create_leaf -CreateHandler -forward -forward -Sorter -forward -__vector_base_common -is_in_sync -sync_if_needed -compare_values -get_val -do_discard_child_accessors -operator= > -create_root_from_mem -create_root_from_ref -get_parent -get_ref_from_parent -init_from_parent -refresh_accessor_tree -bump_link_origin_table_version -mark -adj_acc_clear_root_table -adj_acc_swap_rows -adj_acc_move_over -adj_acc_erase_row -adj_acc_insert_rows -discard_subtable_accessor -get_subtable_accessor -update_from_parent -set_ndx_in_parent -get_ndx_in_parent -set_parent -~SliceHandler -slice_leaf -SliceHandler -~DeepArrayDestroyGuard -core/include/realm/impl/destroy_guard.hpp -is_read_only +~MemRef core/include/realm/alloc.hpp -write -DeepArrayDestroyGuard -detach -clone_deep -replace_root_array -get_mem -get_ref -set_search_index_allow_duplicate_values -get_search_index -insert -core/include/realm/index_string.hpp -populate_search_index -StringIndex -create_search_index -has_search_index -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/array -__unwrap_iter -__unwrap_iter -__copy -copy -core/include/realm/string_data.hpp -get_index_data -~Column -~BpTreeBase -~BpTree -swap_rows_without_updating_index -swap_rows -clear_and_destroy_children -get_type -clear_without_updating_index -~UpdateHandler -update -UpdateHandler -set +~pair core/include/realm/array_integer.hpp -move_last_over -move_last_over_without_updating_index -update_ref -erase -move_last_row_over -~EraseHandler -replace_root_by_empty_leaf -default_delete -forward > -unique_ptr > -move > &> -forward -move -replace_root_by_leaf -free_ -destroy_leaf -has_refs -erase_leaf_elem -EraseHandler -set_header_size -erase_without_updating_index -erase -do_erase -erase_rows -StringData -to_str -insert -adjust +core/include/realm/bptree.hpp +core/include/realm/column.hpp to_size_t core/include/realm/utilities.hpp -ensure_bptree_offsets -forward -inspect_value, std::__1::allocator >, int> -core/include/realm/util/inspect.hpp -inspect_all, std::__1::allocator >, int> -inspect_all, std::__1::allocator >, unsigned long, int> -terminate -core/include/realm/util/terminate.hpp -bptree_insert::LeafValueInserter> +get_target_table +core/include/realm/column_linkbase.hpp +core/include/realm/array.hpp +get_bptree_size +root +root_as_leaf +is_inner_bptree_node +root_is_leaf +is_attached +core/include/realm/link_view.hpp +is_null_link +atomic_thread_fence +fetch_sub +unbind_ptr +bind_ptr +move &> +BasicTableRef +get_link_target ~basic_stringstream -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iosfwd -forward +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iosfwd inspect_all, std::__1::allocator > > +core/include/realm/util/inspect.hpp inspect_all, std::__1::allocator >, unsigned long> inspect_value, std::__1::allocator >, unsigned long> inspect_all, std::__1::allocator >, unsigned long, unsigned long> operator<< > -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ostream +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ostream length -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/string +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/string setstate -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ios +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ios failed widen -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__locale +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__locale use_facet > fill flags @@ -562,15 +883,15 @@ ostreambuf_iterator width basic_string sputn -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/streambuf +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/streambuf __pad_and_output > -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/locale +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/locale __put_character_sequence > sputc max > max overflow -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/sstream +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/sstream to_char_type eq not_eof @@ -592,13 +913,10 @@ seekoff pbump setp __get_long_cap -resize setg __get_short_size __get_long_size addressof -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__functional_base -pointer_to __get_short_pointer __get_long_pointer __is_long @@ -611,7 +929,7 @@ basic_ostream eof init basic_istream -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/istream +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/istream basic_iostream ios_base basic_ios @@ -624,117 +942,40 @@ _ZTv0_n24_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev _ZThn16_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev _ZThn16_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev basic_stringstream -terminate -~Array -Array -MemRef -leaf_insert -get_is_inner_bptree_node_from_header -translate -bptree_append::LeafValueInserter> -move -insert -null_or_default_value -insert_rows -~SetNullHandler -SetNullHandler -root -root_as_leaf -set_null -null -core/include/realm/null.hpp -update_parent -get_header_from_data -destroy_deep -erase -equal > -equal -safe_equal -is_null -to_str -set -~LogicError -core/include/realm/exceptions.hpp -exception -LogicError -~pair -~MemRef -get_leaf -is_nullable -back -get_bptree_size -is_inner_bptree_node -root_is_leaf -~ColumnBase -~StringIndex -~ColumnBaseWithIndex -forward > -move > &> -BpTreeBase -forward -move -GetWidthType -to_ref -get_as_ref -get_child_ref -update_child_ref -~ArrayInteger -~ArrayParent -ArrayParent -ArrayInteger -BpTree -ColumnTemplateBase -ColumnTemplate -forward -ColumnBase -ColumnBaseWithIndex -_ZThn16_NK5realm6ColumnIxE7is_nullEm -Column -RowIndexes -TableViewBase -forward -forward *> -__thread_id -get_id -SortOrder -get_sort -get_realm -mutex -detatch +terminate +core/include/realm/util/terminate.hpp +get_column_count +core/include/realm/spec.hpp +get_column_type +get_public_column_count +has_parent +__to_raw_pointer +__destroy +destroy +~RelatedTable +__to_raw_pointer +__destroy +destroy +~DeepChangeChecker +detach attach_to next_callback call_callbacks deliver prepare_handover -run +add_required_change_info +set_table +lock_target is_alive -release_query unregister remove_callback add_callback -~AsyncQuery -AsyncQuery -_ZZN5realm5_impl11CachedRealmC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_08__invokeEPv -_ZZN5realm5_impl11CachedRealmC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_18__invokeEPKv -_ZZN5realm5_impl11CachedRealmC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_28__invokeEPKv -weak_ptr -move &> -Realm/ObjectStore/impl/cached_realm_base.hpp -weak_ptr -CachedRealmBase -move -~CachedRealmBase -~weak_ptr -~RefCountedWeakPointer -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/cached_realm.cpp -__invoke -operator void (*)(const void *) -fetch_add -operator const void *(*)(const void *) -operator void (*)(void *) -notify -~CachedRealm -CachedRealm +~CollectionNotifier +CollectionNotifier +check_row +check_outgoing_links +find_related_tables +get_modification_checker _ZNSt3__119basic_ostringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev _ZN12_GLOBAL__N_19notify_fdEi _ZTv0_n24_NSt3__119basic_ostringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev @@ -757,58 +998,56 @@ __func__._ZN12_GLOBAL__N_19notify_fdEi _ZTVNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEEE _ZTSNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEEE _ZTINSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEEE -forward > *> -move > *&> +forward > *> +move > *&> __execute -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/future +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/future ~__deferred_assoc_state __set_deferred __deferred_assoc_state -__make_deferred_assoc_state > -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), void> -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/tuple -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), false> +__make_deferred_assoc_state > +__tuple_leaf<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), void> +__tuple_impl<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> +tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), false> __async_func -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -__decay_copy<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -get<1, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> -get<0, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> -move >::*&)()> -__invoke >::*)(), std::__1::__async_assoc_state > *, void> -__thread_execute >::*)(), std::__1::__async_assoc_state > *, 1> -__thread_proxy >::*)(), std::__1::__async_assoc_state > *> > -forward >::*)(), std::__1::__async_assoc_state > *> *> -move >::*)(), std::__1::__async_assoc_state > *> *&> -__tuple_leaf > *, void> -__tuple_leaf >::*)(), void> -__tuple_impl<0, 1, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> -tuple >::*)(), std::__1::__async_assoc_state > *, false> -__decay_copy > *> -forward >::*)()> -__decay_copy >::*)()> -thread >::*)(), std::__1::__async_assoc_state > *, void> -forward > *> -move > *&> -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47) &> -name -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/typeinfo -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> +__decay_copy<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> +get<1, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> +get<0, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> +move >::*&)()> +__invoke >::*)(), std::__1::__async_assoc_state > *, void> +__thread_execute >::*)(), std::__1::__async_assoc_state > *, 1> +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/thread +__thread_proxy >::*)(), std::__1::__async_assoc_state > *> > +forward >::*)(), std::__1::__async_assoc_state > *> *> +move >::*)(), std::__1::__async_assoc_state > *> *&> +__tuple_leaf > *, void> +__tuple_leaf >::*)(), void> +__tuple_impl<0, 1, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> +tuple >::*)(), std::__1::__async_assoc_state > *, false> +__decay_copy > *> +forward >::*)()> +__decay_copy >::*)()> +thread >::*)(), std::__1::__async_assoc_state > *, void> +forward > *> +move > *&> +get<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> +move<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47) &> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp +__invoke<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> __execute<> __on_zero_shared ~__async_assoc_state ~__assoc_sub_state -move &> +move &> condition_variable __shared_count __assoc_sub_state __async_assoc_state -forward > -__make_async_assoc_state > +forward > +__make_async_assoc_state > __does_policy_contain -async<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> +async<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> move &> shrink_to_fit assign @@ -823,8 +1062,6 @@ distance __init basic_string __shift_mix -move -swap __rotate pair __weak_hash_len_32_with_seeds @@ -859,46 +1096,308 @@ listen ~ExternalCommitHelper ExternalCommitHelper close -operator+= -operator+ -__push_back_slow_path > -__construct_forward > -__construct_backward > -move *&> -swap *> +_ZN12_GLOBAL__N_125ChunkedRangeVectorBuilderC1ERKN5realm5_impl18ChunkedRangeVectorE +_ZN12_GLOBAL__N_125ChunkedRangeVectorBuilder8finalizeEv +_ZN12_GLOBAL__N_125ChunkedRangeVectorBuilder9push_backENSt3__14pairImmEE +set +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/index_set.cpp +next > > +shift +adjust +__unwrap_iter > +__unwrap_iter > > +__copy >, std::__1::back_insert_iterator<(anonymous namespace)::ChunkedRangeVectorBuilder> > +copy >, std::__1::back_insert_iterator<(anonymous namespace)::ChunkedRangeVectorBuilder> > +addressof<(anonymous namespace)::ChunkedRangeVectorBuilder> +back_insert_iterator +back_inserter<(anonymous namespace)::ChunkedRangeVectorBuilder> +operator(), unsigned long> +__lower_bound<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/index_set.cpp:340:35) &, std::__1::__wrap_iter *>, unsigned long> +lower_bound *>, unsigned long, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/index_set.cpp:340:35)> +operator() +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/index_set.cpp:331:28)> +operator== +operator== > > +operator!= > > +operator- +operator- *, const std::__1::pair *> +operator== *, std::__1::pair *> +operator!= *> +pair +construct> +__construct> +forward &> +construct, std::__1::pair &> +__construct, std::__1::pair &> +__construct_range_forward *>, std::__1::pair *> +__construct_at_end *> > +__unwrap_iter *> > +__copy *>, std::__1::pair *> +copy *>, std::__1::pair *> +__advance *> > +advance *> > +operator- *, std::__1::pair *> +__distance *> > +distance *> > +assign *> > +__wrap_iter +__construct_forward move_iterator +operator!= +__construct_at_end > +__move +move +__move_backward +move_backward +operator- +__wrap_iter *> +__construct_forward > operator!= *, std::__1::pair *> __construct_at_end *> > -forward > &> -forward *> +__move *, std::__1::pair *> +move *, std::__1::pair *> +addressof > __move_backward *, std::__1::pair *> move_backward *, std::__1::pair *> -__move_range forward > construct, std::__1::pair > __construct, std::__1::pair > operator- *, std::__1::pair *> -__wrap_iter *> +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/initializer_list +__construct_range_forward *, std::__1::pair *> +__construct_at_end *> +__push_back_slow_path +move *&> +swap *> +__construct_backward > +forward > &> +__push_back_slow_path &> +forward &> +construct, const std::__1::pair &> +__construct, const std::__1::pair &> +pair +pair +pair +IndexIterator +__unwrap_iter __unwrap_iter *> -move &> -__move *, std::__1::pair *> -move *, std::__1::pair *> -__to_raw_pointer > -__destroy > -destroy > -operator- *, const std::__1::pair *> -operator== *, std::__1::pair *> -operator!= *> +operator= &, void> +__copy *, std::__1::pair *> +copy *, std::__1::pair *> +__advance *> +advance *> +__distance *> +distance *> +assign *> +__copy_assign_alloc +__copy +copy +__advance +advance +__distance +distance +assign +forward pair -forward -pair -add_shifted -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/index_set.cpp -insert_at +~ChunkedRangeVectorBuilder +move > &> +finalize +move +swap +move +move_if_noexcept +forward +move > &> +construct +__construct +__construct_backward +forward &> +construct +__construct +operator== +operator!= +ChunkedRangeVectorBuilder +IndexIteratableAdaptor +as_indexes +get +get<1, unsigned long, unsigned long> +get<0, unsigned long, unsigned long> +pair &, void> +move &> do_add +unshift +do_remove +do_erase +erase_or_unshift +erase_at +shift_for_insert_at +insert_at +add_shifted_by +add_shifted add -find +count +contains +ensure_space Realm/ObjectStore/index_set.cpp +_ZN5realm27InvalidTransactionExceptionD1Ev +_ZN5realm27InvalidTransactionExceptionD0Ev +_ZN5realm12ArrayIntegerD1Ev +_ZN5realm12ArrayIntegerD0Ev +_ZN5realm5Array16update_child_refEmm +_ZNK5realm5Array13get_child_refEm +_ZNK5realm5Array12GetWidthTypeEv +_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl12ListNotifierENS_9allocatorIS3_EEED1Ev +_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl12ListNotifierENS_9allocatorIS3_EEED0Ev +_ZTSN5realm4List25OutOfBoundsIndexExceptionE +_ZTIN5realm4List25OutOfBoundsIndexExceptionE +_ZTSN5realm4List20InvalidatedExceptionE +_ZTIN5realm4List20InvalidatedExceptionE +_ZTSN5realm27InvalidTransactionExceptionE +_ZTIN5realm27InvalidTransactionExceptionE +_ZTSN5realm12ArrayIntegerE +_ZTIN5realm12ArrayIntegerE +_ZTSNSt3__120__shared_ptr_emplaceIN5realm5_impl12ListNotifierENS_9allocatorIS3_EEEE +_ZTINSt3__120__shared_ptr_emplaceIN5realm5_impl12ListNotifierENS_9allocatorIS3_EEEE +shared_ptr +move &> +operator= +forward &> +forward &> +__enable_weak_this +addressof > > +allocator +__on_zero_shared_weak +~__shared_ptr_emplace +~LinkViewHandoverPatch +core/include/realm/handover_defs.hpp +~Handover +~ListNotifier +Realm/ObjectStore/impl/list_notifier.hpp +get<1, std::__1::shared_ptr &, std::__1::shared_ptr &> +get<0, std::__1::shared_ptr &, std::__1::shared_ptr &> +get<0, std::__1::allocator &> +__libcpp_compressed_pair_imp &, std::__1::shared_ptr &, std::__1::shared_ptr &, 0, 0, 1> +move &, std::__1::shared_ptr &> &> +move &> &> +__compressed_pair &, std::__1::shared_ptr &, std::__1::shared_ptr &> +__tuple_leaf &, void> +__tuple_leaf &, void> +__tuple_impl<0, 1, std::__1::shared_ptr &, std::__1::shared_ptr &, std::__1::shared_ptr &, std::__1::shared_ptr &> +forward_as_tuple &, std::__1::shared_ptr &> +__tuple_leaf &, void> +__tuple_impl<0, std::__1::allocator &, std::__1::allocator &> +forward &> +forward_as_tuple &> +__shared_weak_count +__shared_ptr_emplace &, std::__1::shared_ptr &> +allocator > > +forward > > > > +forward > *> +move > > > &> +make_shared &, std::__1::shared_ptr &> +make_shared &, std::__1::shared_ptr &> +table +get_table +impl_get_table +OptionalStorage +core/include/realm/util/optional.hpp +Optional +move +~OptionalStorage +~Optional +core/include/realm/column_fwd.hpp +~SortOrder +Realm/ObjectStore/results.hpp +forward +move &> +SortOrder +move +OptionalStorage +~Array +~ArrayInteger +get_leaf +GetWidthType +to_ref +get_as_ref +get_child_ref +update_child_ref +~ArrayParent +ArrayParent +Array +ArrayInteger +get_alloc +find_first +StringData +core/include/realm/string_data.hpp +__unwrap_iter +__unwrap_iter +__copy +copy +get_index_data +core/include/realm/index_string.hpp +to_str +find_first +~InvalidTransactionException +Realm/ObjectStore/shared_realm.hpp +InvalidTransactionException +get_ndx_in_parent +get_root_array +get_origin_row_index +where +move &> +add_notification_callback +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/list.cpp +filter +sort +delete_all +remove_all +get_unchecked +verify_in_transaction +verify_attached +is_valid +verify_valid_row +get_query +List +~List +Realm/ObjectStore/list.cpp +_ZN5realm5_impl12ListNotifierD1Ev +_ZN5realm5_impl12ListNotifierD0Ev +__destroy +destroy +move +swap +__construct_backward +forward &> +forward +__push_back_slow_path +move +__to_raw_pointer +forward +construct +__construct +move +swap +forward > > +operator== +move, std::__1::equal_to, true> > &> +move, std::__1::hash, true> > &> +move, void *> *>, std::__1::allocator, void *> > > &> +move, void *> *> > &> +forward, void *> *> > > +move, void *> *[], std::__1::__bucket_list_deallocator, void *> *> > > &> +add_changes +move, std::__1::default_delete > > &> +get_realm +get_origin_table +forward *> +do_prepare_handover +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/list_notifier.cpp +run +do_add_required_change_info +do_detach_from +do_attach_to +release_data +ListNotifier _ZN5realm26InvalidPrimaryKeyExceptionD1Ev _ZN5realm26InvalidPrimaryKeyExceptionD0Ev _ZNK5realm20ObjectStoreException4whatEv @@ -928,8 +1427,6 @@ construct __construct __construct_backward forward &> -reserve -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/initializer_list forward construct __construct @@ -945,39 +1442,56 @@ Realm/ObjectStore/object_store.hpp ~ObjectStoreException primary_key_property Realm/ObjectStore/object_schema.hpp +equal > +equal +safe_equal +is_null ~Property move +get_parent get_name -bind_ptr -BasicTableRef -get_link_target -get_column_type +null +core/include/realm/null.hpp core/include/realm/array_string.hpp -get_column_count -core/include/realm/spec.hpp get_column_name -get_public_column_count -has_parent move &> __to_raw_pointer __destroy destroy set_primary_key_property -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/object_schema.cpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/object_schema.cpp property_for_name ObjectSchema ~ObjectSchema Realm/ObjectStore/object_schema.cpp +_ZN5realm41PropertyRenameMissingNewPropertyExceptionD1Ev _ZN5realm23SchemaMismatchExceptionD1Ev _ZN5realm24MissingPropertyExceptionD1Ev _ZN5realm29MismatchedPropertiesExceptionD1Ev _ZN5realm26ChangedPrimaryKeyExceptionD1Ev _ZN5realm22ExtraPropertyExceptionD1Ev +_ZL20copy_property_valuesRKN5realm8PropertyES2_RNS_5TableE _ZN5realm29InvalidSchemaVersionExceptionD1Ev _ZN5realm33PropertyTypeNotIndexableExceptionD1Ev _ZN5realm33DuplicatePrimaryKeyValueExceptionD1Ev +_ZN5realm43PropertyRenameMissingNewObjectTypeExceptionD1Ev +_ZN5realm41PropertyRenameMissingOldPropertyExceptionD1Ev +_ZN5realm35PropertyRenameTypeMismatchExceptionD1Ev +_ZN5realm37PropertyRenameOldStillExistsExceptionD1Ev +_ZNK5realm8Property11type_stringEv _ZN5realm29ObjectSchemaPropertyExceptionC2ERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_8PropertyE _ZN5realm31ObjectSchemaValidationExceptionC2ERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE +_ZN5realm23PropertyRenameExceptionD1Ev +_ZN5realm23PropertyRenameExceptionD0Ev +_ZN5realm40PropertyRenameMissingObjectTypeExceptionD1Ev +_ZN5realm40PropertyRenameMissingObjectTypeExceptionD0Ev +_ZN5realm43PropertyRenameMissingOldObjectTypeExceptionD1Ev +_ZN5realm43PropertyRenameMissingOldObjectTypeExceptionD0Ev +_ZN5realm43PropertyRenameMissingNewObjectTypeExceptionD0Ev +_ZN5realm41PropertyRenameMissingOldPropertyExceptionD0Ev +_ZN5realm41PropertyRenameMissingNewPropertyExceptionD0Ev +_ZN5realm37PropertyRenameOldStillExistsExceptionD0Ev +_ZN5realm35PropertyRenameTypeMismatchExceptionD0Ev _ZN5realm29InvalidSchemaVersionExceptionD0Ev _ZN5realm33DuplicatePrimaryKeyValueExceptionD0Ev _ZN5realm25SchemaValidationExceptionD1Ev @@ -994,15 +1508,60 @@ _ZN5realm29MismatchedPropertiesExceptionD0Ev _ZN5realm26ChangedPrimaryKeyExceptionD0Ev _ZN5realm29DuplicatePrimaryKeysExceptionD1Ev _ZN5realm29DuplicatePrimaryKeysExceptionD0Ev +_ZN5realm38InvalidLinkingObjectsPropertyExceptionD1Ev +_ZN5realm38InvalidLinkingObjectsPropertyExceptionD0Ev +_ZN5realm10LogicErrorD1Ev _ZN5realm31ObjectSchemaValidationExceptionC2ERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9_ +_ZN5realm13TableViewBaseD2Ev +_ZN5realm10BpTreeBase7destroyEv +_ZN5realm10RowIndexesD1Ev +_ZN5realm10RowIndexesD0Ev +_ZNK5realm10RowIndexes10is_in_syncEv +_ZN5realm19ColumnBaseWithIndexD2Ev +_ZNK5realm19ColumnBaseWithIndex16has_search_indexEv +_ZNK5realm19ColumnBaseWithIndex16get_search_indexEv +_ZN5realm19ColumnBaseWithIndex16get_search_indexEv +_ZN5realm10ColumnBase39set_search_index_allow_duplicate_valuesEb +_ZN5realm6ColumnIxE18replace_root_arrayENSt3__110unique_ptrINS_5ArrayENS2_14default_deleteIS4_EEEE +_ZNK5realm10ColumnBase21get_subtable_accessorEm +_ZN5realm10ColumnBase25discard_subtable_accessorEm +_ZN5realm10ColumnBase19adj_acc_insert_rowsEmm +_ZN5realm10ColumnBase17adj_acc_erase_rowEm +_ZN5realm10ColumnBase17adj_acc_move_overEmm +_ZN5realm10ColumnBase17adj_acc_swap_rowsEmm +_ZN5realm10ColumnBase24adj_acc_clear_root_tableEv +_ZN5realm10ColumnBase4markEi +_ZN5realm10ColumnBase30bump_link_origin_table_versionEv +_ZN5realm10ColumnBase26do_discard_child_accessorsEv +_ZNK5realm6ColumnIxE7get_valEm +_ZNK5realm14ColumnTemplateIxE14compare_valuesEmm +_ZThn16_NK5realm6ColumnIxE7get_valEm +_ZN5realm5_impl17NullableOrNothingINS_12ArrayIntegerEE8set_nullERS2_m +_ZN5realm6BpTreeIxE14SetNullHandlerD1Ev +_ZN5realm6BpTreeIxE14SetNullHandler6updateENS_6MemRefEPNS_11ArrayParentEmm +_ZN5realm6BpTreeIxE14SetNullHandlerD0Ev +_ZN5realm6BpTreeIxE17LeafValueInserter11leaf_insertENS_6MemRefERNS_11ArrayParentEmRNS_9AllocatorEmRNS_5Array10TreeInsertIS2_EE +_ZN5realm6BpTreeIxE12EraseHandlerD1Ev +_ZN5realm6BpTreeIxE12EraseHandler15erase_leaf_elemENS_6MemRefEPNS_11ArrayParentEmm +_ZN5realm6BpTreeIxE12EraseHandler12destroy_leafENS_6MemRefE +_ZN5realm6BpTreeIxE12EraseHandler20replace_root_by_leafENS_6MemRefE +_ZN5realm6BpTreeIxE12EraseHandler26replace_root_by_empty_leafEv +_ZN5realm6BpTreeIxE12EraseHandlerD0Ev +_ZN5realm6BpTreeIxE13UpdateHandlerD1Ev +_ZN5realm6BpTreeIxE13UpdateHandler6updateENS_6MemRefEPNS_11ArrayParentEmm +_ZN5realm6BpTreeIxE13UpdateHandlerD0Ev +_ZN5realm6BpTreeIxE12SliceHandler10slice_leafENS_6MemRefEmmRNS_9AllocatorE _ZN5realm29ObjectSchemaPropertyExceptionD1Ev _ZN5realm29ObjectSchemaPropertyExceptionD0Ev +_ZN5realm4util8bind_ptrINS_5TableEED2Ev _ZN12_GLOBAL__N_1L21c_object_table_prefixE +_ZTSN5realm41PropertyRenameMissingNewPropertyExceptionE +_ZTSN5realm18MigrationExceptionE +_ZTIN5realm18MigrationExceptionE +_ZTIN5realm41PropertyRenameMissingNewPropertyExceptionE _ZTSN5realm23SchemaMismatchExceptionE _ZTIN5realm23SchemaMismatchExceptionE _ZTSN5realm29InvalidSchemaVersionExceptionE -_ZTSN5realm18MigrationExceptionE -_ZTIN5realm18MigrationExceptionE _ZTIN5realm29InvalidSchemaVersionExceptionE _ZTSN5realm33PropertyTypeNotIndexableExceptionE _ZTSN5realm29ObjectSchemaPropertyExceptionE @@ -1010,7 +1569,58 @@ _ZTIN5realm29ObjectSchemaPropertyExceptionE _ZTIN5realm33PropertyTypeNotIndexableExceptionE _ZTSN5realm33DuplicatePrimaryKeyValueExceptionE _ZTIN5realm33DuplicatePrimaryKeyValueExceptionE +_ZTSN5realm43PropertyRenameMissingNewObjectTypeExceptionE +_ZTSN5realm40PropertyRenameMissingObjectTypeExceptionE +_ZTIN5realm40PropertyRenameMissingObjectTypeExceptionE +_ZTIN5realm43PropertyRenameMissingNewObjectTypeExceptionE +_ZTSN5realm41PropertyRenameMissingOldPropertyExceptionE +_ZTSN5realm23PropertyRenameExceptionE +_ZTIN5realm23PropertyRenameExceptionE +_ZTIN5realm41PropertyRenameMissingOldPropertyExceptionE +_ZTSN5realm35PropertyRenameTypeMismatchExceptionE +_ZTIN5realm35PropertyRenameTypeMismatchExceptionE +_ZTSN5realm37PropertyRenameOldStillExistsExceptionE +_ZTIN5realm37PropertyRenameOldStillExistsExceptionE +.str.16 +.str.17 +.str.18 +.str.19 +.str.20 +.str.21 +.str.22 +.str.23 +.str.24 +.str.25 +.str.26 +.str.27 +.str.28 +.str.29 +.str.30 +.str.31 +.str.32 +.str.33 +.str.34 +.str.35 +.str.36 +.str.37 .str.38 +.str.39 +.str.40 +.str.41 +.str.42 +.str.43 +.str.44 +.str.45 +.str.46 +.str.47 +.str.48 +.str.49 +.str.50 +.str.51 +.str.52 +.str.53 +_ZTSN5realm43PropertyRenameMissingOldObjectTypeExceptionE +_ZTIN5realm43PropertyRenameMissingOldObjectTypeExceptionE _ZTSN5realm25SchemaValidationExceptionE _ZTIN5realm25SchemaValidationExceptionE _ZTSN5realm22ExtraPropertyExceptionE @@ -1021,21 +1631,14 @@ _ZTSN5realm27InvalidNullabilityExceptionE _ZTIN5realm27InvalidNullabilityExceptionE _ZTSN5realm26MissingObjectTypeExceptionE _ZTIN5realm26MissingObjectTypeExceptionE -_ZTSN5realm29MismatchedPropertiesExceptionE -_ZTIN5realm29MismatchedPropertiesExceptionE -_ZTSN5realm26ChangedPrimaryKeyExceptionE -_ZTIN5realm26ChangedPrimaryKeyExceptionE -_ZTSN5realm29DuplicatePrimaryKeysExceptionE -_ZTIN5realm29DuplicatePrimaryKeysExceptionE -.str.44 -.str.45 -.str.46 -.str.48 -.str.49 -.str.50 -.str.51 -.str.52 -.str.53 +_ZTSN5realm29MismatchedPropertiesExceptionE +_ZTIN5realm29MismatchedPropertiesExceptionE +_ZTSN5realm26ChangedPrimaryKeyExceptionE +_ZTIN5realm26ChangedPrimaryKeyExceptionE +_ZTSN5realm29DuplicatePrimaryKeysExceptionE +_ZTIN5realm29DuplicatePrimaryKeysExceptionE +_ZTSN5realm38InvalidLinkingObjectsPropertyExceptionE +_ZTIN5realm38InvalidLinkingObjectsPropertyExceptionE .str.54 .str.55 .str.56 @@ -1043,20 +1646,32 @@ _ZTIN5realm29DuplicatePrimaryKeysExceptionE .str.58 .str.59 .str.60 -.str.61 .str.62 .str.63 .str.64 .str.65 .str.66 .str.67 +_ZTSN5realm10RowIndexesE +_ZTIN5realm10RowIndexesE +_ZTSN5realm6ColumnIxEE +_ZTSN5realm14ColumnTemplateIxEE +_ZTSN5realm18ColumnTemplateBaseE +_ZTIN5realm18ColumnTemplateBaseE +_ZTIN5realm14ColumnTemplateIxEE +_ZTIN5realm6ColumnIxEE .str.68 .str.69 .str.70 +_ZTSN5realm6BpTreeIxE14SetNullHandlerE +_ZTSN5realm5Array13UpdateHandlerE +_ZTIN5realm5Array13UpdateHandlerE +_ZTIN5realm6BpTreeIxE14SetNullHandlerE .str.71 .str.72 .str.73 .str.74 +.str.75 .str.76 .str.77 .str.78 @@ -1064,13 +1679,41 @@ _ZTIN5realm29DuplicatePrimaryKeysExceptionE .str.80 .str.81 .str.82 +_ZTSN5realm6BpTreeIxE12EraseHandlerE +_ZTSN5realm5Array12EraseHandlerE +_ZTIN5realm5Array12EraseHandlerE +_ZTIN5realm6BpTreeIxE12EraseHandlerE .str.83 .str.84 .str.85 +_ZTSN5realm6BpTreeIxE13UpdateHandlerE +_ZTIN5realm6BpTreeIxE13UpdateHandlerE .str.86 .str.87 .str.88 +.str.89 +_ZTSN5realm6BpTreeIxE12SliceHandlerE +_ZTSN5realm10BpTreeBase12SliceHandlerE +_ZTIN5realm10BpTreeBase12SliceHandlerE +_ZTIN5realm6BpTreeIxE12SliceHandlerE +.str.90 +.str.91 +.str.92 +.str.93 +.str.94 +.str.95 +.str.96 +.str.97 +.str.98 +.str.99 +.str.100 +.str.101 +.str.102 +.str.103 +.str.104 +.str.105 switch.table +~InvalidLinkingObjectsPropertyException ~DuplicatePrimaryKeysException ~ChangedPrimaryKeyException ~MismatchedPropertiesException @@ -1083,12 +1726,20 @@ switch.table ~SchemaValidationException ~DuplicatePrimaryKeyValueException ~InvalidSchemaVersionException +~PropertyRenameTypeMismatchException +~PropertyRenameOldStillExistsException +~PropertyRenameMissingNewPropertyException +~PropertyRenameMissingOldPropertyException +~PropertyRenameMissingNewObjectTypeException +~PropertyRenameMissingOldObjectTypeException +~PropertyRenameMissingObjectTypeException +~PropertyRenameException operator== operator!= __construct_range_forward __construct_at_end forward > -append +operator== forward construct __construct @@ -1099,7 +1750,6 @@ swap move move_if_noexcept forward -forward construct __construct __construct_range_forward @@ -1110,7 +1760,6 @@ __construct __construct_backward forward &> __emplace_back_slow_path &> -forward &> forward construct &> __construct &> @@ -1119,6 +1768,20 @@ forward forward end operator!= +operator==, realm::Property> *, std::__1::pair, realm::Property> *> +operator!=, realm::Property> *> +forward, realm::Property> > > +move, realm::Property> > &> +move, realm::Property> *&> +swap, realm::Property> *> +move_if_noexcept, realm::Property> > +__construct_backward, realm::Property> *> +forward, realm::Property> > &> +__push_back_slow_path, realm::Property> > +move, realm::Property> &> +forward, realm::Property> > +construct, realm::Property>, std::__1::pair, realm::Property> > +__construct, realm::Property>, std::__1::pair, realm::Property> > operator== operator!= move @@ -1130,6 +1793,7 @@ forward construct __construct forward +forward, realm::Property> *> __emplace_back_slow_path forward construct @@ -1150,8 +1814,6 @@ forward construct __construct emplace_back -operator== -operator!= __wrap_iter __construct_forward __construct_at_end > @@ -1188,30 +1850,171 @@ construct emplace_back operator== -operator== -operator!= forward +operator== +operator!= +operator!= +compare +operator== > operator!=, std::__1::allocator > +append +move +swap +bind_ptr +move &> ~ObjectSchemaPropertyException string_for_property_type ObjectSchemaPropertyException +type_string ~MigrationException MigrationException is_empty do_get_table core/include/realm/group.hpp -get_table +is_in_sync +core/include/realm/views.hpp +~RowIndexes +compare_values +get_val +do_discard_child_accessors +operator= > +create_root_from_mem +create_root_from_ref +get_ref_from_parent +init_from_parent +refresh_accessor_tree +bump_link_origin_table_version +mark +adj_acc_clear_root_table +adj_acc_swap_rows +adj_acc_move_over +adj_acc_erase_row +adj_acc_insert_rows +discard_subtable_accessor +get_subtable_accessor +update_from_parent +set_ndx_in_parent +set_parent +~SliceHandler +slice_leaf +SliceHandler +~DeepArrayDestroyGuard +core/include/realm/impl/destroy_guard.hpp +is_read_only +write +DeepArrayDestroyGuard +clone_deep +move > &> +replace_root_array +get_mem +get_ref +set_search_index_allow_duplicate_values +get_search_index +insert +populate_search_index +move +StringIndex +create_search_index +has_search_index +~Column +swap_rows_without_updating_index +swap_rows +clear_and_destroy_children +get_type +clear_without_updating_index +~UpdateHandler +update +UpdateHandler +move_last_over +move_last_over_without_updating_index +update_ref +erase +move_last_row_over +~EraseHandler +replace_root_by_empty_leaf +forward > +forward +default_delete +forward > +unique_ptr > +move > &> +forward +move +replace_root_by_leaf +free_ +destroy_leaf +has_refs +erase_leaf_elem +EraseHandler +set_header_size +erase_without_updating_index +erase +erase_rows +insert +ensure_bptree_offsets +inspect_value, std::__1::allocator >, int> +inspect_all, std::__1::allocator >, int> +inspect_all, std::__1::allocator >, unsigned long, int> +terminate +bptree_insert::LeafValueInserter> +leaf_insert +get_is_inner_bptree_node_from_header +bptree_append::LeafValueInserter> +move +null_or_default_value +insert_rows +~SetNullHandler +SetNullHandler +set_null +update_parent +MemRef +translate +init_from_ref +erase +to_str +set +is_nullable +~ColumnBase +~StringIndex +~ColumnBaseWithIndex +~BpTreeBase +~BpTree +_ZThn16_NK5realm6ColumnIxE7is_nullEm +~RowBase +~BasicRow +__to_raw_pointer +__destroy +destroy +__to_raw_pointer +__destroy +destroy +~Sorter +get_header_from_data +destroy_deep +BasicTableRef +~TableViewBase +core/include/realm/table_view.hpp ~ConstTableView requires_index +get_table_name __to_raw_pointer __destroy destroy -get_table_name +~Schema +Realm/ObjectStore/schema.hpp +move, realm::Property>, std::__1::allocator, realm::Property> > > &> +__to_raw_pointer, realm::Property> > +__destroy, realm::Property> > +destroy, realm::Property> > __to_raw_pointer __destroy destroy -copy_property_values -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/object_store.cpp +pair &, realm::Property &, void> +forward +forward &> +make_pair &, realm::Property &> +copy_property_values +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/object_store.cpp copy_property_values copy_property_values copy_property_values @@ -1219,8 +2022,6 @@ copy_property_values copy_property_values copy_property_values copy_property_values -compare -operator== > property_can_be_migrated_to_nullable property_has_changed __to_raw_pointer @@ -1228,10 +2029,14 @@ __destroy destroy substr begins_with -remove add_empty_row bind get_or_add_table +fetch_add +~LogicError +core/include/realm/exceptions.hpp +LogicError +InvalidLinkingObjectsPropertyException DuplicatePrimaryKeysException InvalidPrimaryKeyException ChangedPrimaryKeyException @@ -1245,6 +2050,15 @@ SchemaMismatchException SchemaValidationException DuplicatePrimaryKeyValueException InvalidSchemaVersionException +PropertyRenameTypeMismatchException +PropertyRenameOldStillExistsException +PropertyRenameMissingNewPropertyException +PropertyRenameMissingOldPropertyException +PropertyRenameMissingNewObjectTypeException +PropertyRenameMissingOldObjectTypeException +PropertyRenameMissingObjectTypeException +PropertyRenameException +rename_property delete_data_for_object validate_primary_column_uniqueness update_indexes @@ -1252,9 +2066,11 @@ schema_from_group update_realm_with_schema needs_update is_schema_at_version +remove_properties create_tables verify_object_schema verify_schema +verify_missing_renamed_properties table_for_object_type_create_if_needed table_for_object_type table_name_for_object_type @@ -1269,28 +2085,22 @@ Realm/ObjectStore/object_store.cpp _ZNSt3__113unordered_mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_8weak_ptrIN5realm5_impl16RealmCoordinatorEEENS_4hashIS6_EENS_8equal_toIS6_EENS4_INS_4pairIKS6_SB_EEEEED1Ev _ZN5realm18RealmFileExceptionD1Ev _ZN5realm25MismatchedConfigExceptionD1Ev -_ZNK5realm5_impl15CachedRealmBase28is_cached_for_current_threadEv +_ZNK5realm5_impl21WeakRealmNotifierBase28is_cached_for_current_threadEv +_ZN12_GLOBAL__N_121IncrementalChangeInfoC1ERN5realm11SharedGroupERNSt3__16vectorINS4_10shared_ptrINS1_5_impl18CollectionNotifierEEENS4_9allocatorIS9_EEEE +_ZN12_GLOBAL__N_121IncrementalChangeInfo16advance_to_finalEN5realm11SharedGroup9VersionIDE _ZN5realm18RealmFileExceptionD0Ev _ZN5realm25MismatchedConfigExceptionD0Ev -_ZN5realm11SharedGroup15do_advance_readINS_5_impl23NullInstructionObserverEEEbPT_NS0_9VersionIDERNS2_7HistoryE -_ZN5realm5_impl20ChangesetInputStreamD1Ev -_ZN5realm5_impl20ChangesetInputStream10next_blockERPKcS4_ -_ZN5realm5_impl20ChangesetInputStreamD0Ev -_ZN5realm5_impl17TransactLogParser10read_mixedEPNS_5MixedE -_ZN5realm4util6BufferImE7reserveEmm -_ZN5realm5_impl17TransactLogParser14BadTransactLogD1Ev -_ZN5realm4util6BufferImE6resizeEmmmm -_ZN5realm5_impl17TransactLogParser14BadTransactLogD0Ev -_ZNK5realm5_impl17TransactLogParser14BadTransactLog4whatEv +_ZNSt3__16__sortIRZN12_GLOBAL__N_121IncrementalChangeInfoC1ERN5realm11SharedGroupERNS_6vectorINS_10shared_ptrINS3_5_impl18CollectionNotifierEEENS_9allocatorISA_EEEEEUlOT_OT0_E_PSA_EEvSH_SH_SF_ +_ZNSt3__17__sort3IRZN12_GLOBAL__N_121IncrementalChangeInfoC1ERN5realm11SharedGroupERNS_6vectorINS_10shared_ptrINS3_5_impl18CollectionNotifierEEENS_9allocatorISA_EEEEEUlOT_OT0_E_PSA_EEjSH_SH_SH_SF_ +_ZNSt3__17__sort4IRZN12_GLOBAL__N_121IncrementalChangeInfoC1ERN5realm11SharedGroupERNS_6vectorINS_10shared_ptrINS3_5_impl18CollectionNotifierEEENS_9allocatorISA_EEEEEUlOT_OT0_E_PSA_EEjSH_SH_SH_SH_SF_ +_ZNSt3__17__sort5IRZN12_GLOBAL__N_121IncrementalChangeInfoC1ERN5realm11SharedGroupERNS_6vectorINS_10shared_ptrINS3_5_impl18CollectionNotifierEEENS_9allocatorISA_EEEEEUlOT_OT0_E_PSA_EEjSH_SH_SH_SH_SH_SF_ +_ZNSt3__127__insertion_sort_incompleteIRZN12_GLOBAL__N_121IncrementalChangeInfoC1ERN5realm11SharedGroupERNS_6vectorINS_10shared_ptrINS3_5_impl18CollectionNotifierEEENS_9allocatorISA_EEEEEUlOT_OT0_E_PSA_EEbSH_SH_SF_ +_ZN5realm5_impl23CollectionChangeBuilderaSERKS1_ +_ZN5realm5_impl23CollectionChangeBuilderC2ERKS1_ _ZNSt3__120__shared_ptr_emplaceIN5realm5_impl16RealmCoordinatorENS_9allocatorIS3_EEED1Ev _ZNSt3__120__shared_ptr_emplaceIN5realm5_impl16RealmCoordinatorENS_9allocatorIS3_EEED0Ev _ZNSt3__120__shared_ptr_emplaceIN5realm5RealmENS_9allocatorIS2_EEED1Ev _ZNSt3__120__shared_ptr_emplaceIN5realm5RealmENS_9allocatorIS2_EEED0Ev -_ZNSt3__16__sortIRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEvT0_SA_T_ -_ZNSt3__17__sort3IRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEjT0_SA_SA_T_ -_ZNSt3__17__sort4IRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEjT0_SA_SA_SA_T_ -_ZNSt3__17__sort5IRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEjT0_SA_SA_SA_SA_T_ -_ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEbT0_SA_T_ _GLOBAL__sub_I_realm_coordinator.cpp _ZL19s_coordinator_mutex _ZL23s_coordinators_per_path @@ -1298,110 +2108,115 @@ _ZTSN5realm18RealmFileExceptionE _ZTIN5realm18RealmFileExceptionE _ZTSN5realm25MismatchedConfigExceptionE _ZTIN5realm25MismatchedConfigExceptionE -_ZTSN5realm5_impl20ChangesetInputStreamE -_ZTSN5realm5_impl17NoCopyInputStreamE -_ZTIN5realm5_impl17NoCopyInputStreamE -_ZTIN5realm5_impl20ChangesetInputStreamE -_ZTSN5realm5_impl17TransactLogParser14BadTransactLogE -_ZTIN5realm5_impl17TransactLogParser14BadTransactLogE _ZTSNSt3__120__shared_ptr_emplaceIN5realm5_impl16RealmCoordinatorENS_9allocatorIS3_EEEE _ZTINSt3__120__shared_ptr_emplaceIN5realm5_impl16RealmCoordinatorENS_9allocatorIS3_EEEE _ZTSNSt3__120__shared_ptr_emplaceIN5realm5RealmENS_9allocatorIS2_EEEE _ZTINSt3__120__shared_ptr_emplaceIN5realm5RealmENS_9allocatorIS2_EEEE -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp -__push_back_slow_path &> -forward &> -construct, const std::__1::shared_ptr &> -__construct, const std::__1::shared_ptr &> -__insertion_sort_incomplete<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -__insertion_sort_3<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -__sort5<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -__sort4<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -__sort3<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -swap -operator(), std::__1::shared_ptr > -__sort<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -sort *, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &> -sort, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59)> -__unwrap_iter, std::__1::allocator > > > > -__unwrap_iter *> > -__move *>, std::__1::back_insert_iterator, std::__1::allocator > > > > -move *>, std::__1::back_insert_iterator, std::__1::allocator > > > > -addressof, std::__1::allocator > > > -back_insert_iterator -back_inserter, std::__1::allocator > > > -operator== *, std::__1::shared_ptr *> -operator!= *> -forward &> -construct, std::__1::shared_ptr &> -__construct, std::__1::shared_ptr &> -__construct_range_forward *, std::__1::shared_ptr *> -__construct_at_end *> -forward > > +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp +__push_back_slow_path &> +forward &> +construct, const std::__1::shared_ptr &> +__construct, const std::__1::shared_ptr &> +lock +unlock +forward &> +construct, std::__1::shared_ptr &> +__construct, std::__1::shared_ptr &> +__construct_range_forward *, std::__1::shared_ptr *> +__construct_at_end *> +forward +inspect_all, std::__1::allocator >, unsigned long long> +inspect_value, std::__1::allocator >, unsigned long long> +inspect_all, std::__1::allocator >, unsigned long long, unsigned long long> +terminate +forward > > +move > &> +__unwrap_iter, std::__1::allocator > > > > +__unwrap_iter *> > +__move *>, std::__1::back_insert_iterator, std::__1::allocator > > > > +move *>, std::__1::back_insert_iterator, std::__1::allocator > > > > +addressof, std::__1::allocator > > > +back_inserter, std::__1::allocator > > > ~unique_lock -unique_lock -move *&> -swap *> -move_if_noexcept > -__construct_backward *> -forward > &> -__push_back_slow_path > -forward > -construct, std::__1::shared_ptr > -__construct, std::__1::shared_ptr > +operator== *, std::__1::shared_ptr *> +operator!= *> +move *&> +swap *> +move_if_noexcept > +__construct_backward *> +forward > &> +__push_back_slow_path > +forward > +construct, std::__1::shared_ptr > +__construct, std::__1::shared_ptr > +forward +inspect_all, std::__1::allocator >, realm::SharedGroup::TransactStage> +inspect_value, std::__1::allocator >, realm::SharedGroup::TransactStage> +inspect_all, std::__1::allocator >, realm::SharedGroup::TransactStage, realm::SharedGroup::TransactStage> +terminate +operator== *, std::__1::weak_ptr *> +operator!= *> +move *&> +swap *> +move &> +move_if_noexcept > +forward > +weak_ptr +construct, std::__1::weak_ptr > +__construct, std::__1::weak_ptr > +__construct_backward *> +forward > &> +__push_back_slow_path &> +forward &> +construct, const std::__1::weak_ptr &> +__construct, const std::__1::weak_ptr &> +forward *> operator== *, std::__1::weak_ptr *> operator!= *> -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__hash_table -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/unordered_map move *&> swap *> move_if_noexcept > __construct_backward *> forward > &> __push_back_slow_path > +move &> forward > construct, std::__1::weak_ptr > __construct, std::__1::weak_ptr > forward *> -pop_back -__hash_const_iterator forward, std::__1::weak_ptr >, void *> > > > move, std::__1::weak_ptr >, void *> > > &> -__hash_node_destructor expired ~enable_shared_from_this -forward *> +forward *> +~weak_ptr forward > -~Schema -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/schema.hpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/schema.hpp forward move Schema forward make_unique -move -swap -move_if_noexcept -forward -construct -__construct -__construct_backward -forward &> -forward +move +swap +move_if_noexcept +forward +construct +__construct +__construct_backward +forward &> +forward __emplace_back_slow_path &, bool &> -forward &> -construct &, bool &> -__construct &, bool &> +construct &, bool &> +__construct &, bool &> emplace_back &, bool &> +bad_weak_ptr shared_ptr +shared_from_this forward __enable_weak_this addressof > > allocator -__on_zero_shared_weak -~__shared_ptr_emplace -~__libcpp_compressed_pair_imp -~__compressed_pair get<0, realm::Realm::Config &&> forward get<0, std::__1::allocator &> @@ -1415,7 +2230,6 @@ tuple forward_as_tuple __tuple_leaf &, void> __tuple_impl<0, std::__1::allocator &, std::__1::allocator &> -tuple forward &> forward_as_tuple &> __shared_ptr_emplace @@ -1423,11 +2237,10 @@ allocator > > > > forward > *> move > > > &> -__allocator_destructor make_shared make_shared -operator== -operator!= +operator== +operator!= operator== operator!= equal, std::__1::__wrap_iter, std::__1::__equal_to > @@ -1449,7 +2262,6 @@ addressof forward > move &> -__shared_weak_count __shared_ptr_emplace allocator > > forward > > > > @@ -1461,28 +2273,11 @@ __destroy > destroy > __destroy > destroy > -forward -__hash_map_iterator pair, std::__1::weak_ptr >, void *> *>, bool> -forward forward, std::__1::weak_ptr >, void *> *> > pair, std::__1::weak_ptr >, void *> *>, bool &, void> -__hash_iterator -addressof, std::__1::weak_ptr >, void *> *> > -ceil -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/cmath -__is_hash_power2 -__clz -__next_hash_pow2 -reset, std::__1::weak_ptr >, void *> **> -__rehash -rehash -max_load_factor -key_eq -__constrain_hash -bucket_count -hash_function -__node_insert_unique +addressof, std::__1::weak_ptr >, void *> *> > +reset, std::__1::weak_ptr >, void *> **> addressof > construct> __construct> @@ -1493,194 +2288,170 @@ __construct, std::__1::basic_string > forward, std::__1::weak_ptr >, void *> > > > forward, std::__1::weak_ptr >, void *> *> move, std::__1::weak_ptr >, void *> > > &> -__hash_map_node_destructor -__construct_node_with_key -__unordered_map_equal -forward -__unordered_map_hasher -__hash_node_base -__bucket_list_deallocator forward, std::__1::weak_ptr >, void *> **> -__hash_table -unordered_map -Realm/ObjectStore/shared_realm.hpp -~ReadLockUnlockGuard -operator() -~Buffer -core/include/realm/util/buffer.hpp -~StringBuffer -core/include/realm/util/string_buffer.hpp -~TransactLogParser -core/include/realm/impl/transact_log.hpp -~ChangesetInputStream -core/include/realm/impl/input_stream.hpp -parse_complete -~BadTransactLog -BadTransactLog -optimize_table -move_group_level_table -rename_group_level_table -erase_group_level_table -insert_group_level_table -select_descriptor -move_column -rename_column -erase_link_column -erase_column -insert_link_column -insert_column -is_valid_data_type -set_link_type -is_valid_link_type -remove_search_index -add_search_index -select_link_list -link_list_clear -link_list_nullify -link_list_erase -link_list_swap -link_list_move -link_list_insert -link_list_set -clear_table -select_table -operator() -reset -unique_ptr -less -core/include/realm/util/safe_int_ops.hpp -int_less_than -int_greater_than -int_multiply_with_overflow_detect -min -sub -int_subtract_with_overflow_detect -int_greater_than_or_equal -int_shift_left_with_overflow_detect -read_int -change_link_targets -insert_empty_rows -erase_substring -insert_substring -nullify_link -set_link -~Mixed -core/include/realm/mixed.hpp -set_mixed -Mixed -set_binary -set_string -get_datetime -core/include/realm/datetime.hpp -set_datetime -set_double -set_float -set_bool -set_int -read_mixed -set_table -DateTime -set_date_time -read_binary -set_string_unique -BinaryData -core/include/realm/binary_data.hpp -read_buffer -read_string -read_double -read_bytes -read_float -cast -cast_to_unsigned -int_subtract_with_overflow_detect -int_greater_than_or_equal -int_shift_left_with_overflow_detect -read_int -set_int_unique -int_subtract_with_overflow_detect -int_greater_than_or_equal -int_shift_left_with_overflow_detect -read_int -cast -cast_to_unsigned -int_subtract_with_overflow_detect -cast -cast_to_unsigned -int_greater_than_or_equal -int_shift_left_with_overflow_detect -read_int -read_char -parse_one -next_input_buffer -has_next -parse -next_block -~NoCopyInputStream -NoCopyInputStream -ChangesetInputStream -Buffer -StringBuffer -forward -unique_ptr -TransactLogParser -ReadLockUnlockGuard -ReadLockInfo -do_advance_read -get_replication -core/include/realm/alloc_slab.hpp -get_history -advance_read -advance_read -core/include/realm/lang_bind_helper.hpp -move -swap -operator(), std::__1::allocator > > > -move &> -version +weak_ptr +~IncrementalChangeInfo +__tuple_leaf +__tuple_impl<0, 1, 2, const unsigned long &, const unsigned long &, const unsigned long &, const unsigned long &, const unsigned long &, const unsigned long &> +tie +operator() +get<2, const unsigned long &, const unsigned long &, const unsigned long &> +get<1, const unsigned long &, const unsigned long &, const unsigned long &> +get<0, const unsigned long &, const unsigned long &, const unsigned long &> +operator(), std::__1::tuple > +operator== +__push_back_slow_path +forward +construct +__construct +move +swap +move_if_noexcept +forward +construct +__construct +__construct_backward +forward &> +__hash_map_const_iterator +addressof > +forward &> +__hash_value_type &> +construct, const std::__1::pair &> +__construct, const std::__1::pair &> +__construct_node &> +__insert_unique &> +insert, void *> *> > > +forward, std::__1::hash, true> > +forward, void *> > > +move, void *> *> > &> +forward, void *> *> > +forward +construct +__construct +__construct_range_forward +__construct_at_end +__unwrap_iter +forward &> +__hash_value_type +construct, const std::__1::__hash_value_type &> +__construct, const std::__1::__hash_value_type &> +__construct_node &> +__insert_multi &> +__node_insert_multi +operator= &, void> +__detach +__assign_multi, void *> *> > +copy +__advance +advance +__distance +distance +assign +__copy +copy +__advance +advance +__distance +distance +assign +advance_to_final +current +move > &> +__distance >, true, 0> > +distance >, true, 0> > +__construct_at_end >, true, 0> > +__push_back_slow_path +advance_incremental +TransactionChangeInfo +construct +__construct +__to_raw_pointer +__destroy +destroy +~TransactionChangeInfo +__destroy +destroy +move +swap +move +move_if_noexcept +forward +forward > +forward +move &> +forward > +move &> +construct +__construct +__construct_backward +__to_raw_pointer +forward &> +operator() &, std::__1::shared_ptr &> +__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp:329:20) &, std::__1::shared_ptr *> +__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp:329:20) &, std::__1::shared_ptr *> +__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp:329:20) &, std::__1::shared_ptr *> +__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp:329:20) &, std::__1::shared_ptr *> +__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp:329:20) &, std::__1::shared_ptr *> +swap +__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp:329:20) &, std::__1::shared_ptr *> +sort *, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp:329:20) &> +sort, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp:329:20)> +forward +IncrementalChangeInfo +move, std::__1::allocator > > &> +VersionID +operator(), std::__1::allocator > > > operator< +get_transact_stage +__to_raw_pointer > +get, std::__1::weak_ptr > +get<1, const std::__1::basic_string, std::__1::weak_ptr > +forward &> +get<0, const std::__1::basic_string, std::__1::weak_ptr > +forward &> +pair, std::__1::weak_ptr > &, void> __to_raw_pointer > __destroy > destroy > +move is_for_realm +Realm/ObjectStore/impl/weak_realm_notifier_base.hpp __libcpp_relaxed_load use_count -__to_raw_pointer -__destroy -destroy -__to_raw_pointer > -__destroy > -destroy > +__to_raw_pointer +__destroy +destroy +__to_raw_pointer > +__destroy > +destroy > forward forward forward enable_shared_from_this move realm +__thread_id +get_id is_cached_for_current_thread ~MismatchedConfigException MismatchedConfigException ~RealmFileException RealmFileException code -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/system_error +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/system_error addressof, std::__1::weak_ptr > > -~__hash_value_type __destroy, std::__1::weak_ptr > > destroy, std::__1::weak_ptr > > -__node_alloc -~__hash_table -~unordered_map process_available_async advance_to_ready -advance_helper_shared_group_to_latest -move_new_queries_to_main open_helper_shared_group -run_async_queries +run_async_notifiers on_change -clean_up_dead_queries -register_query +clean_up_dead_notifiers +register_notifier pin_version send_commit_notifications +clear_all_caches clear_cache unregister_realm ~RealmCoordinator @@ -1690,88 +2461,187 @@ get_schema get_existing_coordinator __cxx_global_var_init.1 __cxx_global_var_init -_ZN5realm27InvalidTransactionExceptionD1Ev +_ZN5realm9TableViewD1Ev +_ZN5realm13TableViewBaseC2Ev +_ZN5realm9TableViewD0Ev +_ZNK5realm13TableViewBase15get_column_baseEm +_ZNK5realm13TableViewBase4sizeEv +_ZNK5realm9TableView5cloneEv +_ZNK5realm9TableView18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_18ConstSourcePayloadE +_ZN5realm9TableView18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_20MutableSourcePayloadE +_ZN5realm9TableView23apply_and_consume_patchERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEERNS_5GroupE +_ZN5realm6ColumnIxE13CreateHandler11create_leafEm +_ZN5realm18QueryHandoverPatchD1Ev _ZN5realm18QueryHandoverPatchD2Ev _ZN5realm13TableViewBaseC2EOS0_ -_ZN5realm27InvalidTransactionExceptionD0Ev +_ZN5realm8BasicRowIKNS_5TableEEC2ERKS3_ +_ZN5realm13TableViewBaseaSEOS0_ _ZN5realm13TableViewBaseC2ERKS0_ -_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl10AsyncQueryENS_9allocatorIS3_EEED1Ev -_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl10AsyncQueryENS_9allocatorIS3_EEED0Ev +_ZN5realm4util17BadOptionalAccessD1Ev +_ZN5realm4util17BadOptionalAccessD0Ev +_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl15ResultsNotifierENS_9allocatorIS3_EEED1Ev +_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl15ResultsNotifierENS_9allocatorIS3_EEED0Ev +_ZN5realm5_impl15ResultsNotifierD2Ev +_ZNSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EED1Ev +_ZNSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EED0Ev +_ZNKSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EE7__cloneEv +_ZNKSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EE7__cloneEPNS0_6__baseISC_EE +_ZNSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EE7destroyEv +_ZNSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EE18destroy_deallocateEv +_ZNSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EEclEOSB_OS5_ +_ZNKSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EE6targetERKSt9type_info +_ZNKSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EE11target_typeEv _ZTSN5realm7Results20InvalidatedExceptionE _ZTIN5realm7Results20InvalidatedExceptionE -_ZTSN5realm27InvalidTransactionExceptionE -_ZTIN5realm27InvalidTransactionExceptionE _ZTSN5realm7Results25OutOfBoundsIndexExceptionE _ZTIN5realm7Results25OutOfBoundsIndexExceptionE _ZTSN5realm7Results26DetatchedAccessorExceptionE _ZTIN5realm7Results26DetatchedAccessorExceptionE _ZTSN5realm7Results23IncorrectTableExceptionE _ZTIN5realm7Results23IncorrectTableExceptionE -_ZTSNSt3__120__shared_ptr_emplaceIN5realm5_impl10AsyncQueryENS_9allocatorIS3_EEEE -_ZTINSt3__120__shared_ptr_emplaceIN5realm5_impl10AsyncQueryENS_9allocatorIS3_EEEE +_ZTSN5realm9TableViewE +_ZTIN5realm9TableViewE +_ZTSN5realm6ColumnIxE13CreateHandlerE +_ZTSN5realm10ColumnBase13CreateHandlerE +_ZTIN5realm10ColumnBase13CreateHandlerE +_ZTIN5realm6ColumnIxE13CreateHandlerE +_ZTSN5realm4util17BadOptionalAccessE +_ZTIN5realm4util17BadOptionalAccessE +_ZTSNSt3__120__shared_ptr_emplaceIN5realm5_impl15ResultsNotifierENS_9allocatorIS3_EEEE +_ZTINSt3__120__shared_ptr_emplaceIN5realm5_impl15ResultsNotifierENS_9allocatorIS3_EEEE _ZTSN5realm7Results30UnsupportedColumnTypeExceptionE _ZTIN5realm7Results30UnsupportedColumnTypeExceptionE -atomic_store -atomic_exchange -atomic_load +_ZTVNSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EEE +_ZTSNSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EEE +_ZTSNSt3__110__function6__baseIFvN5realm19CollectionChangeSetESt13exception_ptrEEE +_ZTINSt3__110__function6__baseIFvN5realm19CollectionChangeSetESt13exception_ptrEEE +_ZTINSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EEE +_ZTSZN5realm7Results5asyncENSt3__18functionIFvSt13exception_ptrEEEE4$_16 +_ZTIZN5realm7Results5asyncENSt3__18functionIFvSt13exception_ptrEEEE4$_16 +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp +__invoke<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &, realm::CollectionChangeSet, std::exception_ptr> +__call<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &, realm::CollectionChangeSet, std::exception_ptr> +get<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> &> +__libcpp_compressed_pair_imp &, 0, 0> +move &> &> +__compressed_pair &> +__tuple_leaf &, void> +__tuple_impl<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> &, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> &> +forward &> +forward_as_tuple &> +get<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &> +__libcpp_compressed_pair_imp &&, 0, 0> +move &> +__compressed_pair &&> +__tuple_leaf +__tuple_impl<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &> +forward +forward_as_tuple +allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> +_ZZN5realm7Results5asyncENSt3__18functionIFvSt13exception_ptrEEEEN4$_16C2EOS6_ +_ZZN5realm7Results5asyncENSt3__18functionIFvSt13exception_ptrEEEEN4$_16C1EOS6_ +get<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &&> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &&> +get<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> &&> +forward &&> +__libcpp_compressed_pair_imp<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> &&, 0, 0> +move &&> &> +move &> +__compressed_pair<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> &&> +move &> +__tuple_leaf, void> +__tuple_impl<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> > +tuple , false> +forward > +forward_as_tuple > +__tuple_leaf<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17), void> +__tuple_impl<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &&, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> +tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17), false> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> +forward_as_tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> +allocator, void (realm::CollectionChangeSet, std::exception_ptr)> > +move<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &> +forward, void (realm::CollectionChangeSet, std::exception_ptr)> > > > +forward, void (realm::CollectionChangeSet, std::exception_ptr)> *> +move, void (realm::CollectionChangeSet, std::exception_ptr)> > > &> +__not_null<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> +function<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> +forward > +default_delete +forward > +unique_ptr > +forward +move +forward +make_unique operator() -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp operator() -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:281:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:282:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:283:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:284:22)> -aggregate<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:281:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:282:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:283:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:284:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:272:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:273:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:274:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:275:22)> -aggregate<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:272:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:273:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:274:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:275:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:263:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:264:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:265:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:266:22)> -aggregate<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:263:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:264:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:265:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:266:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:254:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:255:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:256:22)> -OptionalStorage -core/include/realm/util/optional.hpp +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:343:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:344:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:345:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:346:22)> +aggregate<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:343:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:344:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:345:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:346:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:334:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:335:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:336:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:337:22)> +aggregate<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:334:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:335:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:336:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:337:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:325:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:326:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:327:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:328:22)> +aggregate<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:325:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:326:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:327:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:328:22)> +Mixed +core/include/realm/mixed.hpp +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:316:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:317:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:318:22)> +~Mixed constexpr_move -Optional -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:257:22)> -aggregate<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:254:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:255:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:256:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:257:22)> -impl_get_row_ndx -core/include/realm/row.hpp -row_ndx -get_index -table -impl_get_table +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:319:22)> +aggregate<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:316:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:317:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:318:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:319:22)> +shared_ptr +move +swap +move &> forward -__enable_weak_this -addressof > > -allocator +addressof > > +allocator +~ResultsNotifier +Realm/ObjectStore/impl/results_notifier.hpp get<0, realm::Results &> -get<0, std::__1::allocator &> -__libcpp_compressed_pair_imp &, realm::Results &, 0, 0> +get<0, std::__1::allocator &> +__libcpp_compressed_pair_imp &, realm::Results &, 0, 0> move &> -move &> &> -__compressed_pair &, realm::Results &> +move &> &> +__compressed_pair &, realm::Results &> __tuple_leaf __tuple_impl<0, realm::Results &, realm::Results &> forward_as_tuple -__tuple_leaf &, void> -__tuple_impl<0, std::__1::allocator &, std::__1::allocator &> -forward &> -forward_as_tuple &> +__tuple_leaf &, void> +__tuple_impl<0, std::__1::allocator &, std::__1::allocator &> +forward &> +forward_as_tuple &> __shared_ptr_emplace -allocator > > -forward > > > > -forward > *> -move > > > &> +allocator > > +forward > > > > +forward > *> +move > > > &> make_shared -make_shared +make_shared +~BadOptionalAccess +BadOptionalAccess +value +__construct_range_forward +__construct_at_end +produces_results_in_table_order +core/include/realm/query.hpp +~ +_ZZN5realm7Results5asyncENSt3__18functionIFvSt13exception_ptrEEEEN4$_16C2ERKS6_ +_ZZN5realm7Results5asyncENSt3__18functionIFvSt13exception_ptrEEEEN4$_16C1ERKS6_ config +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.hpp get_hasrefs_from_header ~DeepArrayRefDestroyGuard __destroy @@ -1791,48 +2661,144 @@ __construct_range_forward __construct_at_end __construct_range_forward __construct_at_end +Sorter move move > &> -where -get_query -find_first -find_first +TableViewBase +TableView find_by_source_ndx -front +move +swap +move &> +move_assign forward > constexpr_move &> some > some, realm::BasicRowExpr > make_optional > -BasicRowExpr -~InvalidTransactionException -InvalidTransactionException forward > +move &> forward > +move &> +move move > &> +move &> +RowBase +BasicRow +BpTreeBase +BpTree +ColumnTemplateBase +ColumnTemplate forward > +ColumnBase +ColumnBaseWithIndex +Column +RowIndexes move &> -move -core/include/realm/query.hpp -AsyncQueryCancelationToken -~AsyncQueryCancelationToken +move +~TableView +apply_patch +apply_and_consume_patch +clone_for_handover +forward +forward > *> +forward +QueryHandoverPatch +forward +forward +TableViewHandoverPatch +~RowBaseHandoverPatch +__to_raw_pointer > > +__destroy > > +destroy > > +~QueryHandoverPatch +~TableViewHandoverPatch +forward +move +clone +get_column_base +~CreateHandler +create +create_array +create_leaf +CreateHandler +forward +forward +forward UnsupportedColumnTypeException set_table_view +is_in_table_order async -filter -sort +prepare_async get_object_type get_tableview average sum +min index_of update_tableview +update_linkview last validate_write validate_read ~Results Results Realm/ObjectStore/results.cpp +_ZN5realm5_impl15ResultsNotifierD1Ev +_ZN5realm5_impl15ResultsNotifierD0Ev +_ZNKSt3__114default_deleteIN5realm22TableViewHandoverPatchEEclEPS2_ +_ZN5realm11SharedGroup8HandoverINS_9TableViewEED2Ev +_ZNK5realm4util8OptionalIyE5valueEv +_ZN5realm11SharedGroup10BadVersionD1Ev +_ZN5realm11SharedGroup10BadVersionD0Ev +_ZTSN5realm11SharedGroup10BadVersionE +_ZTIN5realm11SharedGroup10BadVersionE +forward > +move > &> +import_from_handover +move > &> +~BadVersion +BadVersion +import_from_handover +forward > > +move *&> +Handover +export_for_handover +operator() +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/results_notifier.cpp +__advance > +advance > +__distance > +distance > +__lower_bound<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/results_notifier.cpp:112:39) &, std::__1::__wrap_iter, unsigned long> +lower_bound, unsigned long, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/results_notifier.cpp:112:39)> +operator== +operator!= +__push_back_slow_path +construct +__construct +__construct_backward +forward &> +operator== +forward > > +core/include/realm/util/thread.hpp +~LockGuard +move *&> +forward +LockGuard +export_for_handover +move, std::__1::default_delete > > &> +move, std::__1::default_delete > > &> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.hpp +Realm/ObjectStore/collection_notifications.hpp +wants_background_updates +forward *> +forward +forward *> +get_sort +calculate_changes +need_to_run +ResultsNotifier ___Z25RLMReplaceClassNameMethodP10objc_classP8NSString_block_invoke __copy_helper_block_ __destroy_helper_block_ @@ -1846,6 +2812,7 @@ _ZL27RLMAccessorStandaloneGetterP11RLMProperty15RLMAccessorCode _ZL27RLMAccessorStandaloneSetterP11RLMProperty15RLMAccessorCode _ZL14RLMCoerceToNilIU8__strongP11objc_objectET_S3_ _ZL19accessorCodeForTypec15RLMPropertyType +_ZL20RLMGetLinkingObjectsP13RLMObjectBaseP11RLMProperty ___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke ___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_2 ___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_3 @@ -1858,101 +2825,108 @@ ___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_9 ___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_10 ___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_11 ___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_12 -__copy_helper_block_.127 -__destroy_helper_block_.128 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke.131 -__copy_helper_block_.132 -__destroy_helper_block_.133 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke.136 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_2.139 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_3.143 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_4.147 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_5.151 +__copy_helper_block_.126 +__destroy_helper_block_.127 +___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke.130 +__copy_helper_block_.131 +__destroy_helper_block_.132 +___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke.137 +___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_2.141 +___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_3.145 +___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_4.149 +___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_5.153 +__copy_helper_block_.154 +__destroy_helper_block_.155 ___ZL13RLMMakeSetterIcxEPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIcxEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.159 -__destroy_helper_block_.160 +__copy_helper_block_.162 +__destroy_helper_block_.163 ___ZL13RLMMakeSetterIsxEPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIsxEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.173 -__destroy_helper_block_.174 +__copy_helper_block_.176 +__destroy_helper_block_.177 ___ZL13RLMMakeSetterIixEPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIixEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.179 -__destroy_helper_block_.180 +__copy_helper_block_.182 +__destroy_helper_block_.183 ___ZL13RLMMakeSetterIlxEPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIlxEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.185 -__destroy_helper_block_.186 +__copy_helper_block_.188 +__destroy_helper_block_.189 ___ZL13RLMMakeSetterIxxEPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIxxEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.190 -__destroy_helper_block_.191 +__copy_helper_block_.193 +__destroy_helper_block_.194 ___ZL13RLMMakeSetterIffEPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIffEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.196 -__destroy_helper_block_.197 +__copy_helper_block_.199 +__destroy_helper_block_.200 ___ZL13RLMMakeSetterIddEPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIddEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.202 -__destroy_helper_block_.203 +__copy_helper_block_.205 +__destroy_helper_block_.206 ___ZL13RLMMakeSetterIbbEPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIbbEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.208 -__destroy_helper_block_.209 +__copy_helper_block_.211 +__destroy_helper_block_.212 ___ZL13RLMMakeSetterIU8__strongP8NSStringS2_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongP8NSStringS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.214 -__destroy_helper_block_.215 +__copy_helper_block_.217 +__destroy_helper_block_.218 _ZZZL13RLMMakeSetterIU8__strongP8NSStringS2_EPFvvEP11RLMPropertyEUb1_ENKUlvE_clEv ___ZL13RLMMakeSetterIU8__strongP6NSDateS2_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongP6NSDateS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.222 -__destroy_helper_block_.223 +__copy_helper_block_.225 +__destroy_helper_block_.226 +_ZL11RLMSetValueP13RLMObjectBasemP6NSDate +_ZN5realm9TimestampC2Exi ___ZL13RLMMakeSetterIU8__strongP6NSDataS2_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongP6NSDataS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.230 -__destroy_helper_block_.231 +__copy_helper_block_.243 +__destroy_helper_block_.244 _ZZZL13RLMMakeSetterIU8__strongP6NSDataS2_EPFvvEP11RLMPropertyEUb1_ENKUlvE_clEv ___ZL13RLMMakeSetterIU8__strongP13RLMObjectBaseS2_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongP13RLMObjectBaseS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.240 -__destroy_helper_block_.241 +__copy_helper_block_.253 +__destroy_helper_block_.254 _ZL11RLMSetValueP13RLMObjectBasemS0_ _ZL26RLMGetLinkedObjectForValueP8RLMRealmP8NSStringP11objc_objectm ___ZL13RLMMakeSetterIU8__strongP8RLMArrayS2_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongP8RLMArrayS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.258 -__destroy_helper_block_.259 +__copy_helper_block_.276 +__destroy_helper_block_.277 _ZL11RLMSetValueP13RLMObjectBasemPU28objcproto17NSFastEnumeration11objc_object ___ZL13RLMMakeSetterIU8__strongP11objc_objectS2_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongP11objc_objectS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.268 -__destroy_helper_block_.269 +__copy_helper_block_.284 +__destroy_helper_block_.285 +_ZZZL13RLMMakeSetterIU8__strongP11objc_objectS2_EPFvvEP11RLMPropertyEUb1_ENKUlvE_clEv _ZL11RLMSetValueP13RLMObjectBasemP11objc_object ___ZL13RLMMakeSetterIU8__strongPU16objcproto6RLMInt8NSNumberS3_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongPU16objcproto6RLMInt8NSNumberS3_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.289 -__destroy_helper_block_.290 +__copy_helper_block_.292 +__destroy_helper_block_.293 ___ZL13RLMMakeSetterIU8__strongPU18objcproto8RLMFloat8NSNumberS3_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongPU18objcproto8RLMFloat8NSNumberS3_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.295 -__destroy_helper_block_.296 +__copy_helper_block_.300 +__destroy_helper_block_.301 ___ZL13RLMMakeSetterIU8__strongPU19objcproto9RLMDouble8NSNumberS3_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongPU19objcproto9RLMDouble8NSNumberS3_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.301 -__destroy_helper_block_.302 +__copy_helper_block_.308 +__destroy_helper_block_.309 ___ZL13RLMMakeSetterIU8__strongPU17objcproto7RLMBool8NSNumberS3_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongPU17objcproto7RLMBool8NSNumberS3_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.307 -__destroy_helper_block_.308 +__copy_helper_block_.316 +__destroy_helper_block_.317 ___ZL27RLMAccessorStandaloneGetterP11RLMProperty15RLMAccessorCode_block_invoke _ZL11RLMSuperSetP13RLMObjectBaseP8NSStringP11objc_object -__copy_helper_block_.315 -__destroy_helper_block_.316 +__copy_helper_block_.326 +__destroy_helper_block_.327 +___ZL27RLMAccessorStandaloneGetterP11RLMProperty15RLMAccessorCode_block_invoke.329 ___ZL27RLMAccessorStandaloneSetterP11RLMProperty15RLMAccessorCode_block_invoke -__copy_helper_block_.322 -__destroy_helper_block_.323 +__copy_helper_block_.340 +__destroy_helper_block_.341 +_ZN5realm7ResultsC2EOS0_ _ZZ13RLMDynamicSetENK3$_0clEv _GLOBAL__sub_I_RLMAccessor.mm __block_descriptor_tmp @@ -2007,246 +2981,293 @@ OBJC_SELECTOR_REFERENCES_.50 OBJC_METH_VAR_NAME_.51 OBJC_SELECTOR_REFERENCES_.52 _unnamed_cfstring_.54 -OBJC_CLASSLIST_REFERENCES_$_.55 -OBJC_METH_VAR_NAME_.56 -OBJC_SELECTOR_REFERENCES_.57 -_unnamed_cfstring_.59 -OBJC_METH_VAR_NAME_.60 -OBJC_SELECTOR_REFERENCES_.61 -OBJC_METH_VAR_NAME_.62 -OBJC_SELECTOR_REFERENCES_.63 -OBJC_METH_VAR_NAME_.64 -OBJC_SELECTOR_REFERENCES_.65 -OBJC_METH_VAR_NAME_.66 -OBJC_SELECTOR_REFERENCES_.67 -OBJC_METH_VAR_NAME_.68 -OBJC_SELECTOR_REFERENCES_.69 -OBJC_METH_VAR_NAME_.70 -OBJC_SELECTOR_REFERENCES_.71 -OBJC_METH_VAR_NAME_.72 -OBJC_SELECTOR_REFERENCES_.73 -.str.75 -_unnamed_cfstring_.83 -.str.89 -.str.90 -.str.91 -.str.92 -OBJC_METH_VAR_NAME_.93 -OBJC_SELECTOR_REFERENCES_.94 -.str.95 -OBJC_CLASS_NAME_.96 -__block_descriptor_tmp.97 -.str.98 -OBJC_CLASS_NAME_.99 -__block_descriptor_tmp.100 -.str.101 -OBJC_CLASS_NAME_.102 -__block_descriptor_tmp.103 -.str.104 -OBJC_CLASS_NAME_.105 -__block_descriptor_tmp.106 -OBJC_CLASS_NAME_.107 -__block_descriptor_tmp.108 -.str.109 -OBJC_CLASS_NAME_.110 -__block_descriptor_tmp.111 -.str.112 -OBJC_CLASS_NAME_.113 -__block_descriptor_tmp.114 -.str.115 -OBJC_CLASS_NAME_.116 -__block_descriptor_tmp.117 -.str.118 -OBJC_CLASS_NAME_.119 -__block_descriptor_tmp.120 -.str.121 -OBJC_CLASS_NAME_.122 -__block_descriptor_tmp.123 -.str.124 -OBJC_CLASS_NAME_.125 -__block_descriptor_tmp.126 -.str.129 -__block_descriptor_tmp.130 -.str.134 -__block_descriptor_tmp.135 -OBJC_CLASS_NAME_.137 -__block_descriptor_tmp.138 -.str.140 -OBJC_CLASS_NAME_.141 -__block_descriptor_tmp.142 -.str.144 -OBJC_CLASS_NAME_.145 -__block_descriptor_tmp.146 -.str.148 -OBJC_CLASS_NAME_.149 -__block_descriptor_tmp.150 -.str.152 -OBJC_CLASS_NAME_.153 -__block_descriptor_tmp.154 -.str.155 -_unnamed_cfstring_.156 -.str.157 -__block_descriptor_tmp.158 -__block_literal_global +_unnamed_cfstring_.56 +OBJC_METH_VAR_NAME_.57 +OBJC_SELECTOR_REFERENCES_.58 +OBJC_METH_VAR_NAME_.59 +OBJC_SELECTOR_REFERENCES_.60 +OBJC_METH_VAR_NAME_.61 +OBJC_SELECTOR_REFERENCES_.62 +OBJC_METH_VAR_NAME_.63 +OBJC_SELECTOR_REFERENCES_.64 +OBJC_METH_VAR_NAME_.65 +OBJC_SELECTOR_REFERENCES_.66 +OBJC_METH_VAR_NAME_.67 +OBJC_SELECTOR_REFERENCES_.68 +OBJC_METH_VAR_NAME_.69 +OBJC_SELECTOR_REFERENCES_.70 +OBJC_METH_VAR_NAME_.71 +OBJC_SELECTOR_REFERENCES_.72 +_unnamed_cfstring_.82 +OBJC_METH_VAR_NAME_.92 +OBJC_SELECTOR_REFERENCES_.93 +OBJC_CLASS_NAME_.95 +__block_descriptor_tmp.96 +OBJC_CLASS_NAME_.98 +__block_descriptor_tmp.99 +OBJC_CLASS_NAME_.101 +__block_descriptor_tmp.102 +OBJC_CLASS_NAME_.104 +__block_descriptor_tmp.105 +OBJC_CLASS_NAME_.106 +__block_descriptor_tmp.107 +.str.108 +OBJC_CLASS_NAME_.109 +__block_descriptor_tmp.110 +.str.111 +OBJC_CLASS_NAME_.112 +__block_descriptor_tmp.113 +.str.114 +OBJC_CLASS_NAME_.115 +__block_descriptor_tmp.116 +.str.117 +OBJC_CLASS_NAME_.118 +__block_descriptor_tmp.119 +.str.120 +OBJC_CLASS_NAME_.121 +__block_descriptor_tmp.122 +.str.123 +OBJC_CLASS_NAME_.124 +__block_descriptor_tmp.125 +.str.128 +__block_descriptor_tmp.129 +.str.133 +__block_descriptor_tmp.134 +.str.135 +_unnamed_cfstring_.136 +.str.138 +OBJC_CLASS_NAME_.139 +__block_descriptor_tmp.140 +.str.142 +OBJC_CLASS_NAME_.143 +__block_descriptor_tmp.144 +.str.146 +OBJC_CLASS_NAME_.147 +__block_descriptor_tmp.148 +.str.150 +OBJC_CLASS_NAME_.151 +__block_descriptor_tmp.152 +.str.156 +__block_descriptor_tmp.157 +.str.158 +_unnamed_cfstring_.159 +.str.160 __block_descriptor_tmp.161 -OBJC_METH_VAR_NAME_.162 -OBJC_SELECTOR_REFERENCES_.163 -.str.164 -_unnamed_cfstring_.165 -.str.166 -_unnamed_cfstring_.167 -OBJC_METH_VAR_NAME_.168 -OBJC_SELECTOR_REFERENCES_.169 -.str.170 -__block_descriptor_tmp.171 -__block_literal_global.172 -__block_descriptor_tmp.175 -.str.176 -__block_descriptor_tmp.177 -__block_literal_global.178 -__block_descriptor_tmp.181 -.str.182 -__block_descriptor_tmp.183 -__block_literal_global.184 -__block_descriptor_tmp.187 -__block_descriptor_tmp.188 -__block_literal_global.189 -__block_descriptor_tmp.192 -.str.193 -__block_descriptor_tmp.194 -__block_literal_global.195 -__block_descriptor_tmp.198 -.str.199 -__block_descriptor_tmp.200 -__block_literal_global.201 -__block_descriptor_tmp.204 -.str.205 -__block_descriptor_tmp.206 -__block_literal_global.207 -__block_descriptor_tmp.210 -.str.211 -__block_descriptor_tmp.212 -__block_literal_global.213 -__block_descriptor_tmp.216 -OBJC_METH_VAR_NAME_.217 -OBJC_SELECTOR_REFERENCES_.218 -.str.219 -__block_descriptor_tmp.220 -__block_literal_global.221 -__block_descriptor_tmp.224 -OBJC_METH_VAR_NAME_.225 -OBJC_SELECTOR_REFERENCES_.226 -.str.227 -__block_descriptor_tmp.228 -__block_literal_global.229 -__block_descriptor_tmp.232 -OBJC_METH_VAR_NAME_.233 -OBJC_SELECTOR_REFERENCES_.234 -OBJC_METH_VAR_NAME_.235 -OBJC_SELECTOR_REFERENCES_.236 +__block_literal_global +__block_descriptor_tmp.164 +OBJC_METH_VAR_NAME_.165 +OBJC_SELECTOR_REFERENCES_.166 +.str.167 +_unnamed_cfstring_.168 +.str.169 +_unnamed_cfstring_.170 +OBJC_METH_VAR_NAME_.171 +OBJC_SELECTOR_REFERENCES_.172 +.str.173 +__block_descriptor_tmp.174 +__block_literal_global.175 +__block_descriptor_tmp.178 +.str.179 +__block_descriptor_tmp.180 +__block_literal_global.181 +__block_descriptor_tmp.184 +.str.185 +__block_descriptor_tmp.186 +__block_literal_global.187 +__block_descriptor_tmp.190 +__block_descriptor_tmp.191 +__block_literal_global.192 +__block_descriptor_tmp.195 +.str.196 +__block_descriptor_tmp.197 +__block_literal_global.198 +__block_descriptor_tmp.201 +.str.202 +__block_descriptor_tmp.203 +__block_literal_global.204 +__block_descriptor_tmp.207 +.str.208 +__block_descriptor_tmp.209 +__block_literal_global.210 +__block_descriptor_tmp.213 +.str.214 +__block_descriptor_tmp.215 +__block_literal_global.216 +__block_descriptor_tmp.219 +OBJC_METH_VAR_NAME_.220 +OBJC_SELECTOR_REFERENCES_.221 +.str.222 +__block_descriptor_tmp.223 +__block_literal_global.224 +__block_descriptor_tmp.227 +OBJC_METH_VAR_NAME_.228 +OBJC_SELECTOR_REFERENCES_.229 +.str.230 +.str.231 +.str.232 +.str.233 +.str.234 +.str.235 +.str.236 .str.237 -__block_descriptor_tmp.238 -__block_literal_global.239 -__block_descriptor_tmp.242 -OBJC_METH_VAR_NAME_.243 -OBJC_SELECTOR_REFERENCES_.244 -.str.245 -_unnamed_cfstring_.246 -OBJC_METH_VAR_NAME_.247 -OBJC_SELECTOR_REFERENCES_.248 -.str.249 -_unnamed_cfstring_.250 -.str.251 -_unnamed_cfstring_.252 -OBJC_METH_VAR_NAME_.253 -OBJC_SELECTOR_REFERENCES_.254 -.str.255 -__block_descriptor_tmp.256 -__block_literal_global.257 -__block_descriptor_tmp.260 -OBJC_METH_VAR_NAME_.261 -OBJC_SELECTOR_REFERENCES_.262 -.str.263 +.str.238 +.str.239 +.str.240 +__block_descriptor_tmp.241 +__block_literal_global.242 +__block_descriptor_tmp.245 +OBJC_METH_VAR_NAME_.246 +OBJC_SELECTOR_REFERENCES_.247 +OBJC_METH_VAR_NAME_.248 +OBJC_SELECTOR_REFERENCES_.249 +.str.250 +__block_descriptor_tmp.251 +__block_literal_global.252 +__block_descriptor_tmp.255 +OBJC_METH_VAR_NAME_.256 +OBJC_SELECTOR_REFERENCES_.257 +OBJC_METH_VAR_NAME_.258 +OBJC_SELECTOR_REFERENCES_.259 +.str.260 +_unnamed_cfstring_.261 +OBJC_METH_VAR_NAME_.262 +OBJC_SELECTOR_REFERENCES_.263 .str.264 -.str.265 -__block_descriptor_tmp.266 -__block_literal_global.267 -__block_descriptor_tmp.270 +_unnamed_cfstring_.265 +.str.266 +_unnamed_cfstring_.267 +OBJC_CLASSLIST_REFERENCES_$_.268 +OBJC_METH_VAR_NAME_.269 +OBJC_SELECTOR_REFERENCES_.270 OBJC_METH_VAR_NAME_.271 OBJC_SELECTOR_REFERENCES_.272 -OBJC_METH_VAR_NAME_.273 -OBJC_SELECTOR_REFERENCES_.274 -OBJC_METH_VAR_NAME_.275 -OBJC_SELECTOR_REFERENCES_.276 -OBJC_METH_VAR_NAME_.277 -OBJC_SELECTOR_REFERENCES_.278 -OBJC_METH_VAR_NAME_.279 -OBJC_SELECTOR_REFERENCES_.280 +.str.273 +__block_descriptor_tmp.274 +__block_literal_global.275 +__block_descriptor_tmp.278 +.str.279 +.str.280 .str.281 -_unnamed_cfstring_.282 -OBJC_CLASSLIST_REFERENCES_$_.283 -OBJC_CLASSLIST_REFERENCES_$_.284 -OBJC_CLASSLIST_REFERENCES_$_.285 -.str.286 -__block_descriptor_tmp.287 -__block_literal_global.288 -__block_descriptor_tmp.291 -.str.292 -__block_descriptor_tmp.293 -__block_literal_global.294 -__block_descriptor_tmp.297 -.str.298 -__block_descriptor_tmp.299 -__block_literal_global.300 -__block_descriptor_tmp.303 -.str.304 -__block_descriptor_tmp.305 -__block_literal_global.306 -__block_descriptor_tmp.309 -OBJC_CLASSLIST_REFERENCES_$_.310 +__block_descriptor_tmp.282 +__block_literal_global.283 +__block_descriptor_tmp.286 +.str.287 +_unnamed_cfstring_.288 +.str.289 +__block_descriptor_tmp.290 +__block_literal_global.291 +__block_descriptor_tmp.294 +OBJC_METH_VAR_NAME_.295 +OBJC_SELECTOR_REFERENCES_.296 +.str.297 +__block_descriptor_tmp.298 +__block_literal_global.299 +__block_descriptor_tmp.302 +OBJC_METH_VAR_NAME_.303 +OBJC_SELECTOR_REFERENCES_.304 +.str.305 +__block_descriptor_tmp.306 +__block_literal_global.307 +__block_descriptor_tmp.310 OBJC_METH_VAR_NAME_.311 OBJC_SELECTOR_REFERENCES_.312 -OBJC_METH_VAR_NAME_.313 -OBJC_SELECTOR_REFERENCES_.314 -__block_descriptor_tmp.317 -OBJC_METH_VAR_NAME_.318 -OBJC_SELECTOR_REFERENCES_.319 -OBJC_METH_VAR_NAME_.320 -OBJC_SELECTOR_REFERENCES_.321 -.str.324 -__block_descriptor_tmp.325 -.str.326 -_unnamed_cfstring_.327 -OBJC_METH_VAR_NAME_.328 -OBJC_SELECTOR_REFERENCES_.329 -OBJC_METH_VAR_NAME_.330 -OBJC_SELECTOR_REFERENCES_.331 -OBJC_METH_VAR_NAME_.332 -OBJC_SELECTOR_REFERENCES_.333 -OBJC_METH_VAR_NAME_.334 -OBJC_SELECTOR_REFERENCES_.335 -OBJC_CLASSLIST_REFERENCES_$_.336 -OBJC_METH_VAR_NAME_.337 -OBJC_SELECTOR_REFERENCES_.338 -OBJC_CLASSLIST_REFERENCES_$_.339 -OBJC_METH_VAR_NAME_.340 -OBJC_SELECTOR_REFERENCES_.341 -OBJC_METH_VAR_NAME_.342 -OBJC_SELECTOR_REFERENCES_.343 -OBJC_CLASSLIST_REFERENCES_$_.344 -OBJC_CLASSLIST_REFERENCES_$_.345 -OBJC_METH_VAR_NAME_.346 -OBJC_SELECTOR_REFERENCES_.347 -.str.348 -_unnamed_cfstring_.349 -.str.350 -_unnamed_cfstring_.351 -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMAccessor.mm +.str.313 +__block_descriptor_tmp.314 +__block_literal_global.315 +__block_descriptor_tmp.318 +OBJC_METH_VAR_NAME_.319 +OBJC_SELECTOR_REFERENCES_.320 +OBJC_CLASSLIST_REFERENCES_$_.321 +OBJC_METH_VAR_NAME_.322 +OBJC_SELECTOR_REFERENCES_.323 +OBJC_METH_VAR_NAME_.324 +OBJC_SELECTOR_REFERENCES_.325 +__block_descriptor_tmp.328 +OBJC_CLASSLIST_REFERENCES_$_.330 +OBJC_METH_VAR_NAME_.331 +OBJC_SELECTOR_REFERENCES_.332 +.str.333 +__block_descriptor_tmp.334 +__block_literal_global.335 +OBJC_METH_VAR_NAME_.336 +OBJC_SELECTOR_REFERENCES_.337 +OBJC_METH_VAR_NAME_.338 +OBJC_SELECTOR_REFERENCES_.339 +.str.342 +__block_descriptor_tmp.343 +.str.344 +_unnamed_cfstring_.345 +.str.346 +_unnamed_cfstring_.347 +OBJC_CLASSLIST_REFERENCES_$_.348 +OBJC_METH_VAR_NAME_.349 +OBJC_SELECTOR_REFERENCES_.350 +OBJC_CLASSLIST_REFERENCES_$_.351 +OBJC_METH_VAR_NAME_.352 +OBJC_SELECTOR_REFERENCES_.353 +OBJC_CLASSLIST_REFERENCES_$_.355 +OBJC_METH_VAR_NAME_.356 +OBJC_SELECTOR_REFERENCES_.357 +OBJC_METH_VAR_NAME_.358 +OBJC_SELECTOR_REFERENCES_.359 +OBJC_CLASSLIST_REFERENCES_$_.360 +OBJC_METH_VAR_NAME_.361 +OBJC_SELECTOR_REFERENCES_.362 +OBJC_METH_VAR_NAME_.363 +OBJC_SELECTOR_REFERENCES_.364 +OBJC_METH_VAR_NAME_.365 +OBJC_SELECTOR_REFERENCES_.366 +OBJC_CLASSLIST_REFERENCES_$_.367 +OBJC_METH_VAR_NAME_.368 +OBJC_SELECTOR_REFERENCES_.369 +.str.370 +.str.371 +.str.372 +.str.373 +.str.374 +.str.375 +.str.376 +.str.377 +.str.378 +.str.379 +.str.380 +.str.381 +.str.382 +.str.383 +.str.384 +.str.385 +.str.386 +.str.387 +.str.388 +.str.389 +.str.390 +.str.391 +.str.392 +.str.393 +.str.394 +OBJC_CLASSLIST_REFERENCES_$_.395 +OBJC_METH_VAR_NAME_.396 +OBJC_SELECTOR_REFERENCES_.397 +OBJC_METH_VAR_NAME_.398 +OBJC_SELECTOR_REFERENCES_.399 +OBJC_CLASSLIST_REFERENCES_$_.400 +OBJC_CLASSLIST_REFERENCES_$_.401 +OBJC_METH_VAR_NAME_.402 +OBJC_SELECTOR_REFERENCES_.403 +.str.404 +_unnamed_cfstring_.405 +.str.406 +_unnamed_cfstring_.407 +.str.408 +_unnamed_cfstring_.409 +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMAccessor.mm RLMSetValueUnique -RLMWrapSetter<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMAccessor.mm:796:35)> +RLMWrapSetter<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMAccessor.mm:776:35)> RLMDynamicCast -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMUtil.hpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMUtil.hpp RLMCoerceToNil +move +RLMGetLinkingObjects RLMGetBoolObject RLMGetDoubleObject RLMGetFloatObject @@ -2255,12 +3276,16 @@ get_mixed RLMGetAnyProperty RLMGetArray get_link -is_null_link RLMGetLink +core/include/realm/binary_data.hpp RLMBinaryDataToNSData get_binary RLMGetData -RLMDateTimeToNSDate +get_timestamp +get_nanoseconds +core/include/realm/timestamp.hpp +get_seconds +RLMTimestampToNSDate RLMGetDate get_string RLMStringDataToNSString @@ -2279,36 +3304,55 @@ RLMSuperSet RLMSuperGet RLMAccessorStandaloneGetter RLMSetValue -RLMWrapSetter<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMAccessor.mm:531:34)> +RLMWrapSetter<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMAccessor.mm:503:34)> RLMMakeSetter *, NSNumber *> RLMMakeSetter *, NSNumber *> RLMMakeSetter *, NSNumber *> RLMMakeSetter *, NSNumber *> -RLMDynamicCast -RLMDynamicCast -RLMDynamicCast -RLMDynamicCast RLMMakeSetter get_linklist RLMMakeSetter +set_link RLMDynamicCast RLMGetLinkedObjectForValue +nullify_link RLMMakeSetter +BinaryData RLMBinaryDataForNSData +set_binary RLMMakeSetter -RLMDateTimeForNSDate +forward +inspect_all, std::__1::allocator >, const bool &> +inspect_value, std::__1::allocator >, bool> +inspect_all, std::__1::allocator >, const bool &, const bool &> +terminate_with_info +forward +inspect_all, std::__1::allocator >, int &> +terminate_with_info +Timestamp +__inline_isnand +/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/usr/include/math.h +__libcpp_isnan +isnan +RLMTimestampForNSDate +set_timestamp RLMMakeSetter RLMStringDataWithNSString +set_string RLMMakeSetter +set_bool RLMMakeSetter +set_double RLMMakeSetter +set_float RLMMakeSetter RLMMakeSetter RLMMakeSetter RLMMakeSetter RLMMakeSetter +set_int RLMVerifyAttached -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObject_Private.hpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObject_Private.hpp RLMVerifyInWriteTransaction RLMMakeSetter RLMAccessorSetter @@ -2316,7 +3360,6 @@ RLMAccessorGetter RLMMarkClassAsGenerated setterTypeStringForObjcCode getterTypeStringForObjcCode -RLMIsKindOfClass RLMCreateAccessorClass RLMDynamicGet RLMValidatedGetProperty @@ -2351,13 +3394,12 @@ _unnamed_cfstring_.38 _unnamed_cfstring_.42 _unnamed_cfstring_.44 _unnamed_cfstring_.46 -.str.47 _unnamed_cfstring_.48 _unnamed_cfstring_.50 _unnamed_cfstring_.52 -_unnamed_cfstring_.56 _unnamed_cfstring_.58 _unnamed_cfstring_.60 +.str.61 _unnamed_cfstring_.62 _unnamed_cfstring_.64 _unnamed_cfstring_.66 @@ -2368,7 +3410,6 @@ _unnamed_cfstring_.74 _unnamed_cfstring_.76 _unnamed_cfstring_.78 _unnamed_cfstring_.80 -_unnamed_cfstring_.82 _unnamed_cfstring_.84 OBJC_METH_VAR_NAME_.85 OBJC_SELECTOR_REFERENCES_.86 @@ -2376,22 +3417,19 @@ _unnamed_cfstring_.88 OBJC_METH_VAR_NAME_.89 OBJC_SELECTOR_REFERENCES_.90 _unnamed_cfstring_.92 -.str.93 _unnamed_cfstring_.94 _unnamed_cfstring_.96 OBJC_CLASSLIST_REFERENCES_$_.97 OBJC_METH_VAR_NAME_.98 OBJC_SELECTOR_REFERENCES_.99 -.str.100 OBJC_METH_VAR_NAME_.101 OBJC_SELECTOR_REFERENCES_.102 OBJC_METH_VAR_NAME_.103 OBJC_SELECTOR_REFERENCES_.104 -.str.105 OBJC_METH_VAR_NAME_.106 OBJC_SELECTOR_REFERENCES_.107 RLMOSVersion -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMAnalytics.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMAnalytics.mm forward forward move @@ -2521,9 +3559,15 @@ __block_descriptor_tmp.57 OBJC_METH_VAR_NAME_.58 OBJC_SELECTOR_REFERENCES_.59 __block_descriptor_tmp.62 -OBJC_METH_VAR_NAME_.63 -OBJC_SELECTOR_REFERENCES_.64 OBJC_CLASSLIST_REFERENCES_$_.65 +OBJC_METH_VAR_NAME_.66 +OBJC_SELECTOR_REFERENCES_.67 +OBJC_METH_VAR_NAME_.68 +OBJC_SELECTOR_REFERENCES_.69 +OBJC_METH_VAR_NAME_.70 +OBJC_SELECTOR_REFERENCES_.71 +OBJC_METH_VAR_NAME_.72 +OBJC_SELECTOR_REFERENCES_.73 OBJC_METH_VAR_NAME_.75 OBJC_SELECTOR_REFERENCES_.76 OBJC_METH_VAR_NAME_.77 @@ -2538,9 +3582,11 @@ OBJC_SELECTOR_REFERENCES_.87 OBJC_CLASSLIST_REFERENCES_$_.88 OBJC_METH_VAR_NAME_.91 OBJC_SELECTOR_REFERENCES_.92 +OBJC_METH_VAR_NAME_.93 +OBJC_SELECTOR_REFERENCES_.94 OBJC_METH_VAR_NAME_.95 OBJC_SELECTOR_REFERENCES_.96 -.str.99 +__block_descriptor_tmp.100 OBJC_METH_VAR_NAME_.105 OBJC_SELECTOR_REFERENCES_.106 .str.107 @@ -2556,74 +3602,43 @@ OBJC_METH_VAR_NAME_.116 OBJC_SELECTOR_REFERENCES_.117 OBJC_METH_VAR_NAME_.118 OBJC_SELECTOR_REFERENCES_.119 -.str.120 _unnamed_cfstring_.121 -OBJC_CLASSLIST_REFERENCES_$_.122 -.str.123 -_unnamed_cfstring_.124 +OBJC_CLASS_NAME_.122 +OBJC_METH_VAR_TYPE_.123 +OBJC_METH_VAR_NAME_.124 OBJC_METH_VAR_NAME_.125 -OBJC_SELECTOR_REFERENCES_.126 -OBJC_METH_VAR_NAME_.127 -OBJC_SELECTOR_REFERENCES_.128 +OBJC_METH_VAR_NAME_.126 +OBJC_METH_VAR_TYPE_.127 +OBJC_METH_VAR_TYPE_.128 OBJC_METH_VAR_NAME_.129 -OBJC_SELECTOR_REFERENCES_.130 -.str.131 -_unnamed_cfstring_.132 -.str.133 -_unnamed_cfstring_.134 -OBJC_METH_VAR_NAME_.135 -OBJC_SELECTOR_REFERENCES_.136 -.str.137 -_unnamed_cfstring_.138 -OBJC_METH_VAR_NAME_.139 -OBJC_SELECTOR_REFERENCES_.140 -OBJC_METH_VAR_NAME_.141 -OBJC_SELECTOR_REFERENCES_.142 -OBJC_METH_VAR_NAME_.143 -OBJC_SELECTOR_REFERENCES_.144 -.str.145 -_unnamed_cfstring_.146 -.str.147 -_unnamed_cfstring_.148 -OBJC_CLASSLIST_REFERENCES_$_.149 -OBJC_METH_VAR_NAME_.150 -OBJC_SELECTOR_REFERENCES_.151 -OBJC_CLASS_NAME_.152 -OBJC_METH_VAR_TYPE_.153 -OBJC_METH_VAR_NAME_.154 -OBJC_METH_VAR_NAME_.155 -OBJC_METH_VAR_NAME_.156 -OBJC_METH_VAR_TYPE_.157 -OBJC_METH_VAR_TYPE_.158 -OBJC_METH_VAR_NAME_.159 -OBJC_METH_VAR_TYPE_.160 -OBJC_METH_VAR_TYPE_.161 -OBJC_METH_VAR_TYPE_.162 -OBJC_METH_VAR_TYPE_.163 -OBJC_METH_VAR_NAME_.164 -OBJC_METH_VAR_TYPE_.165 -OBJC_METH_VAR_TYPE_.166 -OBJC_METH_VAR_TYPE_.167 -OBJC_METH_VAR_TYPE_.168 -OBJC_METH_VAR_TYPE_.169 -OBJC_METH_VAR_NAME_.170 -OBJC_METH_VAR_TYPE_.171 -OBJC_METH_VAR_TYPE_.172 -OBJC_METH_VAR_TYPE_.173 -OBJC_METH_VAR_TYPE_.174 -OBJC_METH_VAR_TYPE_.175 -OBJC_METH_VAR_TYPE_.176 -OBJC_METH_VAR_NAME_.177 -OBJC_METH_VAR_TYPE_.178 -OBJC_METH_VAR_TYPE_.179 -OBJC_METH_VAR_TYPE_.180 -OBJC_METH_VAR_NAME_.181 -OBJC_METH_VAR_TYPE_.182 -OBJC_METH_VAR_NAME_.183 -OBJC_METH_VAR_TYPE_.184 -OBJC_CLASS_NAME_.185 -OBJC_METH_VAR_TYPE_.186 -OBJC_CLASS_NAME_.187 +OBJC_METH_VAR_TYPE_.130 +OBJC_METH_VAR_TYPE_.131 +OBJC_METH_VAR_TYPE_.132 +OBJC_METH_VAR_TYPE_.133 +OBJC_METH_VAR_NAME_.134 +OBJC_METH_VAR_TYPE_.135 +OBJC_METH_VAR_TYPE_.136 +OBJC_METH_VAR_TYPE_.137 +OBJC_METH_VAR_TYPE_.138 +OBJC_METH_VAR_TYPE_.139 +OBJC_METH_VAR_NAME_.140 +OBJC_METH_VAR_TYPE_.141 +OBJC_METH_VAR_TYPE_.142 +OBJC_METH_VAR_TYPE_.143 +OBJC_METH_VAR_TYPE_.144 +OBJC_METH_VAR_TYPE_.145 +OBJC_METH_VAR_TYPE_.146 +OBJC_METH_VAR_NAME_.147 +OBJC_METH_VAR_TYPE_.148 +OBJC_METH_VAR_TYPE_.149 +OBJC_METH_VAR_TYPE_.150 +OBJC_METH_VAR_NAME_.151 +OBJC_METH_VAR_TYPE_.152 +OBJC_METH_VAR_NAME_.153 +OBJC_METH_VAR_TYPE_.154 +OBJC_CLASS_NAME_.155 +OBJC_METH_VAR_TYPE_.156 +OBJC_CLASS_NAME_.157 l_OBJC_$_PROTOCOL_INSTANCE_METHODS_NSFastEnumeration l_OBJC_$_PROTOCOL_METHOD_TYPES_NSFastEnumeration l_OBJC_PROTOCOL_$_NSFastEnumeration @@ -2631,121 +3646,124 @@ OBJC_CLASS_NAME_.187 l_OBJC_$_PROTOCOL_REFS_RLMCollection l_OBJC_$_PROTOCOL_INSTANCE_METHODS_RLMCollection OBJC_PROP_NAME_ATTR_ -OBJC_PROP_NAME_ATTR_.188 -OBJC_PROP_NAME_ATTR_.189 -OBJC_PROP_NAME_ATTR_.190 -OBJC_PROP_NAME_ATTR_.191 -OBJC_PROP_NAME_ATTR_.192 +OBJC_PROP_NAME_ATTR_.158 +OBJC_PROP_NAME_ATTR_.159 +OBJC_PROP_NAME_ATTR_.160 +OBJC_PROP_NAME_ATTR_.161 +OBJC_PROP_NAME_ATTR_.162 l_OBJC_$_PROP_LIST_RLMCollection l_OBJC_$_PROTOCOL_METHOD_TYPES_RLMCollection l_OBJC_PROTOCOL_$_RLMCollection l_OBJC_LABEL_PROTOCOL_$_RLMCollection l_OBJC_CLASS_PROTOCOLS_$_RLMArray l_OBJC_METACLASS_RO_$_RLMArray +OBJC_CLASS_NAME_.163 +OBJC_METH_VAR_NAME_.164 +OBJC_METH_VAR_TYPE_.166 +OBJC_METH_VAR_NAME_.167 +OBJC_METH_VAR_NAME_.168 +OBJC_METH_VAR_TYPE_.169 +OBJC_METH_VAR_NAME_.170 +OBJC_METH_VAR_TYPE_.171 +OBJC_METH_VAR_NAME_.172 +OBJC_METH_VAR_TYPE_.173 +OBJC_METH_VAR_TYPE_.174 +OBJC_METH_VAR_NAME_.175 +OBJC_METH_VAR_TYPE_.176 +OBJC_METH_VAR_TYPE_.177 +OBJC_METH_VAR_NAME_.178 +l_OBJC_$_INSTANCE_METHODS_RLMArray +OBJC_METH_VAR_NAME_.179 +OBJC_METH_VAR_TYPE_.180 +OBJC_METH_VAR_NAME_.181 +OBJC_METH_VAR_NAME_.182 +OBJC_METH_VAR_TYPE_.183 +OBJC_METH_VAR_NAME_.184 +OBJC_METH_VAR_TYPE_.185 +l_OBJC_$_INSTANCE_VARIABLES_RLMArray +OBJC_CLASS_NAME_.186 +OBJC_PROP_NAME_ATTR_.187 +OBJC_PROP_NAME_ATTR_.188 +OBJC_PROP_NAME_ATTR_.189 +l_OBJC_$_PROP_LIST_RLMArray +l_OBJC_CLASS_RO_$_RLMArray +OBJC_IVAR_$_RLMSortDescriptor._property +OBJC_IVAR_$_RLMSortDescriptor._ascending +OBJC_METH_VAR_NAME_.190 +OBJC_SELECTOR_REFERENCES_.191 +OBJC_CLASS_NAME_.192 +l_OBJC_$_CLASS_METHODS_RLMSortDescriptor +l_OBJC_METACLASS_RO_$_RLMSortDescriptor OBJC_CLASS_NAME_.193 OBJC_METH_VAR_NAME_.194 OBJC_METH_VAR_NAME_.195 -OBJC_METH_VAR_TYPE_.196 +OBJC_METH_VAR_NAME_.196 OBJC_METH_VAR_NAME_.197 OBJC_METH_VAR_NAME_.198 OBJC_METH_VAR_TYPE_.199 +l_OBJC_$_INSTANCE_METHODS_RLMSortDescriptor OBJC_METH_VAR_NAME_.200 OBJC_METH_VAR_TYPE_.201 OBJC_METH_VAR_NAME_.202 -OBJC_METH_VAR_TYPE_.203 -OBJC_METH_VAR_TYPE_.204 -OBJC_METH_VAR_NAME_.205 -OBJC_METH_VAR_TYPE_.206 -OBJC_METH_VAR_TYPE_.207 -l_OBJC_$_INSTANCE_METHODS_RLMArray -OBJC_METH_VAR_NAME_.208 -OBJC_METH_VAR_TYPE_.209 -OBJC_METH_VAR_NAME_.210 -OBJC_METH_VAR_NAME_.211 -OBJC_METH_VAR_TYPE_.212 +l_OBJC_$_INSTANCE_VARIABLES_RLMSortDescriptor +OBJC_PROP_NAME_ATTR_.203 +OBJC_PROP_NAME_ATTR_.204 +OBJC_PROP_NAME_ATTR_.205 +OBJC_PROP_NAME_ATTR_.206 +l_OBJC_$_PROP_LIST_RLMSortDescriptor +l_OBJC_CLASS_RO_$_RLMSortDescriptor +.str.207 +_unnamed_cfstring_.208 +.str.209 +_unnamed_cfstring_.210 +.str.211 +_unnamed_cfstring_.212 OBJC_METH_VAR_NAME_.213 -OBJC_METH_VAR_TYPE_.214 -l_OBJC_$_INSTANCE_VARIABLES_RLMArray -OBJC_CLASS_NAME_.215 -OBJC_PROP_NAME_ATTR_.216 -OBJC_PROP_NAME_ATTR_.217 -OBJC_PROP_NAME_ATTR_.218 -l_OBJC_$_PROP_LIST_RLMArray -l_OBJC_CLASS_RO_$_RLMArray -OBJC_IVAR_$_RLMSortDescriptor._property -OBJC_IVAR_$_RLMSortDescriptor._ascending +OBJC_SELECTOR_REFERENCES_.214 +.str.215 +_unnamed_cfstring_.216 +OBJC_METH_VAR_NAME_.217 +OBJC_SELECTOR_REFERENCES_.218 OBJC_METH_VAR_NAME_.219 OBJC_SELECTOR_REFERENCES_.220 -OBJC_CLASS_NAME_.221 -l_OBJC_$_CLASS_METHODS_RLMSortDescriptor -l_OBJC_METACLASS_RO_$_RLMSortDescriptor -OBJC_CLASS_NAME_.222 -OBJC_METH_VAR_NAME_.223 +OBJC_CLASSLIST_REFERENCES_$_.221 +OBJC_METH_VAR_NAME_.222 +OBJC_SELECTOR_REFERENCES_.223 OBJC_METH_VAR_NAME_.224 -OBJC_METH_VAR_NAME_.226 +OBJC_SELECTOR_REFERENCES_.225 +OBJC_CLASSLIST_REFERENCES_$_.226 OBJC_METH_VAR_NAME_.227 -OBJC_METH_VAR_TYPE_.228 -l_OBJC_$_INSTANCE_METHODS_RLMSortDescriptor +OBJC_SELECTOR_REFERENCES_.228 OBJC_METH_VAR_NAME_.229 -OBJC_METH_VAR_TYPE_.230 -OBJC_METH_VAR_NAME_.231 -l_OBJC_$_INSTANCE_VARIABLES_RLMSortDescriptor -OBJC_PROP_NAME_ATTR_.232 -OBJC_PROP_NAME_ATTR_.233 -OBJC_PROP_NAME_ATTR_.234 -OBJC_PROP_NAME_ATTR_.235 -l_OBJC_$_PROP_LIST_RLMSortDescriptor -l_OBJC_CLASS_RO_$_RLMSortDescriptor -.str.236 -_unnamed_cfstring_.237 -.str.238 -_unnamed_cfstring_.239 -OBJC_METH_VAR_NAME_.240 -OBJC_SELECTOR_REFERENCES_.241 -.str.242 -_unnamed_cfstring_.243 -OBJC_METH_VAR_NAME_.244 -OBJC_SELECTOR_REFERENCES_.245 -OBJC_METH_VAR_NAME_.246 -OBJC_SELECTOR_REFERENCES_.247 -OBJC_CLASSLIST_REFERENCES_$_.248 -OBJC_METH_VAR_NAME_.249 -OBJC_SELECTOR_REFERENCES_.250 -OBJC_METH_VAR_NAME_.251 -OBJC_SELECTOR_REFERENCES_.252 -OBJC_CLASSLIST_REFERENCES_$_.253 -OBJC_METH_VAR_NAME_.254 -OBJC_SELECTOR_REFERENCES_.255 -OBJC_METH_VAR_NAME_.256 -OBJC_SELECTOR_REFERENCES_.257 +OBJC_SELECTOR_REFERENCES_.230 OBJC_LABEL_CLASS_$ -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm:265:8)> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArray.mm +changeArray<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArray.mm:270:8)> forward > reset<__strong id *> unique_ptr<__strong id *> make_unique operator() -~ -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm:71:30)> +changeArray<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArray.mm:72:30)> changeArray -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm:63:30)> +changeArray<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArray.mm:64:30)> NSMakeRange -/Applications/Xcode-7.3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm:67:30)> +/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h +changeArray<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArray.mm:68:30)> RLMValidateMatchingObjectType RLMValidateArrayBounds forward<__strong id *> -[RLMSortDescriptor .cxx_destruct] -[RLMSortDescriptor setAscending:] -[RLMSortDescriptor ascending] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.h -[RLMSortDescriptor setProperty:] -[RLMSortDescriptor property] -[RLMSortDescriptor reversedSortDescriptor] +[RLMSortDescriptor sortDescriptorWithProperty:ascending:] -[RLMArray .cxx_destruct] -[RLMArray objectClassName] +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArray.h -[RLMArray descriptionWithMaxDepth:] -[RLMArray description] -[RLMArray indexOfObjectWhere:args:] @@ -2788,7 +3806,6 @@ forward<__strong id *> -[RLMArrayHolder .cxx_construct] -[RLMArrayHolder .cxx_destruct] +[RLMArrayLinkView arrayWithObjectClassName:view:realm:key:parentSchema:] -_ZN5realm4util8bind_ptrINS_8LinkViewEEaSERKS3_ -[RLMArrayLinkView realm] -[RLMArrayLinkView count] -[RLMArrayLinkView isInvalidated] @@ -2796,51 +3813,50 @@ _ZN5realm4util8bind_ptrINS_8LinkViewEEaSERKS3_ -[RLMArrayLinkView hash] -[RLMArrayLinkView countByEnumeratingWithState:objects:count:] -[RLMArrayLinkView objectAtIndex:] -_ZL22RLMValidateArrayBoundsP16RLMArrayLinkViewmb -[RLMArrayLinkView addObject:] _ZL15RLMInsertObjectP16RLMArrayLinkViewP9RLMObjectm -[RLMArrayLinkView insertObject:atIndex:] -[RLMArrayLinkView insertObjects:atIndexes:] _ZL11changeArrayP16RLMArrayLinkView16NSKeyValueChangeP10NSIndexSetU13block_pointerFvvE __44-[RLMArrayLinkView insertObjects:atIndexes:]_block_invoke +_ZL19validateObjectToAddP16RLMArrayLinkViewP9RLMObject -[RLMArrayLinkView removeObjectAtIndex:] _ZL11changeArrayP16RLMArrayLinkView16NSKeyValueChangemU13block_pointerFvvE __40-[RLMArrayLinkView removeObjectAtIndex:]_block_invoke -__copy_helper_block_.31 -__destroy_helper_block_.32 +__copy_helper_block_.25 +__destroy_helper_block_.26 -[RLMArrayLinkView removeObjectsAtIndexes:] __43-[RLMArrayLinkView removeObjectsAtIndexes:]_block_invoke -__copy_helper_block_.40 -__destroy_helper_block_.41 +__43-[RLMArrayLinkView removeObjectsAtIndexes:]_block_invoke_2 +__copy_helper_block_.28 +__destroy_helper_block_.29 -[RLMArrayLinkView addObjectsFromArray:] _ZL11changeArrayP16RLMArrayLinkView16NSKeyValueChange8_NSRangeU13block_pointerFvvE __40-[RLMArrayLinkView addObjectsFromArray:]_block_invoke -__copy_helper_block_.43 -__destroy_helper_block_.44 -[RLMArrayLinkView removeAllObjects] __36-[RLMArrayLinkView removeAllObjects]_block_invoke -__copy_helper_block_.46 -__destroy_helper_block_.47 +__copy_helper_block_.40 +__destroy_helper_block_.41 -[RLMArrayLinkView replaceObjectAtIndex:withObject:] __52-[RLMArrayLinkView replaceObjectAtIndex:withObject:]_block_invoke -__copy_helper_block_.53 -__destroy_helper_block_.54 +__copy_helper_block_.43 +__destroy_helper_block_.44 -[RLMArrayLinkView moveObjectAtIndex:toIndex:] __46-[RLMArrayLinkView moveObjectAtIndex:toIndex:]_block_invoke -__copy_helper_block_.56 -__destroy_helper_block_.57 +__copy_helper_block_.46 +__destroy_helper_block_.47 -[RLMArrayLinkView exchangeObjectAtIndex:withObjectAtIndex:] __60-[RLMArrayLinkView exchangeObjectAtIndex:withObjectAtIndex:]_block_invoke -__copy_helper_block_.59 -__destroy_helper_block_.60 +__copy_helper_block_.49 +__destroy_helper_block_.50 -[RLMArrayLinkView indexOfObject:] -[RLMArrayLinkView valueForKeyPath:] -[RLMArrayLinkView valueForKey:] -[RLMArrayLinkView setValue:forKey:] -[RLMArrayLinkView deleteObjectsFromRealm] __42-[RLMArrayLinkView deleteObjectsFromRealm]_block_invoke -__copy_helper_block_.80 -__destroy_helper_block_.81 +__copy_helper_block_.72 +__destroy_helper_block_.73 -[RLMArrayLinkView sortedResultsUsingDescriptors:] -[RLMArrayLinkView objectsWithPredicate:] -[RLMArrayLinkView indexOfObjectWithPredicate:] @@ -2849,18 +3865,14 @@ __destroy_helper_block_.81 -[RLMArrayLinkView indexInSource:] -[RLMArrayLinkView tableView] -[RLMArrayLinkView addNotificationBlock:] -__41-[RLMArrayLinkView addNotificationBlock:]_block_invoke -__copy_helper_block_.87 -__destroy_helper_block_.88 -__41-[RLMArrayLinkView addNotificationBlock:]_block_invoke.91 -__copy_helper_block_.92 -__destroy_helper_block_.93 -[RLMArrayLinkView objectSchema] -[RLMArrayLinkView setObjectSchema:] -[RLMArrayLinkView .cxx_destruct] -[RLMArrayLinkView .cxx_construct] +_ZL10throwErrorv ___ZL15RLMInsertObjectP16RLMArrayLinkViewP9RLMObjectm_block_invoke -_ZN5realm7ResultsC2EOS0_ +__copy_helper_block_.155 +__destroy_helper_block_.156 OBJC_SELECTOR_REFERENCES_.2 OBJC_IVAR_$_RLMArrayLinkView._objectSchema OBJC_METH_VAR_NAME_.7 @@ -2868,174 +3880,174 @@ OBJC_SELECTOR_REFERENCES_.8 OBJC_METH_VAR_NAME_.9 OBJC_SELECTOR_REFERENCES_.10 OBJC_CLASSLIST_REFERENCES_$_.11 -_unnamed_cfstring_.27 -__block_descriptor_tmp.33 -OBJC_METH_VAR_NAME_.34 -OBJC_SELECTOR_REFERENCES_.35 -_unnamed_cfstring_.37 -OBJC_METH_VAR_NAME_.38 -OBJC_SELECTOR_REFERENCES_.39 +__block_descriptor_tmp.27 +__block_descriptor_tmp.31 __block_descriptor_tmp.42 __block_descriptor_tmp.45 __block_descriptor_tmp.48 -__block_descriptor_tmp.55 -__block_descriptor_tmp.58 -__block_descriptor_tmp.61 -_unnamed_cfstring_.63 -_unnamed_cfstring_.67 -_unnamed_cfstring_.69 -OBJC_CLASSLIST_REFERENCES_$_.72 -OBJC_METH_VAR_NAME_.73 -OBJC_SELECTOR_REFERENCES_.74 -OBJC_CLASSLIST_REFERENCES_$_.77 -OBJC_METH_VAR_NAME_.78 -OBJC_SELECTOR_REFERENCES_.79 -__block_descriptor_tmp.82 -__block_descriptor_tmp.90 -__block_descriptor_tmp.94 -OBJC_METH_VAR_NAME_.97 +__block_descriptor_tmp.51 +OBJC_METH_VAR_NAME_.52 +OBJC_SELECTOR_REFERENCES_.53 +_unnamed_cfstring_.55 +OBJC_METH_VAR_NAME_.56 +OBJC_SELECTOR_REFERENCES_.57 +_unnamed_cfstring_.59 +_unnamed_cfstring_.61 +OBJC_METH_VAR_NAME_.62 +OBJC_SELECTOR_REFERENCES_.63 +OBJC_CLASSLIST_REFERENCES_$_.64 +OBJC_CLASSLIST_REFERENCES_$_.69 +__block_descriptor_tmp.74 l_OBJC_$_CLASS_METHODS_RLMArrayLinkView -OBJC_METH_VAR_TYPE_.99 -OBJC_METH_VAR_NAME_.100 -OBJC_METH_VAR_TYPE_.101 -OBJC_METH_VAR_TYPE_.102 -OBJC_METH_VAR_TYPE_.103 -OBJC_METH_VAR_NAME_.104 -OBJC_METH_VAR_TYPE_.105 -OBJC_METH_VAR_TYPE_.106 +OBJC_METH_VAR_NAME_.80 +OBJC_METH_VAR_TYPE_.81 +OBJC_METH_VAR_NAME_.82 +OBJC_METH_VAR_TYPE_.83 +OBJC_METH_VAR_NAME_.84 +OBJC_METH_VAR_TYPE_.85 +OBJC_METH_VAR_TYPE_.86 +OBJC_METH_VAR_NAME_.87 +OBJC_METH_VAR_TYPE_.88 +OBJC_METH_VAR_TYPE_.89 +OBJC_CLASS_NAME_.90 l_OBJC_$_PROTOCOL_INSTANCE_METHODS_RLMFastEnumerable -OBJC_PROP_NAME_ATTR_.108 -OBJC_PROP_NAME_ATTR_.109 -OBJC_PROP_NAME_ATTR_.110 -OBJC_PROP_NAME_ATTR_.111 -OBJC_PROP_NAME_ATTR_.112 +OBJC_PROP_NAME_ATTR_.91 +OBJC_PROP_NAME_ATTR_.92 +OBJC_PROP_NAME_ATTR_.93 +OBJC_PROP_NAME_ATTR_.94 +OBJC_PROP_NAME_ATTR_.95 l_OBJC_$_PROP_LIST_RLMFastEnumerable l_OBJC_$_PROTOCOL_METHOD_TYPES_RLMFastEnumerable l_OBJC_PROTOCOL_$_RLMFastEnumerable l_OBJC_LABEL_PROTOCOL_$_RLMFastEnumerable l_OBJC_CLASS_PROTOCOLS_$_RLMArrayLinkView l_OBJC_METACLASS_RO_$_RLMArrayLinkView +OBJC_CLASS_NAME_.96 +OBJC_METH_VAR_TYPE_.97 +OBJC_METH_VAR_TYPE_.99 +OBJC_METH_VAR_NAME_.100 +OBJC_METH_VAR_TYPE_.101 +OBJC_METH_VAR_NAME_.102 +OBJC_METH_VAR_TYPE_.103 +OBJC_METH_VAR_NAME_.104 +OBJC_METH_VAR_TYPE_.105 +OBJC_METH_VAR_TYPE_.107 +OBJC_METH_VAR_NAME_.108 +OBJC_METH_VAR_TYPE_.109 +OBJC_METH_VAR_TYPE_.111 +OBJC_METH_VAR_NAME_.113 OBJC_METH_VAR_TYPE_.115 OBJC_METH_VAR_TYPE_.117 OBJC_METH_VAR_TYPE_.119 OBJC_METH_VAR_NAME_.120 -OBJC_METH_VAR_TYPE_.121 +OBJC_METH_VAR_NAME_.121 OBJC_METH_VAR_TYPE_.122 -OBJC_METH_VAR_NAME_.123 -OBJC_METH_VAR_TYPE_.124 -OBJC_METH_VAR_TYPE_.126 -OBJC_METH_VAR_TYPE_.128 +OBJC_METH_VAR_NAME_.127 +OBJC_METH_VAR_NAME_.128 OBJC_METH_VAR_NAME_.130 -OBJC_METH_VAR_NAME_.131 -OBJC_METH_VAR_TYPE_.132 -OBJC_METH_VAR_NAME_.133 -OBJC_METH_VAR_TYPE_.134 -OBJC_METH_VAR_TYPE_.136 +OBJC_METH_VAR_NAME_.132 +OBJC_METH_VAR_NAME_.135 +OBJC_METH_VAR_NAME_.136 +l_OBJC_$_INSTANCE_METHODS_RLMArrayLinkView OBJC_METH_VAR_NAME_.137 -OBJC_METH_VAR_NAME_.138 -OBJC_METH_VAR_TYPE_.139 +OBJC_METH_VAR_NAME_.139 OBJC_METH_VAR_TYPE_.140 -OBJC_METH_VAR_NAME_.142 -OBJC_METH_VAR_NAME_.144 +OBJC_METH_VAR_NAME_.141 +OBJC_METH_VAR_NAME_.143 OBJC_METH_VAR_NAME_.145 -OBJC_METH_VAR_NAME_.146 -OBJC_METH_VAR_NAME_.147 -OBJC_METH_VAR_TYPE_.148 -OBJC_METH_VAR_TYPE_.149 -OBJC_METH_VAR_NAME_.151 -OBJC_METH_VAR_NAME_.152 -l_OBJC_$_INSTANCE_METHODS_RLMArrayLinkView -OBJC_METH_VAR_NAME_.153 -OBJC_METH_VAR_TYPE_.154 -OBJC_METH_VAR_TYPE_.156 -OBJC_METH_VAR_NAME_.157 -OBJC_METH_VAR_NAME_.161 l_OBJC_$_INSTANCE_VARIABLES_RLMArrayLinkView -OBJC_PROP_NAME_ATTR_.162 +OBJC_PROP_NAME_ATTR_.146 l_OBJC_$_PROP_LIST_RLMArrayLinkView l_OBJC_CLASS_RO_$_RLMArrayLinkView -.str.163 -.str.165 -_unnamed_cfstring_.166 -OBJC_METH_VAR_NAME_.167 +_ZTSN5realm24IncorrectThreadExceptionE +_ZTIN5realm24IncorrectThreadExceptionE +_ZTSN5realm4List26DetatchedAccessorExceptionE +_ZTIN5realm4List26DetatchedAccessorExceptionE +.str.147 +_unnamed_cfstring_.148 +.str.149 +_unnamed_cfstring_.150 +.str.151 +_unnamed_cfstring_.152 +.str.153 +_unnamed_cfstring_.154 +_unnamed_cfstring_.161 +OBJC_SELECTOR_REFERENCES_.162 +OBJC_SELECTOR_REFERENCES_.163 +.str.164 +_unnamed_cfstring_.165 +OBJC_CLASSLIST_REFERENCES_$_.166 OBJC_SELECTOR_REFERENCES_.168 -.str.169 -_unnamed_cfstring_.170 +OBJC_METH_VAR_NAME_.169 +OBJC_SELECTOR_REFERENCES_.170 .str.171 .str.172 -.str.173 .str.174 .str.175 +.str.176 .str.177 .str.178 -OBJC_METH_VAR_NAME_.182 -OBJC_SELECTOR_REFERENCES_.183 +.str.180 +.str.181 +.str.182 +.str.183 .str.184 -_unnamed_cfstring_.185 -OBJC_CLASSLIST_REFERENCES_$_.186 -OBJC_METH_VAR_NAME_.187 -OBJC_SELECTOR_REFERENCES_.188 -OBJC_METH_VAR_NAME_.189 -OBJC_SELECTOR_REFERENCES_.190 +.str.186 +.str.187 +.str.188 +.str.189 +.str.190 .str.191 -_unnamed_cfstring_.192 -_unnamed_cfstring_.194 +.str.192 +.str.193 +.str.194 .str.195 .str.197 .str.198 -.str.200 -.str.201 -.str.202 -.str.203 -.str.204 -.str.206 -.str.207 -.str.208 -.str.209 -.str.210 -.str.212 -.str.213 -.str.214 -.str.215 -.str.216 -.str.217 -.str.218 -.str.221 -.str.222 -OBJC_SELECTOR_REFERENCES_.224 -OBJC_CLASSLIST_REFERENCES_$_.225 -OBJC_SELECTOR_REFERENCES_.227 -OBJC_METH_VAR_NAME_.228 -OBJC_SELECTOR_REFERENCES_.229 +OBJC_METH_VAR_NAME_.199 +OBJC_SELECTOR_REFERENCES_.200 +OBJC_CLASSLIST_REFERENCES_$_.201 +OBJC_SELECTOR_REFERENCES_.203 +OBJC_METH_VAR_NAME_.204 +OBJC_SELECTOR_REFERENCES_.205 forward > move forward forward make_unique -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm:333:8)> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:160:25)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:143:21)> +changeArray<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:303:8)> RLMDynamicCast -move -swap forward -get_version_counter -get_origin_table -move +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:400:28)> RLMConvertNotFound -get_target_table -RLMValidateObjectClass -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm:131:30)> -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm:127:30)> -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm:135:30)> -RLMLinkViewArrayValidateInWriteTransaction +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:376:34)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:369:34)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:364:36)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:358:25)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:351:21)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:346:21)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:327:38)> +BasicRow +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:321:28)> +changeArray<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:169:30)> +changeArray<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:165:30)> +validateObjectToAdd +changeArray<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:173:30)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:227:33)> RLMInsertObject -core/include/realm/column_linkbase.hpp -RLMLinkViewArrayValidateAttached -get_origin_row_index +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:222:52)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:207:25)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:188:28)> +throwError +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:184:28)> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/list.hpp -[RLMArrayLinkView .cxx_construct] -[RLMArrayLinkView .cxx_destruct] -[RLMArrayLinkView setObjectSchema:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray_Private.hpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArray_Private.hpp -[RLMArrayLinkView objectSchema] -[RLMArrayLinkView addNotificationBlock:] -[RLMArrayLinkView tableView] @@ -3070,13 +4082,240 @@ get_origin_row_index RLMEnsureArrayObservationInfo RLMValidateArrayObservationKey +[RLMArrayLinkView arrayWithObjectClassName:view:realm:key:parentSchema:] +-[RLMFastEnumerator initWithCollection:objectSchema:] +-[RLMFastEnumerator dealloc] +-[RLMFastEnumerator detach] +-[RLMFastEnumerator countByEnumeratingWithState:count:] +-[RLMFastEnumerator .cxx_destruct] +-[RLMFastEnumerator .cxx_construct] +-[RLMCancellationToken initWithToken:] +-[RLMCancellationToken stop] +-[RLMCancellationToken .cxx_destruct] +-[RLMCancellationToken .cxx_construct] +-[RLMCollectionChange initWithChanges:] +-[RLMCollectionChange insertions] +_ZL7toArrayRKN5realm8IndexSetE +-[RLMCollectionChange deletions] +-[RLMCollectionChange modifications] +-[RLMCollectionChange deletionsInSection:] +_ZL16toIndexPathArrayRKN5realm8IndexSetEm +-[RLMCollectionChange insertionsInSection:] +-[RLMCollectionChange modificationsInSection:] +-[RLMCollectionChange .cxx_destruct] +-[RLMCollectionChange .cxx_construct] +_ZNSt3__110__function6__funcIZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS8_P19RLMCollectionChangeP7NSErrorEbEUlRKNS3_19CollectionChangeSetESt13exception_ptrE_NS_9allocatorISL_EEFvSH_SK_EED1Ev +_ZNSt3__110__function6__funcIZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS8_P19RLMCollectionChangeP7NSErrorEbEUlRKNS3_19CollectionChangeSetESt13exception_ptrE_NS_9allocatorISL_EEFvSH_SK_EED0Ev +_ZNSt3__128__invoke_void_return_wrapperIvE6__callIJRZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS9_P19RLMCollectionChangeP7NSErrorEbEUlRKNS4_19CollectionChangeSetESt13exception_ptrE_SI_SL_EEEvDpOT_ +_ZZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_clESG_SH_ +_ZNSt3__110__function6__funcIZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS8_P19RLMCollectionChangeP7NSErrorEbEUlRKNS3_19CollectionChangeSetESt13exception_ptrE_NS_9allocatorISL_EEFvSH_SK_EED1Ev +_ZNSt3__110__function6__funcIZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS8_P19RLMCollectionChangeP7NSErrorEbEUlRKNS3_19CollectionChangeSetESt13exception_ptrE_NS_9allocatorISL_EEFvSH_SK_EED0Ev +_ZNSt3__128__invoke_void_return_wrapperIvE6__callIJRZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS9_P19RLMCollectionChangeP7NSErrorEbEUlRKNS4_19CollectionChangeSetESt13exception_ptrE_SI_SL_EEEvDpOT_ +_ZZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_clESG_SH_ +OBJC_IVAR_$_RLMFastEnumerator._realm +OBJC_IVAR_$_RLMFastEnumerator._objectSchema +OBJC_IVAR_$_RLMFastEnumerator._tableView +OBJC_IVAR_$_RLMFastEnumerator._collection +OBJC_METH_VAR_NAME_.17 +OBJC_SELECTOR_REFERENCES_.18 +OBJC_METH_VAR_NAME_.19 +OBJC_SELECTOR_REFERENCES_.20 +OBJC_METH_VAR_NAME_.21 +OBJC_SELECTOR_REFERENCES_.22 +OBJC_IVAR_$_RLMFastEnumerator._strongBuffer +l_OBJC_METACLASS_RO_$_RLMFastEnumerator +OBJC_CLASS_NAME_.25 +OBJC_METH_VAR_TYPE_.27 +OBJC_METH_VAR_NAME_.29 +OBJC_METH_VAR_TYPE_.30 +OBJC_METH_VAR_NAME_.31 +OBJC_METH_VAR_TYPE_.33 +l_OBJC_$_INSTANCE_METHODS_RLMFastEnumerator +OBJC_METH_VAR_NAME_.34 +OBJC_METH_VAR_TYPE_.35 +OBJC_METH_VAR_NAME_.36 +OBJC_METH_VAR_TYPE_.37 +OBJC_METH_VAR_NAME_.38 +OBJC_METH_VAR_TYPE_.39 +OBJC_METH_VAR_TYPE_.41 +OBJC_METH_VAR_NAME_.42 +OBJC_METH_VAR_TYPE_.43 +l_OBJC_$_INSTANCE_VARIABLES_RLMFastEnumerator +l_OBJC_CLASS_RO_$_RLMFastEnumerator +OBJC_METH_VAR_NAME_.44 +OBJC_SELECTOR_REFERENCES_.45 +OBJC_METH_VAR_NAME_.46 +OBJC_SELECTOR_REFERENCES_.47 +OBJC_CLASSLIST_REFERENCES_$_.50 +OBJC_METH_VAR_NAME_.55 +OBJC_SELECTOR_REFERENCES_.56 +OBJC_CLASSLIST_REFERENCES_$_.57 +OBJC_METH_VAR_NAME_.60 +OBJC_SELECTOR_REFERENCES_.61 +OBJC_METH_VAR_NAME_.64 +OBJC_SELECTOR_REFERENCES_.65 +_unnamed_cfstring_.67 +OBJC_CLASSLIST_REFERENCES_$_.68 +OBJC_METH_VAR_NAME_.73 +OBJC_SELECTOR_REFERENCES_.74 +_unnamed_cfstring_.98 +OBJC_CLASSLIST_SUP_REFS_$_.99 +OBJC_IVAR_$_RLMCancellationToken._token +OBJC_CLASS_NAME_.100 +l_OBJC_METACLASS_RO_$_RLMCancellationToken +OBJC_METH_VAR_TYPE_.102 +l_OBJC_$_INSTANCE_METHODS_RLMCancellationToken +l_OBJC_$_INSTANCE_VARIABLES_RLMCancellationToken +l_OBJC_CLASS_RO_$_RLMCancellationToken +OBJC_CLASSLIST_SUP_REFS_$_.106 +OBJC_IVAR_$_RLMCollectionChange._indices +OBJC_CLASS_NAME_.107 +l_OBJC_METACLASS_RO_$_RLMCollectionChange +OBJC_METH_VAR_NAME_.111 +OBJC_METH_VAR_TYPE_.114 +OBJC_METH_VAR_NAME_.115 +l_OBJC_$_INSTANCE_METHODS_RLMCollectionChange +OBJC_METH_VAR_NAME_.117 +OBJC_METH_VAR_TYPE_.118 +l_OBJC_$_INSTANCE_VARIABLES_RLMCollectionChange +OBJC_PROP_NAME_ATTR_.119 +OBJC_PROP_NAME_ATTR_.120 +OBJC_PROP_NAME_ATTR_.121 +l_OBJC_$_PROP_LIST_RLMCollectionChange +l_OBJC_CLASS_RO_$_RLMCollectionChange +OBJC_CLASSLIST_REFERENCES_$_.122 +OBJC_SELECTOR_REFERENCES_.123 +.str.124 +.str.125 +.str.126 +.str.127 +.str.129 +.str.130 +.str.131 +.str.132 +.str.134 +.str.136 +.str.137 +.str.139 +.str.140 +.str.141 +.str.143 +.str.144 +.str.145 +.str.148 +.str.152 +.str.154 +.str.155 +.str.157 +OBJC_METH_VAR_NAME_.158 +OBJC_SELECTOR_REFERENCES_.159 +OBJC_CLASSLIST_REFERENCES_$_.160 +OBJC_METH_VAR_NAME_.161 +OBJC_CLASSLIST_REFERENCES_$_.163 +OBJC_SELECTOR_REFERENCES_.165 +_ZTSNSt3__110__function6__funcIZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS8_P19RLMCollectionChangeP7NSErrorEbEUlRKNS3_19CollectionChangeSetESt13exception_ptrE_NS_9allocatorISL_EEFvSH_SK_EEE +_ZTINSt3__110__function6__funcIZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS8_P19RLMCollectionChangeP7NSErrorEbEUlRKNS3_19CollectionChangeSetESt13exception_ptrE_NS_9allocatorISL_EEFvSH_SK_EEE +OBJC_SELECTOR_REFERENCES_.167 +_ZTSZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbEUlRKNS0_19CollectionChangeSetESt13exception_ptrE_ +_ZTIZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbEUlRKNS0_19CollectionChangeSetESt13exception_ptrE_ +_ZTSNSt3__110__function6__funcIZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS8_P19RLMCollectionChangeP7NSErrorEbEUlRKNS3_19CollectionChangeSetESt13exception_ptrE_NS_9allocatorISL_EEFvSH_SK_EEE +_ZTINSt3__110__function6__funcIZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS8_P19RLMCollectionChangeP7NSErrorEbEUlRKNS3_19CollectionChangeSetESt13exception_ptrE_NS_9allocatorISL_EEFvSH_SK_EEE +_ZTSZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbEUlRKNS0_19CollectionChangeSetESt13exception_ptrE_ +_ZTIZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbEUlRKNS0_19CollectionChangeSetESt13exception_ptrE_ +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &> +call +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm +__invoke<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &, realm::CollectionChangeSet, std::exception_ptr> +__call<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &, realm::CollectionChangeSet, std::exception_ptr> +get<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> &> +__libcpp_compressed_pair_imp &, 0, 0> +move &> &> +__compressed_pair &> +__tuple_leaf &, void> +__tuple_impl<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> &, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> &> +forward &> +forward_as_tuple &> +get<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &> +__libcpp_compressed_pair_imp &&, 0, 0> +move &> +__compressed_pair &&> +__tuple_leaf +__tuple_impl<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &> +forward +forward_as_tuple +allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> +_ZZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_C2EOSI_ +_ZZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_C1EOSI_ +get<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &&> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &&> +get<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> &&> +forward &&> +__libcpp_compressed_pair_imp<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> &&, 0, 0> +move &&> &> +move &> +__compressed_pair<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> &&> +move &> +__tuple_leaf, void> +__tuple_impl<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> > +tuple , false> +forward > +forward_as_tuple > +__tuple_leaf<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15), void> +__tuple_impl<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &&, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> +tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15), false> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> +forward_as_tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> +allocator, void (realm::CollectionChangeSet, std::exception_ptr)> > +move<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &> +forward, void (realm::CollectionChangeSet, std::exception_ptr)> > > > +forward, void (realm::CollectionChangeSet, std::exception_ptr)> *> +move, void (realm::CollectionChangeSet, std::exception_ptr)> > > &> +__not_null<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> +function<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> +_ZZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_C2EOSI_ +_ZZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_C1EOSI_ +operator= +_ZZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_C2ERKSI_ +_ZZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_C1ERKSI_ +_ZZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_C2ERKSI_ +_ZZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_C1ERKSI_ +toIndexPathArray +toArray +move +move +get_source_ndx +is_row_attached +RLMAddNotificationBlock +RLMAddNotificationBlock +-[RLMCollectionChange .cxx_construct] +-[RLMCollectionChange .cxx_destruct] +-[RLMCollectionChange modificationsInSection:] +-[RLMCollectionChange insertionsInSection:] +-[RLMCollectionChange deletionsInSection:] +-[RLMCollectionChange modifications] +-[RLMCollectionChange deletions] +-[RLMCollectionChange insertions] +-[RLMCollectionChange initWithChanges:] +-[RLMCancellationToken .cxx_construct] +-[RLMCancellationToken .cxx_destruct] +-[RLMCancellationToken stop] +-[RLMCancellationToken initWithToken:] +RLMDescriptionWithMaxDepth +RLMCollectionSetValueForKey +RLMCollectionValueForKey +-[RLMFastEnumerator .cxx_construct] +-[RLMFastEnumerator .cxx_destruct] +-[RLMFastEnumerator countByEnumeratingWithState:count:] +-[RLMFastEnumerator detach] +-[RLMFastEnumerator dealloc] +-[RLMFastEnumerator initWithCollection:objectSchema:] _unnamed_cfstring_.2 _unnamed_cfstring_.4 _unnamed_cfstring_.6 _unnamed_cfstring_.8 _unnamed_cfstring_.10 _unnamed_cfstring_.12 -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMConstants.m +_unnamed_cfstring_.14 +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMConstants.m -[RLMListBase initWithArray:] -[RLMListBase valueForKey:] -[RLMListBase countByEnumeratingWithState:objects:count:] @@ -3096,10 +4335,8 @@ OBJC_METH_VAR_TYPE_.12 OBJC_METH_VAR_TYPE_.13 OBJC_METH_VAR_TYPE_.15 OBJC_METH_VAR_TYPE_.17 -OBJC_METH_VAR_NAME_.19 OBJC_METH_VAR_TYPE_.20 l_OBJC_$_INSTANCE_METHODS_RLMListBase -OBJC_METH_VAR_NAME_.21 OBJC_METH_VAR_TYPE_.22 OBJC_METH_VAR_TYPE_.24 l_OBJC_$_INSTANCE_VARIABLES_RLMListBase @@ -3107,10 +4344,10 @@ OBJC_PROP_NAME_ATTR_.25 l_OBJC_$_PROP_LIST_RLMListBase l_OBJC_CLASS_RO_$_RLMListBase -[RLMListBase .cxx_construct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMListBase.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMListBase.mm -[RLMListBase .cxx_destruct] -[RLMListBase set_rlmArray:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMListBase.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMListBase.h -[RLMListBase _rlmArray] -[RLMListBase addObserver:forKeyPath:options:context:] -[RLMListBase objectsAtIndexes:] @@ -3128,6 +4365,7 @@ OBJC_PROP_NAME_ATTR_.25 -[RLMMigration createObject:withObject:] -[RLMMigration deleteObject:] -[RLMMigration deleteDataForClassName:] +-[RLMMigration renamePropertyForClass:oldName:newName:] -[RLMMigration oldRealm] -[RLMMigration setOldRealm:] -[RLMMigration realm] @@ -3140,36 +4378,45 @@ OBJC_IVAR_$_RLMMigration._realm OBJC_IVAR_$_RLMMigration._oldRealm OBJC_METH_VAR_NAME_.4 OBJC_SELECTOR_REFERENCES_.5 -OBJC_CLASS_NAME_.36 +OBJC_SELECTOR_REFERENCES_.35 +OBJC_CLASSLIST_REFERENCES_$_.36 +OBJC_CLASSLIST_REFERENCES_$_.39 +OBJC_SELECTOR_REFERENCES_.43 +OBJC_METH_VAR_NAME_.50 +OBJC_SELECTOR_REFERENCES_.51 +OBJC_METH_VAR_NAME_.54 +OBJC_SELECTOR_REFERENCES_.55 +OBJC_CLASS_NAME_.60 l_OBJC_METACLASS_RO_$_RLMMigration -OBJC_CLASS_NAME_.37 -OBJC_METH_VAR_TYPE_.39 -OBJC_METH_VAR_TYPE_.41 -OBJC_METH_VAR_NAME_.42 -OBJC_METH_VAR_TYPE_.44 -OBJC_METH_VAR_TYPE_.46 -OBJC_METH_VAR_TYPE_.48 -OBJC_METH_VAR_TYPE_.50 -OBJC_METH_VAR_NAME_.52 +OBJC_CLASS_NAME_.61 +OBJC_METH_VAR_TYPE_.63 +OBJC_METH_VAR_TYPE_.65 +OBJC_METH_VAR_TYPE_.68 +OBJC_METH_VAR_TYPE_.70 +OBJC_METH_VAR_TYPE_.72 +OBJC_METH_VAR_TYPE_.74 +OBJC_METH_VAR_TYPE_.76 +OBJC_METH_VAR_NAME_.78 l_OBJC_$_INSTANCE_METHODS_RLMMigration -OBJC_METH_VAR_NAME_.54 -OBJC_METH_VAR_TYPE_.55 +OBJC_METH_VAR_TYPE_.80 +OBJC_METH_VAR_NAME_.81 l_OBJC_$_INSTANCE_VARIABLES_RLMMigration -OBJC_PROP_NAME_ATTR_.57 -OBJC_PROP_NAME_ATTR_.58 -OBJC_PROP_NAME_ATTR_.59 -OBJC_PROP_NAME_ATTR_.60 -OBJC_PROP_NAME_ATTR_.61 -OBJC_PROP_NAME_ATTR_.62 +OBJC_PROP_NAME_ATTR_.82 +OBJC_PROP_NAME_ATTR_.83 +OBJC_PROP_NAME_ATTR_.84 +OBJC_PROP_NAME_ATTR_.85 +OBJC_PROP_NAME_ATTR_.86 +OBJC_PROP_NAME_ATTR_.87 l_OBJC_$_PROP_LIST_RLMMigration l_OBJC_CLASS_RO_$_RLMMigration -[RLMMigration .cxx_destruct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMMigration.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMMigration.mm -[RLMMigration setRealm:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMMigration_Private.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMMigration_Private.h -[RLMMigration realm] -[RLMMigration setOldRealm:] -[RLMMigration oldRealm] +-[RLMMigration renamePropertyForClass:oldName:newName:] -[RLMMigration deleteDataForClassName:] -[RLMMigration deleteObject:] -[RLMMigration createObject:withObject:] @@ -3182,6 +4429,8 @@ OBJC_PROP_NAME_ATTR_.62 -[RLMMigrationRealm beginWriteTransaction] -[RLMMigrationRealm readonly] -[RLMObject init] +-[RLMObject initWithValue:schema:] +-[RLMObject initWithRealm:schema:] -[RLMObject initWithValue:] -[RLMObject initWithObject:] +[RLMObject createInDefaultRealmWithValue:] @@ -3204,10 +4453,10 @@ OBJC_PROP_NAME_ATTR_.62 +[RLMObject objectsInRealm:withPredicate:] +[RLMObject objectForPrimaryKey:] +[RLMObject objectInRealm:forPrimaryKey:] --[RLMObject linkingObjectsOfClass:forProperty:] -[RLMObject isEqualToObject:] +[RLMObject className] +[RLMObject indexedProperties] ++[RLMObject linkingObjectsProperties] +[RLMObject defaultPropertyValues] +[RLMObject primaryKey] +[RLMObject ignoredProperties] @@ -3215,63 +4464,71 @@ OBJC_PROP_NAME_ATTR_.62 +[RLMDynamicObject shouldIncludeInDefaultSchema] -[RLMDynamicObject valueForUndefinedKey:] -[RLMDynamicObject setValue:forUndefinedKey:] -OBJC_CLASSLIST_REFERENCES_$_.26 -OBJC_METH_VAR_NAME_.27 -OBJC_SELECTOR_REFERENCES_.28 -OBJC_CLASSLIST_REFERENCES_$_.29 -_unnamed_cfstring_.31 -OBJC_CLASSLIST_REFERENCES_$_.36 -OBJC_CLASSLIST_REFERENCES_$_.45 -OBJC_METH_VAR_NAME_.46 -OBJC_SELECTOR_REFERENCES_.47 -OBJC_CLASSLIST_SUP_REFS_$_.48 -OBJC_CLASSLIST_REFERENCES_$_.49 -OBJC_METH_VAR_NAME_.50 -OBJC_SELECTOR_REFERENCES_.51 -OBJC_METH_VAR_TYPE_.53 -OBJC_METH_VAR_NAME_.55 -OBJC_METH_VAR_NAME_.57 +-[RLMWeakObjectHandle initWithObject:] +-[RLMWeakObjectHandle object] +-[RLMWeakObjectHandle .cxx_destruct] +-[RLMWeakObjectHandle .cxx_construct] +OBJC_CLASSLIST_REFERENCES_$_.13 +OBJC_CLASSLIST_REFERENCES_$_.28 +OBJC_SELECTOR_REFERENCES_.30 +OBJC_CLASSLIST_REFERENCES_$_.31 +_unnamed_cfstring_.33 +OBJC_SELECTOR_REFERENCES_.37 +OBJC_CLASSLIST_REFERENCES_$_.38 +OBJC_CLASSLIST_REFERENCES_$_.47 +OBJC_CLASSLIST_SUP_REFS_$_.50 +OBJC_CLASSLIST_REFERENCES_$_.51 +OBJC_CLASSLIST_REFERENCES_$_.54 OBJC_METH_VAR_TYPE_.58 -OBJC_METH_VAR_NAME_.59 -OBJC_METH_VAR_TYPE_.61 -OBJC_METH_VAR_TYPE_.63 -OBJC_METH_VAR_NAME_.65 -OBJC_METH_VAR_NAME_.67 -OBJC_METH_VAR_NAME_.69 +OBJC_METH_VAR_TYPE_.66 +OBJC_METH_VAR_NAME_.74 +OBJC_METH_VAR_NAME_.76 l_OBJC_$_CLASS_METHODS_RLMObject l_OBJC_METACLASS_RO_$_RLMObject -OBJC_METH_VAR_NAME_.71 -OBJC_METH_VAR_TYPE_.74 -OBJC_METH_VAR_NAME_.76 -OBJC_METH_VAR_TYPE_.77 +OBJC_METH_VAR_TYPE_.82 l_OBJC_$_INSTANCE_METHODS_RLMObject -OBJC_PROP_NAME_ATTR_.78 -OBJC_PROP_NAME_ATTR_.79 -OBJC_PROP_NAME_ATTR_.80 -OBJC_PROP_NAME_ATTR_.81 -OBJC_PROP_NAME_ATTR_.82 l_OBJC_$_PROP_LIST_RLMObject l_OBJC_CLASS_RO_$_RLMObject -OBJC_CLASS_NAME_.83 -OBJC_METH_VAR_NAME_.84 -OBJC_METH_VAR_TYPE_.85 +OBJC_CLASS_NAME_.88 +OBJC_METH_VAR_TYPE_.90 l_OBJC_$_CLASS_METHODS_RLMDynamicObject l_OBJC_METACLASS_RO_$_RLMDynamicObject -OBJC_METH_VAR_NAME_.87 l_OBJC_$_INSTANCE_METHODS_RLMDynamicObject l_OBJC_CLASS_RO_$_RLMDynamicObject +OBJC_CLASSLIST_SUP_REFS_$_.93 +OBJC_IVAR_$_RLMWeakObjectHandle._row +OBJC_IVAR_$_RLMWeakObjectHandle._realm +OBJC_IVAR_$_RLMWeakObjectHandle._objectSchema +OBJC_IVAR_$_RLMWeakObjectHandle._objectClass +OBJC_METH_VAR_NAME_.94 +OBJC_SELECTOR_REFERENCES_.95 +l_OBJC_METACLASS_RO_$_RLMWeakObjectHandle +OBJC_CLASS_NAME_.97 +OBJC_METH_VAR_NAME_.99 +OBJC_METH_VAR_TYPE_.100 +l_OBJC_$_INSTANCE_METHODS_RLMWeakObjectHandle +l_OBJC_$_INSTANCE_VARIABLES_RLMWeakObjectHandle +OBJC_PROP_NAME_ATTR_.110 +OBJC_PROP_NAME_ATTR_.111 +l_OBJC_$_PROP_LIST_RLMWeakObjectHandle +l_OBJC_CLASS_RO_$_RLMWeakObjectHandle +move &> +-[RLMWeakObjectHandle .cxx_construct] +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObject.mm +-[RLMWeakObjectHandle .cxx_destruct] +-[RLMWeakObjectHandle object] +-[RLMWeakObjectHandle initWithObject:] -[RLMDynamicObject setValue:forUndefinedKey:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObject.mm -[RLMDynamicObject valueForUndefinedKey:] +[RLMDynamicObject shouldIncludeInDefaultSchema] +[RLMObject requiredProperties] +[RLMObject ignoredProperties] +[RLMObject primaryKey] +[RLMObject defaultPropertyValues] ++[RLMObject linkingObjectsProperties] +[RLMObject indexedProperties] +[RLMObject className] -[RLMObject isEqualToObject:] --[RLMObject linkingObjectsOfClass:forProperty:] +[RLMObject objectInRealm:forPrimaryKey:] +[RLMObject objectForPrimaryKey:] +[RLMObject objectsInRealm:withPredicate:] @@ -3294,9 +4551,12 @@ OBJC_METH_VAR_NAME_.87 +[RLMObject createInDefaultRealmWithValue:] -[RLMObject initWithObject:] -[RLMObject initWithValue:] +-[RLMObject initWithRealm:schema:] +-[RLMObject initWithValue:schema:] -[RLMObject init] -[RLMObjectBase init] _ZL26RLMInitializedObjectSchemaP13RLMObjectBase +-[RLMObjectBase dealloc] -[RLMObjectBase initWithValue:schema:] _ZL29RLMValidatedObjectForPropertyP11objc_objectP11RLMPropertyP9RLMSchema -[RLMObjectBase initWithRealm:schema:] @@ -3317,146 +4577,111 @@ _ZL29RLMValidatedObjectForPropertyP11objc_objectP11RLMPropertyP9RLMSchema -[RLMObjectBase mutableArrayValueForKey:] -[RLMObjectBase addObserver:forKeyPath:options:context:] -[RLMObjectBase removeObserver:forKeyPath:] --[RLMObjectBase observationInfo] --[RLMObjectBase setObservationInfo:] +[RLMObjectBase automaticallyNotifiesObserversForKey:] -[RLMObjectBase .cxx_destruct] -[RLMObjectBase .cxx_construct] +[RLMObjectUtil ignoredPropertiesForClass:] +[RLMObjectUtil indexedPropertiesForClass:] ++[RLMObjectUtil linkingObjectsPropertiesForClass:] ++[RLMObjectUtil linkingObjectProperties:] +[RLMObjectUtil getGenericListPropertyNames:] ++[RLMObjectUtil getLinkingObjectsProperties:] +[RLMObjectUtil initializeListProperty:property:array:] +[RLMObjectUtil initializeOptionalProperty:property:] ++[RLMObjectUtil initializeLinkingObjectsProperty:property:] +[RLMObjectUtil getOptionalProperties:] +[RLMObjectUtil requiredPropertiesForClass:] -_ZN5realm8BasicRowINS_5TableEED2Ev -OBJC_METH_VAR_NAME_.17 -OBJC_SELECTOR_REFERENCES_.18 -OBJC_SELECTOR_REFERENCES_.20 -OBJC_SELECTOR_REFERENCES_.22 l_OBJC_PROTOCOL_REFERENCE_$_NSFastEnumeration -OBJC_METH_VAR_NAME_.29 -OBJC_SELECTOR_REFERENCES_.30 -OBJC_METH_VAR_NAME_.31 +OBJC_METH_VAR_NAME_.27 +OBJC_SELECTOR_REFERENCES_.28 OBJC_SELECTOR_REFERENCES_.32 -OBJC_CLASSLIST_REFERENCES_$_.43 -OBJC_METH_VAR_NAME_.44 -OBJC_SELECTOR_REFERENCES_.45 -_unnamed_cfstring_.51 -OBJC_SELECTOR_REFERENCES_.53 -_unnamed_cfstring_.55 -OBJC_CLASSLIST_REFERENCES_$_.56 -OBJC_SELECTOR_REFERENCES_.60 -OBJC_METH_VAR_NAME_.61 -OBJC_SELECTOR_REFERENCES_.62 +OBJC_CLASSLIST_REFERENCES_$_.45 +_unnamed_cfstring_.53 +_unnamed_cfstring_.57 +OBJC_CLASSLIST_REFERENCES_$_.58 +OBJC_CLASSLIST_REFERENCES_$_.67 +OBJC_CLASSLIST_REFERENCES_$_.74 +OBJC_SELECTOR_REFERENCES_.88 +_unnamed_cfstring_.90 +OBJC_METH_VAR_NAME_.97 OBJC_SELECTOR_REFERENCES_.98 -OBJC_METH_VAR_NAME_.99 OBJC_SELECTOR_REFERENCES_.100 -OBJC_CLASSLIST_REFERENCES_$_.101 -OBJC_METH_VAR_NAME_.102 -OBJC_SELECTOR_REFERENCES_.103 +OBJC_CLASSLIST_REFERENCES_$_.103 OBJC_SELECTOR_REFERENCES_.105 -OBJC_METH_VAR_NAME_.108 OBJC_SELECTOR_REFERENCES_.109 _ZZ54+[RLMObjectBase automaticallyNotifiesObserversForKey:]E19accessorClassPrefix -OBJC_CLASSLIST_SUP_REFS_$_.112 -OBJC_METH_VAR_NAME_.113 -OBJC_SELECTOR_REFERENCES_.114 -OBJC_CLASS_NAME_.115 -OBJC_METH_VAR_TYPE_.116 -OBJC_METH_VAR_NAME_.117 -OBJC_METH_VAR_TYPE_.118 +OBJC_CLASSLIST_SUP_REFS_$_.114 +OBJC_SELECTOR_REFERENCES_.116 +OBJC_CLASS_NAME_.117 OBJC_METH_VAR_NAME_.119 OBJC_METH_VAR_TYPE_.120 l_OBJC_$_CLASS_METHODS_RLMObjectBase l_OBJC_METACLASS_RO_$_RLMObjectBase -OBJC_METH_VAR_TYPE_.127 -OBJC_METH_VAR_TYPE_.131 -OBJC_METH_VAR_TYPE_.138 +OBJC_METH_VAR_TYPE_.125 +OBJC_METH_VAR_TYPE_.129 +OBJC_METH_VAR_NAME_.133 +OBJC_METH_VAR_TYPE_.134 l_OBJC_$_INSTANCE_METHODS_RLMObjectBase -OBJC_METH_VAR_NAME_.140 -OBJC_METH_VAR_TYPE_.141 -OBJC_METH_VAR_TYPE_.143 -OBJC_METH_VAR_TYPE_.145 -OBJC_METH_VAR_TYPE_.147 +OBJC_METH_VAR_NAME_.138 +OBJC_METH_VAR_NAME_.142 +OBJC_METH_VAR_NAME_.144 l_OBJC_$_INSTANCE_VARIABLES_RLMObjectBase -OBJC_PROP_NAME_ATTR_.148 l_OBJC_$_PROP_LIST_RLMObjectBase l_OBJC_CLASS_RO_$_RLMObjectBase -.str.149 -_unnamed_cfstring_.150 -OBJC_SELECTOR_REFERENCES_.152 -.str.153 -_unnamed_cfstring_.154 -OBJC_SELECTOR_REFERENCES_.156 -_unnamed_cfstring_.158 -OBJC_SELECTOR_REFERENCES_.160 -OBJC_SELECTOR_REFERENCES_.162 -_unnamed_cfstring_.164 -OBJC_METH_VAR_NAME_.165 -OBJC_SELECTOR_REFERENCES_.166 -OBJC_CLASSLIST_REFERENCES_$_.167 -OBJC_SELECTOR_REFERENCES_.171 -OBJC_CLASSLIST_REFERENCES_$_.172 -OBJC_METH_VAR_NAME_.173 -OBJC_SELECTOR_REFERENCES_.174 -OBJC_METH_VAR_NAME_.175 -OBJC_SELECTOR_REFERENCES_.176 -OBJC_SELECTOR_REFERENCES_.178 -OBJC_METH_VAR_NAME_.179 -OBJC_SELECTOR_REFERENCES_.180 -OBJC_CLASSLIST_REFERENCES_$_.181 -_unnamed_cfstring_.183 +OBJC_SELECTOR_REFERENCES_.148 +OBJC_CLASSLIST_REFERENCES_$_.149 +_unnamed_cfstring_.151 +OBJC_METH_VAR_NAME_.152 +OBJC_SELECTOR_REFERENCES_.153 +_unnamed_cfstring_.155 _ZZ18RLMObjectUtilClassE14objectUtilObjc _ZGVZ18RLMObjectUtilClassE14objectUtilObjc +OBJC_CLASSLIST_REFERENCES_$_.156 _ZZ18RLMObjectUtilClassE15objectUtilSwift _ZGVZ18RLMObjectUtilClassE15objectUtilSwift -.str.187 -_unnamed_cfstring_.188 -OBJC_METH_VAR_NAME_.191 -OBJC_SELECTOR_REFERENCES_.192 -OBJC_METH_VAR_NAME_.193 -OBJC_SELECTOR_REFERENCES_.194 -OBJC_CLASS_NAME_.195 -OBJC_METH_VAR_NAME_.196 -OBJC_METH_VAR_TYPE_.197 -OBJC_METH_VAR_NAME_.199 -OBJC_METH_VAR_NAME_.203 -OBJC_METH_VAR_NAME_.204 +_unnamed_cfstring_.158 +OBJC_METH_VAR_NAME_.159 +OBJC_SELECTOR_REFERENCES_.160 +OBJC_METH_VAR_NAME_.163 +OBJC_SELECTOR_REFERENCES_.164 +OBJC_CLASS_NAME_.167 +OBJC_METH_VAR_NAME_.173 +OBJC_METH_VAR_NAME_.174 +OBJC_METH_VAR_NAME_.177 +OBJC_METH_VAR_NAME_.180 l_OBJC_$_CLASS_METHODS_RLMObjectUtil l_OBJC_METACLASS_RO_$_RLMObjectUtil l_OBJC_CLASS_RO_$_RLMObjectUtil -OBJC_SELECTOR_REFERENCES_.206 -OBJC_METH_VAR_NAME_.207 -OBJC_SELECTOR_REFERENCES_.208 -OBJC_METH_VAR_NAME_.209 -OBJC_SELECTOR_REFERENCES_.210 -OBJC_SELECTOR_REFERENCES_.212 -OBJC_SELECTOR_REFERENCES_.213 -OBJC_METH_VAR_NAME_.214 -OBJC_SELECTOR_REFERENCES_.215 -_unnamed_cfstring_.217 -OBJC_CLASSLIST_REFERENCES_$_.218 -OBJC_METH_VAR_NAME_.221 -OBJC_SELECTOR_REFERENCES_.222 -OBJC_CLASSLIST_REFERENCES_$_.223 -get_backlink -get_backlink_count -~RowBase -~BasicRow -RowBase -BasicRow -forward -make_unique +OBJC_SELECTOR_REFERENCES_.182 +OBJC_METH_VAR_NAME_.183 +OBJC_SELECTOR_REFERENCES_.184 +OBJC_METH_VAR_NAME_.185 +OBJC_SELECTOR_REFERENCES_.186 +OBJC_METH_VAR_NAME_.187 +OBJC_SELECTOR_REFERENCES_.188 +OBJC_METH_VAR_NAME_.189 +OBJC_SELECTOR_REFERENCES_.190 +OBJC_METH_VAR_NAME_.192 +OBJC_SELECTOR_REFERENCES_.193 +OBJC_SELECTOR_REFERENCES_.195 +_unnamed_cfstring_.197 +OBJC_CLASSLIST_REFERENCES_$_.198 +OBJC_CLASSLIST_REFERENCES_$_.199 +OBJC_SELECTOR_REFERENCES_.201 +OBJC_CLASSLIST_REFERENCES_$_.204 RLMDynamicCast RLMValidatedObjectForProperty -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectBase.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObjectBase.mm RLMInitializedObjectSchema +[RLMObjectUtil requiredPropertiesForClass:] +[RLMObjectUtil getOptionalProperties:] ++[RLMObjectUtil initializeLinkingObjectsProperty:property:] +[RLMObjectUtil initializeOptionalProperty:property:] +[RLMObjectUtil initializeListProperty:property:array:] ++[RLMObjectUtil getLinkingObjectsProperties:] +[RLMObjectUtil getGenericListPropertyNames:] ++[RLMObjectUtil linkingObjectProperties:] ++[RLMObjectUtil linkingObjectsPropertiesForClass:] +[RLMObjectUtil indexedPropertiesForClass:] +[RLMObjectUtil ignoredPropertiesForClass:] RLMObjectUtilClass @@ -3464,7 +4689,6 @@ RLMValidatedValueForProperty RLMObjectBaseAreEqual RLMObjectBaseSetObjectForKeyedSubscript RLMObjectBaseObjectForKeyedSubscript -RLMObjectBaseLinkingObjectsOfClass RLMObjectBaseObjectSchema RLMObjectBaseSetObjectSchema RLMObjectBaseRealm @@ -3472,8 +4696,6 @@ RLMObjectBaseSetRealm -[RLMObjectBase .cxx_construct] -[RLMObjectBase .cxx_destruct] +[RLMObjectBase automaticallyNotifiesObserversForKey:] --[RLMObjectBase setObservationInfo:] --[RLMObjectBase observationInfo] -[RLMObjectBase removeObserver:forKeyPath:] -[RLMObjectBase addObserver:forKeyPath:options:context:] -[RLMObjectBase mutableArrayValueForKey:] @@ -3493,23 +4715,31 @@ RLMObjectBaseSetRealm -[RLMObjectBase valueForKey:] -[RLMObjectBase initWithRealm:schema:] -[RLMObjectBase initWithValue:schema:] +-[RLMObjectBase dealloc] -[RLMObjectBase init] -[RLMObjectSchema initWithClassName:objectClass:properties:] -[RLMObjectSchema objectForKeyedSubscript:] -[RLMObjectSchema setProperties:] +-[RLMObjectSchema setComputedProperties:] +-[RLMObjectSchema _propertiesDidChange] -[RLMObjectSchema setPrimaryKeyProperty:] +[RLMObjectSchema schemaForObjectClass:] __40+[RLMObjectSchema schemaForObjectClass:]_block_invoke +__40+[RLMObjectSchema schemaForObjectClass:]_block_invoke_2 +__40+[RLMObjectSchema schemaForObjectClass:]_block_invoke_3 +[RLMObjectSchema propertiesForClass:isSwift:] __46+[RLMObjectSchema propertiesForClass:isSwift:]_block_invoke -__copy_helper_block_.139 -__destroy_helper_block_.140 -__46+[RLMObjectSchema propertiesForClass:isSwift:]_block_invoke.153 +__copy_helper_block_.143 +__destroy_helper_block_.144 +__46+[RLMObjectSchema propertiesForClass:isSwift:]_block_invoke.155 +__copy_helper_block_.156 +__destroy_helper_block_.157 +__46+[RLMObjectSchema propertiesForClass:isSwift:]_block_invoke.169 __46+[RLMObjectSchema propertiesForClass:isSwift:]_block_invoke_2 -__copy_helper_block_.154 -__destroy_helper_block_.155 -__copy_helper_block_.165 -__destroy_helper_block_.166 +__copy_helper_block_.170 +__destroy_helper_block_.171 +__copy_helper_block_.181 +__destroy_helper_block_.182 -[RLMObjectSchema copyWithZone:] -[RLMObjectSchema shallowCopy] -[RLMObjectSchema isEqualToObjectSchema:] @@ -3522,12 +4752,13 @@ __destroy_helper_block_.166 __41-[RLMObjectSchema sortPropertiesByColumn]_block_invoke -[RLMObjectSchema propertiesInDeclaredOrder] __44-[RLMObjectSchema propertiesInDeclaredOrder]_block_invoke +-[RLMObjectSchema swiftGenericProperties] -[RLMObjectSchema properties] -[RLMObjectSchema className] -[RLMObjectSchema setClassName:] -[RLMObjectSchema primaryKeyProperty] --[RLMObjectSchema propertiesByName] --[RLMObjectSchema setPropertiesByName:] +-[RLMObjectSchema allPropertiesByName] +-[RLMObjectSchema setAllPropertiesByName:] -[RLMObjectSchema isSwiftClass] -[RLMObjectSchema setIsSwiftClass:] -[RLMObjectSchema objectClass] @@ -3536,203 +4767,237 @@ __44-[RLMObjectSchema propertiesInDeclaredOrder]_block_invoke -[RLMObjectSchema setAccessorClass:] -[RLMObjectSchema standaloneClass] -[RLMObjectSchema setStandaloneClass:] +-[RLMObjectSchema computedProperties] -[RLMObjectSchema realm] -[RLMObjectSchema setRealm:] -[RLMObjectSchema .cxx_destruct] -[RLMObjectSchema .cxx_construct] -OBJC_IVAR_$_RLMObjectSchema._propertiesByName +OBJC_IVAR_$_RLMObjectSchema._allPropertiesByName OBJC_IVAR_$_RLMObjectSchema._properties OBJC_IVAR_$_RLMObjectSchema._propertiesInDeclaredOrder +OBJC_IVAR_$_RLMObjectSchema._computedProperties OBJC_IVAR_$_RLMObjectSchema._primaryKeyProperty -OBJC_CLASSLIST_REFERENCES_$_.37 -OBJC_CLASSLIST_REFERENCES_$_.42 +OBJC_CLASSLIST_REFERENCES_$_.44 OBJC_CLASSLIST_REFERENCES_$_.52 -OBJC_SELECTOR_REFERENCES_.56 -OBJC_CLASSLIST_REFERENCES_$_.57 -OBJC_CLASSLIST_REFERENCES_$_.58 -_unnamed_cfstring_.73 -_unnamed_cfstring_.75 +__block_descriptor_tmp.61 +__block_literal_global.62 +OBJC_CLASSLIST_REFERENCES_$_.71 +__block_descriptor_tmp.75 OBJC_SELECTOR_REFERENCES_.77 -OBJC_METH_VAR_NAME_.80 +_unnamed_cfstring_.79 OBJC_SELECTOR_REFERENCES_.81 -OBJC_METH_VAR_NAME_.82 OBJC_SELECTOR_REFERENCES_.83 -OBJC_SELECTOR_REFERENCES_.85 -_unnamed_cfstring_.89 +_unnamed_cfstring_.85 +_unnamed_cfstring_.87 +OBJC_METH_VAR_NAME_.88 +OBJC_SELECTOR_REFERENCES_.89 OBJC_METH_VAR_NAME_.90 OBJC_SELECTOR_REFERENCES_.91 -_unnamed_cfstring_.93 -OBJC_METH_VAR_NAME_.94 -OBJC_SELECTOR_REFERENCES_.95 -OBJC_CLASSLIST_REFERENCES_$_.96 -.str.97 -_unnamed_cfstring_.98 -_unnamed_cfstring_.102 -_unnamed_cfstring_.106 -OBJC_METH_VAR_NAME_.107 -OBJC_SELECTOR_REFERENCES_.108 -OBJC_METH_VAR_NAME_.109 -OBJC_SELECTOR_REFERENCES_.110 -OBJC_METH_VAR_NAME_.111 -OBJC_SELECTOR_REFERENCES_.112 -OBJC_CLASSLIST_REFERENCES_$_.113 -OBJC_SELECTOR_REFERENCES_.121 -OBJC_METH_VAR_NAME_.122 -OBJC_SELECTOR_REFERENCES_.123 -OBJC_CLASSLIST_REFERENCES_$_.124 +OBJC_METH_VAR_NAME_.96 +OBJC_SELECTOR_REFERENCES_.97 +_unnamed_cfstring_.101 +_unnamed_cfstring_.103 +.str.106 +_unnamed_cfstring_.107 +OBJC_CLASSLIST_REFERENCES_$_.116 +OBJC_SELECTOR_REFERENCES_.118 +OBJC_SELECTOR_REFERENCES_.120 +OBJC_SELECTOR_REFERENCES_.122 +OBJC_CLASSLIST_REFERENCES_$_.123 +OBJC_SELECTOR_REFERENCES_.125 +OBJC_SELECTOR_REFERENCES_.127 +OBJC_CLASSLIST_REFERENCES_$_.128 +OBJC_SELECTOR_REFERENCES_.130 +OBJC_METH_VAR_NAME_.131 OBJC_SELECTOR_REFERENCES_.132 OBJC_SELECTOR_REFERENCES_.134 +OBJC_SELECTOR_REFERENCES_.136 OBJC_SELECTOR_REFERENCES_.138 -.str.141 -OBJC_SELECTOR_REFERENCES_.146 -OBJC_SELECTOR_REFERENCES_.148 +OBJC_SELECTOR_REFERENCES_.140 +OBJC_SELECTOR_REFERENCES_.142 +__block_descriptor_tmp.146 OBJC_METH_VAR_NAME_.149 OBJC_SELECTOR_REFERENCES_.150 -__block_descriptor_tmp.156 -OBJC_SELECTOR_REFERENCES_.158 -OBJC_METH_VAR_NAME_.163 -OBJC_SELECTOR_REFERENCES_.164 -.str.167 -__block_descriptor_tmp.168 -OBJC_METH_VAR_NAME_.169 -OBJC_SELECTOR_REFERENCES_.170 -OBJC_METH_VAR_NAME_.171 -OBJC_SELECTOR_REFERENCES_.172 -_unnamed_cfstring_.174 -_unnamed_cfstring_.176 +OBJC_SELECTOR_REFERENCES_.152 +OBJC_SELECTOR_REFERENCES_.154 +__block_descriptor_tmp.158 +.str.159 +_unnamed_cfstring_.160 +.str.161 +_unnamed_cfstring_.162 +__block_descriptor_tmp.172 +OBJC_SELECTOR_REFERENCES_.174 +OBJC_SELECTOR_REFERENCES_.176 +OBJC_SELECTOR_REFERENCES_.178 +OBJC_SELECTOR_REFERENCES_.180 +_unnamed_cfstring_.190 +_unnamed_cfstring_.192 +OBJC_METH_VAR_NAME_.193 +OBJC_SELECTOR_REFERENCES_.194 +OBJC_SELECTOR_REFERENCES_.196 OBJC_IVAR_$_RLMObjectSchema._objectClass OBJC_IVAR_$_RLMObjectSchema._className OBJC_IVAR_$_RLMObjectSchema._accessorClass OBJC_IVAR_$_RLMObjectSchema._standaloneClass -OBJC_IVAR_$_RLMObjectSchema._isSwiftClass -OBJC_SELECTOR_REFERENCES_.182 -OBJC_SELECTOR_REFERENCES_.184 -OBJC_CLASSLIST_REFERENCES_$_.185 -OBJC_METH_VAR_NAME_.186 -OBJC_SELECTOR_REFERENCES_.187 -.str.188 -_unnamed_cfstring_.189 -OBJC_METH_VAR_NAME_.190 -OBJC_SELECTOR_REFERENCES_.191 -.str.192 -_unnamed_cfstring_.193 -.str.194 -_unnamed_cfstring_.195 -OBJC_SELECTOR_REFERENCES_.197 -OBJC_SELECTOR_REFERENCES_.199 -_unnamed_cfstring_.201 -OBJC_IVAR_$_RLMObjectSchema._table -OBJC_IVAR_$_RLMObjectSchema._realm -OBJC_SELECTOR_REFERENCES_.203 -_unnamed_cfstring_.210 -OBJC_CLASSLIST_REFERENCES_$_.211 -__block_descriptor_tmp.213 +OBJC_SELECTOR_REFERENCES_.198 +OBJC_IVAR_$_RLMObjectSchema._swiftGenericProperties +OBJC_METH_VAR_NAME_.201 +OBJC_SELECTOR_REFERENCES_.202 +OBJC_CLASSLIST_REFERENCES_$_.203 +.str.206 +_unnamed_cfstring_.207 +OBJC_METH_VAR_NAME_.208 +OBJC_SELECTOR_REFERENCES_.209 +.str.210 +_unnamed_cfstring_.211 +.str.212 +_unnamed_cfstring_.213 +OBJC_METH_VAR_NAME_.214 +OBJC_SELECTOR_REFERENCES_.215 OBJC_METH_VAR_NAME_.216 OBJC_SELECTOR_REFERENCES_.217 -__block_descriptor_tmp.218 -__block_literal_global.219 -OBJC_CLASS_NAME_.220 -OBJC_METH_VAR_TYPE_.222 -OBJC_METH_VAR_TYPE_.224 -l_OBJC_$_CLASS_METHODS_RLMObjectSchema -OBJC_METH_VAR_TYPE_.226 -OBJC_CLASS_NAME_.227 -l_OBJC_$_PROTOCOL_INSTANCE_METHODS_NSCopying -l_OBJC_$_PROTOCOL_METHOD_TYPES_NSCopying -l_OBJC_PROTOCOL_$_NSCopying -l_OBJC_LABEL_PROTOCOL_$_NSCopying -l_OBJC_CLASS_PROTOCOLS_$_RLMObjectSchema -l_OBJC_METACLASS_RO_$_RLMObjectSchema -OBJC_CLASS_NAME_.228 -OBJC_METH_VAR_TYPE_.231 -OBJC_METH_VAR_TYPE_.232 -OBJC_METH_VAR_TYPE_.234 -OBJC_METH_VAR_TYPE_.236 +.str.218 +_unnamed_cfstring_.219 +OBJC_IVAR_$_RLMObjectSchema._table +OBJC_IVAR_$_RLMObjectSchema._realm +.str.224 +OBJC_METH_VAR_NAME_.225 +OBJC_SELECTOR_REFERENCES_.226 +.str.229 +_unnamed_cfstring_.230 +OBJC_CLASSLIST_REFERENCES_$_.231 +OBJC_METH_VAR_NAME_.232 +OBJC_SELECTOR_REFERENCES_.233 +__block_descriptor_tmp.235 +__block_literal_global.236 OBJC_METH_VAR_NAME_.237 -OBJC_METH_VAR_TYPE_.238 +OBJC_SELECTOR_REFERENCES_.238 OBJC_METH_VAR_NAME_.239 -OBJC_METH_VAR_TYPE_.240 -OBJC_METH_VAR_NAME_.241 -OBJC_METH_VAR_TYPE_.242 -OBJC_METH_VAR_TYPE_.244 +OBJC_SELECTOR_REFERENCES_.240 +_ZZ41-[RLMObjectSchema swiftGenericProperties]E18s_swiftObjectClass +_ZGVZ41-[RLMObjectSchema swiftGenericProperties]E18s_swiftObjectClass +.str.243 +_unnamed_cfstring_.244 OBJC_METH_VAR_NAME_.245 -OBJC_METH_VAR_NAME_.248 +OBJC_SELECTOR_REFERENCES_.246 +OBJC_METH_VAR_NAME_.247 +OBJC_SELECTOR_REFERENCES_.248 +OBJC_CLASS_NAME_.249 OBJC_METH_VAR_NAME_.250 OBJC_METH_VAR_TYPE_.251 -OBJC_METH_VAR_TYPE_.252 -OBJC_METH_VAR_TYPE_.254 +OBJC_METH_VAR_NAME_.252 +OBJC_METH_VAR_TYPE_.253 +l_OBJC_$_CLASS_METHODS_RLMObjectSchema +OBJC_METH_VAR_NAME_.254 OBJC_METH_VAR_TYPE_.255 -OBJC_METH_VAR_NAME_.257 -OBJC_METH_VAR_NAME_.258 -OBJC_METH_VAR_NAME_.259 -l_OBJC_$_INSTANCE_METHODS_RLMObjectSchema -OBJC_METH_VAR_NAME_.260 +OBJC_CLASS_NAME_.256 +l_OBJC_$_PROTOCOL_INSTANCE_METHODS_NSCopying +l_OBJC_$_PROTOCOL_METHOD_TYPES_NSCopying +l_OBJC_PROTOCOL_$_NSCopying +l_OBJC_LABEL_PROTOCOL_$_NSCopying +l_OBJC_CLASS_PROTOCOLS_$_RLMObjectSchema +l_OBJC_METACLASS_RO_$_RLMObjectSchema +OBJC_CLASS_NAME_.257 +OBJC_METH_VAR_TYPE_.259 +OBJC_METH_VAR_TYPE_.260 OBJC_METH_VAR_TYPE_.261 -OBJC_METH_VAR_NAME_.262 -OBJC_METH_VAR_TYPE_.263 -OBJC_METH_VAR_NAME_.264 -OBJC_METH_VAR_TYPE_.265 -OBJC_METH_VAR_NAME_.266 -OBJC_METH_VAR_TYPE_.267 -OBJC_METH_VAR_NAME_.268 -OBJC_METH_VAR_NAME_.269 +OBJC_METH_VAR_TYPE_.262 +OBJC_METH_VAR_NAME_.263 +OBJC_METH_VAR_TYPE_.264 +OBJC_METH_VAR_NAME_.265 +OBJC_METH_VAR_TYPE_.266 +OBJC_METH_VAR_NAME_.267 +OBJC_METH_VAR_TYPE_.268 OBJC_METH_VAR_TYPE_.270 -OBJC_METH_VAR_TYPE_.272 -OBJC_METH_VAR_TYPE_.274 -OBJC_METH_VAR_TYPE_.276 +OBJC_METH_VAR_TYPE_.271 +OBJC_METH_VAR_NAME_.272 +OBJC_METH_VAR_NAME_.273 +OBJC_METH_VAR_NAME_.274 +OBJC_METH_VAR_NAME_.275 +OBJC_METH_VAR_NAME_.276 +OBJC_METH_VAR_NAME_.277 OBJC_METH_VAR_NAME_.278 +OBJC_METH_VAR_NAME_.279 OBJC_METH_VAR_TYPE_.280 +OBJC_METH_VAR_TYPE_.281 +OBJC_METH_VAR_NAME_.282 +OBJC_METH_VAR_TYPE_.283 +OBJC_METH_VAR_TYPE_.284 +OBJC_METH_VAR_NAME_.285 +OBJC_METH_VAR_NAME_.286 +OBJC_METH_VAR_NAME_.287 +OBJC_METH_VAR_NAME_.288 +l_OBJC_$_INSTANCE_METHODS_RLMObjectSchema +OBJC_METH_VAR_NAME_.289 +OBJC_METH_VAR_TYPE_.290 +OBJC_METH_VAR_NAME_.291 +OBJC_METH_VAR_TYPE_.292 +OBJC_METH_VAR_NAME_.293 +OBJC_METH_VAR_TYPE_.294 +OBJC_METH_VAR_TYPE_.296 +OBJC_METH_VAR_NAME_.297 +OBJC_METH_VAR_NAME_.298 +OBJC_METH_VAR_NAME_.299 +OBJC_METH_VAR_TYPE_.300 +OBJC_METH_VAR_NAME_.301 +OBJC_METH_VAR_TYPE_.302 +OBJC_METH_VAR_TYPE_.304 +OBJC_METH_VAR_NAME_.305 +OBJC_METH_VAR_TYPE_.306 +OBJC_METH_VAR_NAME_.307 +OBJC_METH_VAR_NAME_.308 +OBJC_METH_VAR_NAME_.309 +OBJC_METH_VAR_NAME_.310 +OBJC_METH_VAR_TYPE_.311 l_OBJC_$_INSTANCE_VARIABLES_RLMObjectSchema -OBJC_PROP_NAME_ATTR_.281 -OBJC_PROP_NAME_ATTR_.282 -OBJC_PROP_NAME_ATTR_.283 -OBJC_PROP_NAME_ATTR_.284 -OBJC_PROP_NAME_ATTR_.285 -OBJC_PROP_NAME_ATTR_.286 -OBJC_PROP_NAME_ATTR_.287 -OBJC_PROP_NAME_ATTR_.288 -OBJC_PROP_NAME_ATTR_.289 -OBJC_PROP_NAME_ATTR_.290 -OBJC_PROP_NAME_ATTR_.291 -OBJC_PROP_NAME_ATTR_.292 -OBJC_PROP_NAME_ATTR_.293 -OBJC_PROP_NAME_ATTR_.294 -OBJC_PROP_NAME_ATTR_.295 -OBJC_PROP_NAME_ATTR_.296 -OBJC_PROP_NAME_ATTR_.297 -OBJC_PROP_NAME_ATTR_.298 -OBJC_PROP_NAME_ATTR_.299 -OBJC_PROP_NAME_ATTR_.300 -OBJC_PROP_NAME_ATTR_.301 +OBJC_PROP_NAME_ATTR_.312 +OBJC_PROP_NAME_ATTR_.313 +OBJC_PROP_NAME_ATTR_.314 +OBJC_PROP_NAME_ATTR_.315 +OBJC_PROP_NAME_ATTR_.316 +OBJC_PROP_NAME_ATTR_.317 +OBJC_PROP_NAME_ATTR_.318 +OBJC_PROP_NAME_ATTR_.319 +OBJC_PROP_NAME_ATTR_.320 +OBJC_PROP_NAME_ATTR_.321 +OBJC_PROP_NAME_ATTR_.322 +OBJC_PROP_NAME_ATTR_.323 +OBJC_PROP_NAME_ATTR_.324 +OBJC_PROP_NAME_ATTR_.325 +OBJC_PROP_NAME_ATTR_.326 +OBJC_PROP_NAME_ATTR_.327 +OBJC_PROP_NAME_ATTR_.328 +OBJC_PROP_NAME_ATTR_.329 +OBJC_PROP_NAME_ATTR_.330 +OBJC_PROP_NAME_ATTR_.331 +OBJC_PROP_NAME_ATTR_.332 +OBJC_PROP_NAME_ATTR_.333 +OBJC_PROP_NAME_ATTR_.334 +OBJC_PROP_NAME_ATTR_.335 l_OBJC_$_PROP_LIST_RLMObjectSchema l_OBJC_CLASS_RO_$_RLMObjectSchema -.str.302 -_unnamed_cfstring_.303 -_unnamed_cfstring_.305 -.str.306 -_unnamed_cfstring_.307 -.str.308 -_unnamed_cfstring_.309 -.str.310 -_unnamed_cfstring_.311 -.str.312 -_unnamed_cfstring_.313 -.str.314 -_unnamed_cfstring_.315 -.str.316 -_unnamed_cfstring_.317 -.str.318 -_unnamed_cfstring_.319 -.str.320 -_unnamed_cfstring_.321 -.str.322 -_unnamed_cfstring_.323 -OBJC_CLASSLIST_REFERENCES_$_.324 -OBJC_METH_VAR_NAME_.325 -OBJC_SELECTOR_REFERENCES_.326 -OBJC_METH_VAR_NAME_.327 -OBJC_SELECTOR_REFERENCES_.328 -OBJC_CLASSLIST_REFERENCES_$_.329 +.str.336 +_unnamed_cfstring_.337 +.str.338 +_unnamed_cfstring_.339 +.str.340 +_unnamed_cfstring_.341 +_unnamed_cfstring_.343 +.str.348 +_unnamed_cfstring_.349 +.str.350 +_unnamed_cfstring_.351 +.str.352 +_unnamed_cfstring_.353 +.str.354 +_unnamed_cfstring_.355 +.str.356 +_unnamed_cfstring_.357 +.str.358 +_unnamed_cfstring_.359 +OBJC_CLASSLIST_REFERENCES_$_.365 +OBJC_METH_VAR_NAME_.366 +OBJC_SELECTOR_REFERENCES_.367 forward RLMCoerceToNil __to_raw_pointer @@ -3740,11 +5005,12 @@ __destroy destroy RLMTypeToString -[RLMObjectSchema .cxx_construct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectSchema.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObjectSchema.mm -[RLMObjectSchema .cxx_destruct] -[RLMObjectSchema setRealm:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectSchema_Private.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObjectSchema_Private.h -[RLMObjectSchema realm] +-[RLMObjectSchema computedProperties] -[RLMObjectSchema setStandaloneClass:] -[RLMObjectSchema standaloneClass] -[RLMObjectSchema setAccessorClass:] @@ -3753,13 +5019,14 @@ RLMTypeToString -[RLMObjectSchema objectClass] -[RLMObjectSchema setIsSwiftClass:] -[RLMObjectSchema isSwiftClass] --[RLMObjectSchema setPropertiesByName:] --[RLMObjectSchema propertiesByName] +-[RLMObjectSchema setAllPropertiesByName:] +-[RLMObjectSchema allPropertiesByName] -[RLMObjectSchema primaryKeyProperty] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectSchema.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObjectSchema.h -[RLMObjectSchema setClassName:] -[RLMObjectSchema className] -[RLMObjectSchema properties] +-[RLMObjectSchema swiftGenericProperties] -[RLMObjectSchema propertiesInDeclaredOrder] -[RLMObjectSchema sortPropertiesByColumn] +[RLMObjectSchema objectSchemaForObjectStoreSchema:] @@ -3773,6 +5040,8 @@ RLMTypeToString +[RLMObjectSchema propertiesForClass:isSwift:] +[RLMObjectSchema schemaForObjectClass:] -[RLMObjectSchema setPrimaryKeyProperty:] +-[RLMObjectSchema _propertiesDidChange] +-[RLMObjectSchema setComputedProperties:] -[RLMObjectSchema setProperties:] -[RLMObjectSchema objectForKeyedSubscript:] -[RLMObjectSchema initWithClassName:objectClass:properties:] @@ -3781,55 +5050,38 @@ __RLMDeleteObjectFromRealm_block_invoke _ZN5realm7ResultsC2Ev _GLOBAL__sub_I_RLMObjectStore.mm _ZL16s_accessorSchema -_ZZ34RLMInitializeSwiftAccessorGenericsE18s_swiftObjectClass -_ZGVZ34RLMInitializeSwiftAccessorGenericsE18s_swiftObjectClass -OBJC_METH_VAR_NAME_.36 -OBJC_SELECTOR_REFERENCES_.37 -OBJC_CLASSLIST_REFERENCES_$_.38 -OBJC_SELECTOR_REFERENCES_.68 -OBJC_SELECTOR_REFERENCES_.70 -OBJC_SELECTOR_REFERENCES_.72 -OBJC_SELECTOR_REFERENCES_.88 -OBJC_CLASSLIST_REFERENCES_$_.99 -OBJC_SELECTOR_REFERENCES_.101 -.str.102 -_unnamed_cfstring_.103 -_unnamed_cfstring_.105 -.str.106 -OBJC_CLASSLIST_REFERENCES_$_.107 +OBJC_CLASSLIST_REFERENCES_$_.30 +OBJC_SELECTOR_REFERENCES_.82 +OBJC_CLASSLIST_REFERENCES_$_.105 +.str.110 +_unnamed_cfstring_.111 +.str.112 _unnamed_cfstring_.113 -.str.114 -_unnamed_cfstring_.115 +.str.118 +_unnamed_cfstring_.119 +.str.121 .str.122 -.str.125 -.str.126 -.str.127 -.str.128 -_unnamed_cfstring_.129 -OBJC_CLASS_NAME_.130 -OBJC_CLASSLIST_REFERENCES_$_.135 -.str.138 +_unnamed_cfstring_.127 +OBJC_CLASS_NAME_.128 +_unnamed_cfstring_.132 +OBJC_CLASSLIST_REFERENCES_$_.133 +OBJC_SELECTOR_REFERENCES_.135 _unnamed_cfstring_.139 OBJC_SELECTOR_REFERENCES_.141 -.str.142 -.str.143 -.str.146 -.str.150 -.str.151 -.str.154 -.str.156 -.str.158 -.str.159 -.str.160 -.str.161 .str.162 +.str.163 +.str.165 +OBJC_METH_VAR_NAME_.166 +OBJC_SELECTOR_REFERENCES_.169 +OBJC_CLASSLIST_REFERENCES_$_.170 OBJC_CLASSLIST_REFERENCES_$_.171 -OBJC_CLASSLIST_REFERENCES_$_.173 -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectStore.mm -RLMCreateOrGetRowForObject<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectStore.mm:395:30)> -RLMCreateOrGetRowForObject<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectStore.mm:377:30)> -operator= -RLMCreateOrGetRowForObject<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectStore.mm:186:26)> +OBJC_CLASSLIST_REFERENCES_$_.172 +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObjectStore.mm +RLMDynamicCast +RLMDynamicCast +RLMCreateOrGetRowForObject<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObjectStore.mm:395:30)> +RLMCreateOrGetRowForObject<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObjectStore.mm:377:30)> +RLMCreateOrGetRowForObject<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObjectStore.mm:185:26)> RLMVerifyRealmRead _ZZ31RLMCreateObjectInRealmWithValueEN3$_2C2ERKS_ _ZZ31RLMCreateObjectInRealmWithValueEN3$_2C1ERKS_ @@ -3839,7 +5091,7 @@ RLMValidateValueForProperty _ZZ31RLMCreateObjectInRealmWithValueEN3$_1C2ERKS_ _ZZ31RLMCreateObjectInRealmWithValueEN3$_1C1ERKS_ hasObservers -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.hpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.hpp RLMCreateObjectAccessor RLMGetObject RLMGetObjects @@ -3850,6 +5102,7 @@ RLMAddObjectToRealm RLMInitializeSwiftAccessorGenerics RLMClearAccessorCache RLMRealmCreateAccessors +_ZN5realm8BasicRowINS_5TableEED1Ev ___Z13RLMClearTableP15RLMObjectSchema_block_invoke _ZNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEED1Ev _ZNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEED0Ev @@ -3864,34 +5117,29 @@ _ZL7convertRKN5realm8IndexSetEP17NSMutableIndexSet OBJC_CLASSLIST_REFERENCES_$_.23 _ZZN18RLMObservationInfo11valueForKeyEP8NSStringE16superValueForKey _ZGVZN18RLMObservationInfo11valueForKeyEP8NSStringE16superValueForKey -OBJC_CLASSLIST_REFERENCES_$_.31 -OBJC_CLASSLIST_REFERENCES_$_.51 +OBJC_CLASSLIST_REFERENCES_$_.26 +OBJC_SELECTOR_REFERENCES_.39 OBJC_CLASSLIST_REFERENCES_$_.66 -OBJC_CLASSLIST_REFERENCES_$_.67 _ZTVNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEEE _ZTSNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEEE _ZTSNSt3__110__function6__baseIFvRKN5realm5Group19CascadeNotificationEEEE _ZTINSt3__110__function6__baseIFvRKN5realm5Group19CascadeNotificationEEEE _ZTINSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEEE -OBJC_METH_VAR_NAME_.74 OBJC_SELECTOR_REFERENCES_.75 +OBJC_SELECTOR_REFERENCES_.79 _ZTSZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5 _ZTIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5 -operator-- operator!=, std::__1::__wrap_iter > end > > -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm begin > > operator() -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:476:20)> +forEach<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:485:24)> operator!=, std::__1::__wrap_iter > end > > begin > > -operator== *, const std::__1::pair *> -operator!= *> -Realm/ObjectStore/index_set.hpp convert -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:461:20)> +forEach<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:468:24)> operator== operator!= operator== @@ -3901,10 +5149,8 @@ __insertion_sort_3 &, realm::BindingContext::ObserverState *> __sort4 &, realm::BindingContext::ObserverState *> __sort3 &, realm::BindingContext::ObserverState *> -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/binding_context.hpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/binding_context.hpp swap -__tuple_leaf -forward __tuple_impl<0, 1, const unsigned long &, const unsigned long &, const unsigned long &, const unsigned long &> tie operator(), std::__1::tuple > @@ -3936,11 +5182,8 @@ operator!= operator!=, std::__1::__wrap_iter > end > > begin > > -target_type -__compare_nonunique_names -target forward -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &> operator!= __push_back_slow_path forward @@ -3955,7 +5198,7 @@ operator== end > > begin > > operator() -find_if, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:342:64)> +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:342:64)> move swap move_if_noexcept @@ -3970,66 +5213,58 @@ __construct getObjectSchema operator== operator!= -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &, const realm::Group::CascadeNotification &> -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &, const realm::Group::CascadeNotification &> -destroy_deallocate -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &> -forward &> -forward_as_tuple &> -__func -__clone -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &> -__libcpp_compressed_pair_imp &&, 0, 0> -move &> -__compressed_pair &&> -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &> -forward -forward_as_tuple -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -~__func -~__base -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &&> -forward &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &&, 0, 0> -move &&> &> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51), false> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -__base -allocator, void (const realm::Group::CascadeNotification &)> > -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &> -forward, void (const realm::Group::CascadeNotification &)> > > > -forward, void (const realm::Group::CascadeNotification &)> *> -move, void (const realm::Group::CascadeNotification &)> > > &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> +__invoke<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &, const realm::Group::CascadeNotification &> +__call<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &, const realm::Group::CascadeNotification &> +get<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> &> +__libcpp_compressed_pair_imp &, 0, 0> +move &> &> +__compressed_pair &> +__tuple_leaf &, void> +__tuple_impl<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> &, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> &> +forward &> +forward_as_tuple &> +get<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &> +__libcpp_compressed_pair_imp &&, 0, 0> +move &> +__compressed_pair &&> +__tuple_leaf +__tuple_impl<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &> +forward +forward_as_tuple +allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> +get<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &&> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &&> +get<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> &&> +forward &&> +__libcpp_compressed_pair_imp<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> &&, 0, 0> +move &&> &> +move &> +__compressed_pair<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> &&> +move &> +__tuple_leaf, void> +__tuple_impl<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> > +tuple , false> +forward > +forward_as_tuple > +__tuple_leaf<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51), void> +__tuple_impl<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &&, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> +tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51), false> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> +forward_as_tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> +allocator, void (const realm::Group::CascadeNotification &)> > +move<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &> +forward, void (const realm::Group::CascadeNotification &)> > > > +forward, void (const realm::Group::CascadeNotification &)> *> +move, void (const realm::Group::CascadeNotification &)> > > &> +__not_null<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> +function<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> forward move > **&> swap > **> __construct_backward > *> -__construct_at_end forward > *> &> construct > *> __construct > *> -__append forward > **> operator== operator!= @@ -4043,10 +5278,10 @@ forward &> __push_back_slow_path construct __construct -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:124:17)> -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:119:17)> -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:111:17)> -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:106:17)> +forEach<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:124:17)> +forEach<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:119:17)> +forEach<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:111:17)> +forEach<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:106:17)> swap iter_swap, std::__1::__wrap_iter > __advance > @@ -4065,7 +5300,6 @@ __to_raw_pointer __destroy destroy __to_raw_pointer -~IndexSet ~ColumnInfo __destroy destroy @@ -4120,9 +5354,7 @@ OBJC_IVAR_$_RLMOptionalBase._standaloneValue l_OBJC_METACLASS_RO_$_RLMOptionalBase OBJC_CLASS_NAME_.19 OBJC_METH_VAR_TYPE_.23 -OBJC_METH_VAR_TYPE_.27 OBJC_METH_VAR_TYPE_.28 -OBJC_METH_VAR_TYPE_.30 l_OBJC_$_INSTANCE_METHODS_RLMOptionalBase OBJC_METH_VAR_TYPE_.38 OBJC_METH_VAR_TYPE_.40 @@ -4138,12 +5370,13 @@ OBJC_PROP_NAME_ATTR_.49 OBJC_PROP_NAME_ATTR_.50 l_OBJC_$_PROP_LIST_RLMOptionalBase l_OBJC_CLASS_RO_$_RLMOptionalBase +RLMIsKindOfClass -[RLMOptionalBase .cxx_destruct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMOptionalBase.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMOptionalBase.mm -[RLMOptionalBase setStandaloneValue:] -[RLMOptionalBase standaloneValue] -[RLMOptionalBase setProperty:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMOptionalBase.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMOptionalBase.h -[RLMOptionalBase property] -[RLMOptionalBase setObject:] -[RLMOptionalBase object] @@ -4156,19 +5389,34 @@ OBJC_PROP_NAME_ATTR_.50 -[RLMOptionalBase setUnderlyingValue:] -[RLMOptionalBase underlyingValue] -[RLMOptionalBase init] --[RLMProperty initWithName:type:objectClassName:indexed:optional:] +_ZNK12_GLOBAL__N_130PredicateExpressionTransformer5visitEP11NSPredicate +_ZNK12_GLOBAL__N_130PredicateExpressionTransformer5visitEP12NSExpression +OBJC_CLASSLIST_REFERENCES_$_.3 +OBJC_CLASSLIST_REFERENCES_$_.18 +OBJC_CLASSLIST_REFERENCES_$_.37 +visit +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMPredicateUtil.mm +PredicateExpressionTransformer +transformPredicate ++[RLMProperty propertyForObjectStoreProperty:] +-[RLMProperty initWithName:type:objectClassName:linkOriginPropertyName:indexed:optional:] +-[RLMProperty setName:] -[RLMProperty updateAccessors] -[RLMProperty setObjcCodeFromType] -[RLMProperty setTypeFromRawType] -[RLMProperty parseObjcProperty:] --[RLMProperty initSwiftPropertyWithName:indexed:property:instance:] -__67-[RLMProperty initSwiftPropertyWithName:indexed:property:instance:]_block_invoke --[RLMProperty initWithName:indexed:property:] +-[RLMProperty initSwiftPropertyWithName:indexed:linkPropertyDescriptor:property:instance:] +__90-[RLMProperty initSwiftPropertyWithName:indexed:linkPropertyDescriptor:property:instance:]_block_invoke +-[RLMProperty initWithName:indexed:linkPropertyDescriptor:property:] -[RLMProperty initSwiftListPropertyWithName:ivar:objectClassName:] -[RLMProperty initSwiftOptionalPropertyWithName:indexed:ivar:propertyType:] +-[RLMProperty initSwiftLinkingObjectsPropertyWithName:ivar:objectClassName:linkOriginPropertyName:] -[RLMProperty copyWithZone:] +-[RLMProperty copyWithNewName:] +-[RLMProperty isEqual:] -[RLMProperty isEqualToProperty:] -[RLMProperty description] +-[RLMProperty objectStoreCopy] -[RLMProperty name] -[RLMProperty type] -[RLMProperty setType:] @@ -4176,6 +5424,7 @@ __67-[RLMProperty initSwiftPropertyWithName:indexed:property:instance:]_block_in -[RLMProperty setIndexed:] -[RLMProperty objectClassName] -[RLMProperty setObjectClassName:] +-[RLMProperty linkOriginPropertyName] -[RLMProperty optional] -[RLMProperty setOptional:] -[RLMProperty column] @@ -4199,9 +5448,13 @@ __67-[RLMProperty initSwiftPropertyWithName:indexed:property:instance:]_block_in -[RLMProperty setterSel] -[RLMProperty setSetterSel:] -[RLMProperty .cxx_destruct] ++[RLMPropertyDescriptor descriptorWithClass:propertyName:] +-[RLMPropertyDescriptor objectClass] +-[RLMPropertyDescriptor propertyName] +-[RLMPropertyDescriptor .cxx_destruct] OBJC_IVAR_$_RLMProperty._name -OBJC_IVAR_$_RLMProperty._type OBJC_IVAR_$_RLMProperty._objectClassName +OBJC_IVAR_$_RLMProperty._linkOriginPropertyName OBJC_IVAR_$_RLMProperty._indexed OBJC_IVAR_$_RLMProperty._optional OBJC_IVAR_$_RLMProperty._getterName @@ -4212,101 +5465,166 @@ OBJC_IVAR_$_RLMProperty._objcType OBJC_IVAR_$_RLMProperty._objcRawType _ZZ33-[RLMProperty setTypeFromRawType]E11arrayPrefix _ZZ33-[RLMProperty setTypeFromRawType]E12numberPrefix -_unnamed_cfstring_.30 -_unnamed_cfstring_.34 -_unnamed_cfstring_.40 +_ZZ33-[RLMProperty setTypeFromRawType]E20linkingObjectsPrefix +_unnamed_cfstring_.35 +_unnamed_cfstring_.37 +_unnamed_cfstring_.41 +_unnamed_cfstring_.43 +_unnamed_cfstring_.45 _unnamed_cfstring_.47 -OBJC_SELECTOR_REFERENCES_.58 -OBJC_METH_VAR_NAME_.88 -OBJC_SELECTOR_REFERENCES_.89 -OBJC_METH_VAR_NAME_.92 -OBJC_SELECTOR_REFERENCES_.93 -OBJC_CLASSLIST_REFERENCES_$_.94 -OBJC_CLASSLIST_REFERENCES_$_.95 -.str.103 -_unnamed_cfstring_.104 -OBJC_IVAR_$_RLMProperty._swiftIvar -OBJC_CLASSLIST_REFERENCES_$_.105 +_unnamed_cfstring_.49 +_unnamed_cfstring_.51 +_unnamed_cfstring_.65 +_unnamed_cfstring_.77 +_unnamed_cfstring_.83 +OBJC_SELECTOR_REFERENCES_.85 +_unnamed_cfstring_.89 +_unnamed_cfstring_.91 +_unnamed_cfstring_.93 +_unnamed_cfstring_.95 +_unnamed_cfstring_.97 OBJC_IVAR_$_RLMProperty._isPrimary OBJC_IVAR_$_RLMProperty._declarationIndex -.str.108 -_unnamed_cfstring_.109 -.str.116 -_unnamed_cfstring_.117 +OBJC_SELECTOR_REFERENCES_.121 +OBJC_METH_VAR_NAME_.122 OBJC_IVAR_$_RLMProperty._column +OBJC_SELECTOR_REFERENCES_.129 +OBJC_SELECTOR_REFERENCES_.131 +OBJC_SELECTOR_REFERENCES_.133 +_unnamed_cfstring_.135 +_unnamed_cfstring_.137 +OBJC_SELECTOR_REFERENCES_.139 +l_OBJC_$_CLASS_METHODS_RLMProperty l_OBJC_METACLASS_RO_$_RLMProperty -OBJC_METH_VAR_TYPE_.125 -OBJC_METH_VAR_TYPE_.130 -OBJC_METH_VAR_TYPE_.142 -OBJC_METH_VAR_TYPE_.144 -OBJC_METH_VAR_TYPE_.146 +OBJC_CLASS_NAME_.144 +OBJC_METH_VAR_TYPE_.147 +OBJC_METH_VAR_NAME_.150 OBJC_METH_VAR_TYPE_.151 -OBJC_METH_VAR_NAME_.158 +OBJC_METH_VAR_TYPE_.153 +OBJC_METH_VAR_NAME_.154 +OBJC_METH_VAR_TYPE_.155 +OBJC_METH_VAR_NAME_.156 +OBJC_METH_VAR_TYPE_.157 +OBJC_METH_VAR_TYPE_.159 OBJC_METH_VAR_NAME_.160 -OBJC_METH_VAR_NAME_.166 -OBJC_METH_VAR_NAME_.172 -OBJC_METH_VAR_NAME_.174 -l_OBJC_$_INSTANCE_METHODS_RLMProperty +OBJC_METH_VAR_TYPE_.161 +OBJC_METH_VAR_NAME_.162 +OBJC_METH_VAR_TYPE_.163 +OBJC_METH_VAR_TYPE_.165 +OBJC_METH_VAR_TYPE_.167 +OBJC_METH_VAR_TYPE_.175 OBJC_METH_VAR_NAME_.176 -OBJC_METH_VAR_TYPE_.177 -OBJC_METH_VAR_NAME_.178 -OBJC_METH_VAR_TYPE_.183 -OBJC_METH_VAR_NAME_.184 -OBJC_METH_VAR_TYPE_.185 -OBJC_METH_VAR_TYPE_.188 +OBJC_METH_VAR_TYPE_.179 +OBJC_METH_VAR_TYPE_.181 +OBJC_METH_VAR_TYPE_.182 +OBJC_METH_VAR_TYPE_.184 +OBJC_METH_VAR_NAME_.186 +OBJC_METH_VAR_NAME_.188 +OBJC_METH_VAR_TYPE_.189 OBJC_METH_VAR_TYPE_.191 -OBJC_METH_VAR_NAME_.192 +OBJC_METH_VAR_NAME_.203 +l_OBJC_$_INSTANCE_METHODS_RLMProperty +OBJC_METH_VAR_TYPE_.205 +OBJC_METH_VAR_NAME_.206 +OBJC_METH_VAR_TYPE_.207 +OBJC_METH_VAR_TYPE_.209 +OBJC_METH_VAR_NAME_.210 +OBJC_METH_VAR_NAME_.211 +OBJC_METH_VAR_TYPE_.212 +OBJC_METH_VAR_TYPE_.215 +OBJC_METH_VAR_NAME_.218 +OBJC_METH_VAR_TYPE_.219 +OBJC_METH_VAR_NAME_.221 +OBJC_METH_VAR_NAME_.223 +OBJC_METH_VAR_TYPE_.225 +OBJC_METH_VAR_NAME_.226 l_OBJC_$_INSTANCE_VARIABLES_RLMProperty -OBJC_PROP_NAME_ATTR_.198 -OBJC_PROP_NAME_ATTR_.199 -OBJC_PROP_NAME_ATTR_.200 -OBJC_PROP_NAME_ATTR_.201 -OBJC_PROP_NAME_ATTR_.202 -OBJC_PROP_NAME_ATTR_.203 -OBJC_PROP_NAME_ATTR_.204 -OBJC_PROP_NAME_ATTR_.205 -OBJC_PROP_NAME_ATTR_.206 -OBJC_PROP_NAME_ATTR_.207 -OBJC_PROP_NAME_ATTR_.208 -OBJC_PROP_NAME_ATTR_.209 -OBJC_PROP_NAME_ATTR_.210 -OBJC_PROP_NAME_ATTR_.211 -OBJC_PROP_NAME_ATTR_.212 -OBJC_PROP_NAME_ATTR_.213 -OBJC_PROP_NAME_ATTR_.214 -OBJC_PROP_NAME_ATTR_.215 -OBJC_PROP_NAME_ATTR_.219 -OBJC_PROP_NAME_ATTR_.220 -OBJC_PROP_NAME_ATTR_.221 -OBJC_PROP_NAME_ATTR_.222 -OBJC_PROP_NAME_ATTR_.223 -OBJC_PROP_NAME_ATTR_.224 -OBJC_PROP_NAME_ATTR_.225 -OBJC_PROP_NAME_ATTR_.226 +OBJC_PROP_NAME_ATTR_.227 +OBJC_PROP_NAME_ATTR_.228 +OBJC_PROP_NAME_ATTR_.229 +OBJC_PROP_NAME_ATTR_.230 +OBJC_PROP_NAME_ATTR_.231 +OBJC_PROP_NAME_ATTR_.232 +OBJC_PROP_NAME_ATTR_.233 +OBJC_PROP_NAME_ATTR_.234 +OBJC_PROP_NAME_ATTR_.235 +OBJC_PROP_NAME_ATTR_.236 +OBJC_PROP_NAME_ATTR_.237 +OBJC_PROP_NAME_ATTR_.238 +OBJC_PROP_NAME_ATTR_.239 +OBJC_PROP_NAME_ATTR_.240 +OBJC_PROP_NAME_ATTR_.241 +OBJC_PROP_NAME_ATTR_.242 +OBJC_PROP_NAME_ATTR_.243 +OBJC_PROP_NAME_ATTR_.244 +OBJC_PROP_NAME_ATTR_.245 +OBJC_PROP_NAME_ATTR_.246 +OBJC_PROP_NAME_ATTR_.247 +OBJC_PROP_NAME_ATTR_.248 +OBJC_PROP_NAME_ATTR_.249 +OBJC_PROP_NAME_ATTR_.250 +OBJC_PROP_NAME_ATTR_.251 +OBJC_PROP_NAME_ATTR_.252 +OBJC_PROP_NAME_ATTR_.253 +OBJC_PROP_NAME_ATTR_.254 +OBJC_PROP_NAME_ATTR_.255 +OBJC_PROP_NAME_ATTR_.256 +OBJC_PROP_NAME_ATTR_.257 l_OBJC_$_PROP_LIST_RLMProperty l_OBJC_CLASS_RO_$_RLMProperty -_unnamed_cfstring_.228 -.str.229 -_unnamed_cfstring_.230 -.str.231 -_unnamed_cfstring_.232 -.str.233 -_unnamed_cfstring_.234 -.str.235 -_unnamed_cfstring_.236 -_unnamed_cfstring_.238 -.str.239 -_unnamed_cfstring_.240 -.str.241 -_unnamed_cfstring_.242 -.str.243 -_unnamed_cfstring_.244 -.str.247 -_unnamed_cfstring_.248 +OBJC_CLASSLIST_REFERENCES_$_.258 +OBJC_IVAR_$_RLMPropertyDescriptor._objectClass +OBJC_IVAR_$_RLMPropertyDescriptor._propertyName +OBJC_CLASS_NAME_.259 +OBJC_METH_VAR_NAME_.260 +l_OBJC_$_CLASS_METHODS_RLMPropertyDescriptor +l_OBJC_METACLASS_RO_$_RLMPropertyDescriptor +OBJC_CLASS_NAME_.262 +OBJC_METH_VAR_TYPE_.263 +l_OBJC_$_INSTANCE_METHODS_RLMPropertyDescriptor +OBJC_METH_VAR_NAME_.264 +OBJC_METH_VAR_TYPE_.265 +OBJC_METH_VAR_NAME_.266 +l_OBJC_$_INSTANCE_VARIABLES_RLMPropertyDescriptor +OBJC_PROP_NAME_ATTR_.267 +OBJC_PROP_NAME_ATTR_.268 +OBJC_PROP_NAME_ATTR_.269 +OBJC_PROP_NAME_ATTR_.270 +l_OBJC_$_PROP_LIST_RLMPropertyDescriptor +l_OBJC_CLASS_RO_$_RLMPropertyDescriptor +.str.271 +_unnamed_cfstring_.272 +_unnamed_cfstring_.274 +OBJC_SELECTOR_REFERENCES_.276 +.str.277 +_unnamed_cfstring_.278 +_unnamed_cfstring_.280 +_unnamed_cfstring_.282 +.str.283 +_unnamed_cfstring_.284 +.str.285 +_unnamed_cfstring_.286 +_unnamed_cfstring_.290 +.str.291 +_unnamed_cfstring_.292 +.str.293 +_unnamed_cfstring_.294 +.str.295 +_unnamed_cfstring_.296 +_unnamed_cfstring_.298 +.str.299 +_unnamed_cfstring_.300 +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/property.hpp +rawTypeIsComputedProperty +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMProperty.mm +-[RLMPropertyDescriptor .cxx_destruct] +-[RLMPropertyDescriptor propertyName] +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMProperty.h +-[RLMPropertyDescriptor objectClass] ++[RLMPropertyDescriptor descriptorWithClass:propertyName:] -[RLMProperty .cxx_destruct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMProperty.mm -[RLMProperty setSetterSel:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMProperty_Private.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMProperty_Private.h -[RLMProperty setterSel] -[RLMProperty setGetterSel:] -[RLMProperty getterSel] @@ -4328,7 +5646,7 @@ _unnamed_cfstring_.248 -[RLMProperty column] -[RLMProperty setOptional:] -[RLMProperty optional] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMProperty.h +-[RLMProperty linkOriginPropertyName] -[RLMProperty setObjectClassName:] -[RLMProperty objectClassName] -[RLMProperty setIndexed:] @@ -4336,23 +5654,31 @@ _unnamed_cfstring_.248 -[RLMProperty setType:] -[RLMProperty type] -[RLMProperty name] +-[RLMProperty objectStoreCopy] -[RLMProperty description] -[RLMProperty isEqualToProperty:] +-[RLMProperty isEqual:] +-[RLMProperty copyWithNewName:] -[RLMProperty copyWithZone:] +-[RLMProperty initSwiftLinkingObjectsPropertyWithName:ivar:objectClassName:linkOriginPropertyName:] -[RLMProperty initSwiftOptionalPropertyWithName:indexed:ivar:propertyType:] -[RLMProperty initSwiftListPropertyWithName:ivar:objectClassName:] --[RLMProperty initWithName:indexed:property:] --[RLMProperty initSwiftPropertyWithName:indexed:property:instance:] +-[RLMProperty initWithName:indexed:linkPropertyDescriptor:property:] +-[RLMProperty initSwiftPropertyWithName:indexed:linkPropertyDescriptor:property:instance:] -[RLMProperty parseObjcProperty:] -[RLMProperty setTypeFromRawType] -[RLMProperty setObjcCodeFromType] -[RLMProperty updateAccessors] --[RLMProperty initWithName:type:objectClassName:indexed:optional:] +-[RLMProperty setName:] +-[RLMProperty initWithName:type:objectClassName:linkOriginPropertyName:indexed:optional:] ++[RLMProperty propertyForObjectStoreProperty:] +RLMPropertyTypeIsComputed RLMPropertyTypeIsNumeric RLMPropertyTypeIsNullable _ZL15RLMPreconditionbP8NSStringS0_z _ZN12_GLOBAL__N_127update_query_with_predicateEP11NSPredicateP9RLMSchemaP15RLMObjectSchemaRN5realm5QueryE _ZL21RLMPredicateExceptionP8NSStringS0_z +_ZN12_GLOBAL__N_135update_query_with_column_expressionEP9RLMSchemaP15RLMObjectSchemaRN5realm5QueryEP8NSStringS8_P21NSComparisonPredicate _ZN12_GLOBAL__N_134update_query_with_value_expressionEP9RLMSchemaP15RLMObjectSchemaRN5realm5QueryEP8NSStringP11objc_objectP21NSComparisonPredicate _ZN12_GLOBAL__N_114TrueExpressionD1Ev _ZN12_GLOBAL__N_114TrueExpressionD0Ev @@ -4367,9 +5693,9 @@ _ZNK12_GLOBAL__N_119CollectionOperation19validate_comparisonERKNS_15ColumnRefere _ZN12_GLOBAL__N_144add_collection_operation_constraint_to_queryIJNS_19CollectionOperationENS_15ColumnReferenceEEEEvRN5realm5QueryE23NSPredicateOperatorTypeS1_DpT_ _ZN12_GLOBAL__N_144add_collection_operation_constraint_to_queryIJNS_15ColumnReferenceENS_19CollectionOperationEEEEvRN5realm5QueryE23NSPredicateOperatorTypeS2_DpT_ _ZN12_GLOBAL__N_119CollectionOperation13name_for_typeENS0_4TypeE -_ZN5realm4util17BadOptionalAccessD1Ev -_ZN5realm4util17BadOptionalAccessD0Ev -_ZNK5realm4util8OptionalIN12_GLOBAL__N_115ColumnReferenceEEptEv +_ZN5realm4util8OptionalIN12_GLOBAL__N_115ColumnReferenceEE5valueEv +_ZN12_GLOBAL__N_115ColumnReferenceC1EP9RLMSchemaP11RLMPropertyRKNSt3__16vectorIU8__strongS4_NS5_9allocatorIS7_EEEE +_ZNK5realm4util8OptionalIN12_GLOBAL__N_115ColumnReferenceEE5valueEv _ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIxLNS_19CollectionOperation4TypeE0EEEDaRN5realm5QueryES1_ _ZN5realm7ColumnsIxED1Ev _ZN5realm9LinkCountD1Ev @@ -4385,12 +5711,14 @@ _ZN5realm7CompareINS_4LessExNS_7SubexprES2_E20apply_handover_patchERNSt3__16vect _ZN5realm5ValueIxED1Ev _ZN5realm5ValueIxEC2Ev _ZNK5realm5ValueIxE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueIxE16export_TimestampERNS_9ValueBaseE _ZNK5realm5ValueIxE10export_intERNS_9ValueBaseE _ZNK5realm5ValueIxE12export_floatERNS_9ValueBaseE _ZNK5realm5ValueIxE14export_int64_tERNS_9ValueBaseE _ZNK5realm5ValueIxE13export_doubleERNS_9ValueBaseE _ZNK5realm5ValueIxE17export_StringDataERNS_9ValueBaseE _ZNK5realm5ValueIxE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueIxE15export_RowIndexERNS_9ValueBaseE _ZNK5realm5ValueIxE11export_nullERNS_9ValueBaseE _ZN5realm5ValueIxE6importERKNS_9ValueBaseE _ZN5realm5ValueIxE8evaluateEmRNS_9ValueBaseE @@ -4405,11 +5733,12 @@ _ZNK5realm7Subexpr14get_base_tableEv _ZThn24_N5realm5ValueIxE8evaluateEmRNS_9ValueBaseE _ZN5realm14NullableVectorIxLm8EE4initEmx _ZN5realm14NullableVectorIxLm8EE4initEm -_ZN5realm14NullableVectorIbLm8EE3setEmx +_ZN5realm14NullableVectorIxLm8EE3setIxEENSt3__19enable_ifIXsr3std7is_sameIT_xEE5valueEvE4typeEmx +_ZN5realm14NullableVectorIbLm8EE3setIxEENSt3__19enable_ifIXsr3std7is_sameIT_xEE5valueEvE4typeEmx _ZNK5realm14NullableVectorIxLm8EEixEm _ZN5realm14NullableVectorIbLm8EE4initEm _ZN5realm14NullableVectorIbLm8EE4fillEb -_ZN5realm14NullableVectorIiLm8EE3setEmx +_ZN5realm14NullableVectorIiLm8EE3setIxEENSt3__19enable_ifIXsr3std7is_sameIT_xEE5valueEvE4typeEmx _ZN5realm14NullableVectorIiLm8EE4initEm _ZN5realm14NullableVectorIiLm8EE4fillEi _ZN5realm5ValueIfE4initEbmf @@ -4464,6 +5793,7 @@ _ZNK5realm7CompareINS_8NotEqualExNS_7SubexprES2_E14get_base_tableEv _ZNK5realm7CompareINS_8NotEqualExNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE _ZN5realm7CompareINS_8NotEqualExNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE _ZN5realm7CompareINS_8NotEqualExNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE +_ZNK12_GLOBAL__N_115ColumnReference7resolveIN5realm4LinkEEEDaRNS2_5QueryE _ZNK5realm7ColumnsINS_4LinkEE5countEv _ZN5realm7ColumnsINS_4LinkEED1Ev _ZNK12_GLOBAL__N_115ColumnReference15table_for_queryERN5realm5QueryE @@ -4474,13 +5804,42 @@ _ZNK5realm7ColumnsINS_4LinkEE14get_base_tableEv _ZN5realm7ColumnsINS_4LinkEE8evaluateEmRNS_9ValueBaseE _ZN5realm7LinkMapC2EPKNS_5TableERKNSt3__16vectorImNS4_9allocatorImEEEE _ZN5realm7LinkMap14set_base_tableEPKNS_5TableE +_ZN5realm7LinkMap9get_linksEm +_ZN5realm5ValueINS_8RowIndexEED1Ev +_ZN5realm14MakeLinkVector7consumeEm +_ZN5realm7LinkMap9map_linksEmmRNS_15LinkMapFunctionE +_ZN5realm5ValueINS_8RowIndexEEC2Ev +_ZN5realm5ValueINS_8RowIndexEE4initEbmS1_ +_ZNK5realm5ValueINS_8RowIndexEE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE16export_TimestampERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE10export_intERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE12export_floatERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE14export_int64_tERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE13export_doubleERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE17export_StringDataERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE15export_RowIndexERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE11export_nullERNS_9ValueBaseE +_ZN5realm5ValueINS_8RowIndexEE6importERKNS_9ValueBaseE +_ZN5realm5ValueINS_8RowIndexEE8evaluateEmRNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE +_ZN5realm5ValueINS_8RowIndexEED0Ev +_ZThn24_N5realm5ValueINS_8RowIndexEED1Ev +_ZThn24_N5realm5ValueINS_8RowIndexEED0Ev +_ZThn24_NK5realm5ValueINS_8RowIndexEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE +_ZThn24_N5realm5ValueINS_8RowIndexEE8evaluateEmRNS_9ValueBaseE +_ZN5realm14NullableVectorINS_8RowIndexELm8EE4initEmS1_ +_ZN5realm14NullableVectorINS_8RowIndexELm8EE4initEm +_ZN5realm14NullableVectorINS_8RowIndexELm8EE4fillES1_ +_ZNK5realm14NullableVectorINS_8RowIndexELm8EEixEm +_ZNK5realm4util8OptionalImE5valueEv +_ZN5realm14NullableVectorINS_8RowIndexELm8EEC2ERKS2_ _ZN5realm9LinkCountD0Ev _ZNK5realm9LinkCount5cloneEPNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEE _ZN5realm9LinkCount14set_base_tableEPKNS_5TableE _ZNK5realm9LinkCount14get_base_tableEv _ZN5realm9LinkCount8evaluateEmRNS_9ValueBaseE _ZN5realm10CountLinks7consumeEm -_ZN5realm7LinkMap9map_linksEmmRNS_15LinkMapFunctionE _ZN5realm5ValueIxEC2Ebmx _ZN12_GLOBAL__N_123value_of_type_for_queryIxEEDaRN5realm5QueryERKNS_15ColumnReferenceE _ZN5realm7ColumnsIxEC2EmPKNS_5TableERKNSt3__16vectorImNS5_9allocatorImEEEE @@ -4500,8 +5859,6 @@ _ZN5realm12ArrayIntNullD1Ev _ZN5realm12ArrayIntNullD0Ev _ZN5realm7ColumnsIxE17evaluate_internalINS_6ColumnINS_4util8OptionalIxEEEEEEvmRNS_9ValueBaseE _ZN5realm7ColumnsIxE17evaluate_internalINS_6ColumnIxEEEEvmRNS_9ValueBaseE -_ZN5realm7LinkMap9get_linksEm -_ZN5realm14MakeLinkVector7consumeEm _ZN5realm5ValueIxEC2Ebm _ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIxLNS_19CollectionOperation4TypeE1EEEDaRN5realm5QueryES1_ _ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEED1Ev @@ -4529,12 +5886,14 @@ _ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEE8evaluateEm _ZN5realm5ValueINS_4nullEED1Ev _ZN5realm5ValueINS_4nullEEC2EbmS1_ _ZNK5realm5ValueINS_4nullEE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueINS_4nullEE16export_TimestampERNS_9ValueBaseE _ZNK5realm5ValueINS_4nullEE10export_intERNS_9ValueBaseE _ZNK5realm5ValueINS_4nullEE12export_floatERNS_9ValueBaseE _ZNK5realm5ValueINS_4nullEE14export_int64_tERNS_9ValueBaseE _ZNK5realm5ValueINS_4nullEE13export_doubleERNS_9ValueBaseE _ZNK5realm5ValueINS_4nullEE17export_StringDataERNS_9ValueBaseE _ZNK5realm5ValueINS_4nullEE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueINS_4nullEE15export_RowIndexERNS_9ValueBaseE _ZNK5realm5ValueINS_4nullEE11export_nullERNS_9ValueBaseE _ZN5realm5ValueINS_4nullEE6importERKNS_9ValueBaseE _ZN5realm5ValueINS_4nullEE8evaluateEmRNS_9ValueBaseE @@ -4544,6 +5903,8 @@ _ZThn24_N5realm5ValueINS_4nullEED1Ev _ZThn24_N5realm5ValueINS_4nullEED0Ev _ZThn24_NK5realm5ValueINS_4nullEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE _ZThn24_N5realm5ValueINS_4nullEE8evaluateEmRNS_9ValueBaseE +_ZN5realm14NullableVectorINS_9TimestampELm8EE4initEmS1_ +_ZN5realm14NullableVectorINS_9TimestampELm8EE4initEm _ZN5realm14NullableVectorINS_10StringDataELm8EE4initEmS1_ _ZN5realm14NullableVectorINS_10StringDataELm8EE4initEm _ZN5realm14NullableVectorINS_4nullELm8EEC2ERKS2_ @@ -4558,12 +5919,14 @@ _ZN5realm7CompareINS_4LessEfNS_7SubexprES2_E20apply_handover_patchERNSt3__16vect _ZN5realm5ValueIfED1Ev _ZN5realm5ValueIfEC2Ev _ZNK5realm5ValueIfE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueIfE16export_TimestampERNS_9ValueBaseE _ZNK5realm5ValueIfE10export_intERNS_9ValueBaseE _ZNK5realm5ValueIfE12export_floatERNS_9ValueBaseE _ZNK5realm5ValueIfE14export_int64_tERNS_9ValueBaseE _ZNK5realm5ValueIfE13export_doubleERNS_9ValueBaseE _ZNK5realm5ValueIfE17export_StringDataERNS_9ValueBaseE _ZNK5realm5ValueIfE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueIfE15export_RowIndexERNS_9ValueBaseE _ZNK5realm5ValueIfE11export_nullERNS_9ValueBaseE _ZN5realm5ValueIfE6importERKNS_9ValueBaseE _ZN5realm5ValueIfE8evaluateEmRNS_9ValueBaseE @@ -4664,12 +6027,14 @@ _ZN5realm7CompareINS_4LessEdNS_7SubexprES2_E20apply_handover_patchERNSt3__16vect _ZN5realm5ValueIdED1Ev _ZN5realm5ValueIdEC2Ev _ZNK5realm5ValueIdE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueIdE16export_TimestampERNS_9ValueBaseE _ZNK5realm5ValueIdE10export_intERNS_9ValueBaseE _ZNK5realm5ValueIdE12export_floatERNS_9ValueBaseE _ZNK5realm5ValueIdE14export_int64_tERNS_9ValueBaseE _ZNK5realm5ValueIdE13export_doubleERNS_9ValueBaseE _ZNK5realm5ValueIdE17export_StringDataERNS_9ValueBaseE _ZNK5realm5ValueIdE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueIdE15export_RowIndexERNS_9ValueBaseE _ZNK5realm5ValueIdE11export_nullERNS_9ValueBaseE _ZN5realm5ValueIdE6importERKNS_9ValueBaseE _ZN5realm5ValueIdE8evaluateEmRNS_9ValueBaseE @@ -4867,8 +6232,8 @@ _ZN5realm9OverloadsIfdE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IdEE _ZN12_GLOBAL__N_126do_add_constraint_to_queryIJNS_15ColumnReferenceES1_EEEvRN5realm5QueryE15RLMPropertyType23NSPredicateOperatorTypemDpT_ _ZN12_GLOBAL__N_123value_of_type_for_queryIbEEDaRN5realm5QueryERKNS_15ColumnReferenceE _ZN5realm7ColumnsIbED1Ev -_ZN12_GLOBAL__N_123value_of_type_for_queryIN5realm8DateTimeEEEDaRNS1_5QueryERKNS_15ColumnReferenceE -_ZN5realm7ColumnsINS_8DateTimeEED1Ev +_ZN12_GLOBAL__N_123value_of_type_for_queryIN5realm9TimestampEEEDaRNS1_5QueryERKNS_15ColumnReferenceE +_ZN5realm7ColumnsINS_9TimestampEED1Ev _ZN12_GLOBAL__N_123value_of_type_for_queryIN5realm10StringDataEEEDaRNS1_5QueryERKNS_15ColumnReferenceE _ZN5realm7ColumnsINS_10StringDataEED1Ev _ZN5realm7CompareINS_5EqualEbNS_7SubexprES2_ED1Ev @@ -4881,12 +6246,14 @@ _ZN5realm7CompareINS_5EqualEbNS_7SubexprES2_E20apply_handover_patchERNSt3__16vec _ZN5realm5ValueIbED1Ev _ZN5realm5ValueIbEC2Ev _ZNK5realm5ValueIbE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueIbE16export_TimestampERNS_9ValueBaseE _ZNK5realm5ValueIbE10export_intERNS_9ValueBaseE _ZNK5realm5ValueIbE12export_floatERNS_9ValueBaseE _ZNK5realm5ValueIbE14export_int64_tERNS_9ValueBaseE _ZNK5realm5ValueIbE13export_doubleERNS_9ValueBaseE _ZNK5realm5ValueIbE17export_StringDataERNS_9ValueBaseE _ZNK5realm5ValueIbE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueIbE15export_RowIndexERNS_9ValueBaseE _ZNK5realm5ValueIbE11export_nullERNS_9ValueBaseE _ZN5realm5ValueIbE6importERKNS_9ValueBaseE _ZN5realm5ValueIbE8evaluateEmRNS_9ValueBaseE @@ -4917,85 +6284,89 @@ _ZN5realm7ColumnsIbE8evaluateEmRNS_9ValueBaseE _ZN5realm7ColumnsIbEC2ERKS1_ _ZN5realm7ColumnsIbE17evaluate_internalINS_6ColumnINS_4util8OptionalIxEEEEEEvmRNS_9ValueBaseE _ZN5realm7ColumnsIbE17evaluate_internalINS_6ColumnIxEEEEvmRNS_9ValueBaseE -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm5ValueINS_8DateTimeEED1Ev -_ZN5realm5ValueINS_8DateTimeEEC2Ev -_ZNK5realm5ValueINS_8DateTimeEE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueINS_8DateTimeEE6importERKNS_9ValueBaseE -_ZN5realm5ValueINS_8DateTimeEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm5ValueINS_8DateTimeEED0Ev -_ZThn24_N5realm5ValueINS_8DateTimeEED1Ev -_ZThn24_N5realm5ValueINS_8DateTimeEED0Ev -_ZThn24_NK5realm5ValueINS_8DateTimeEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZThn24_N5realm5ValueINS_8DateTimeEE8evaluateEmRNS_9ValueBaseE -_ZN5realm14NullableVectorINS_8DateTimeELm8EE4initEmS1_ -_ZN5realm14NullableVectorINS_8DateTimeELm8EE4initEm -_ZNK5realm14NullableVectorINS_8DateTimeELm8EEixEm -_ZN5realm14NullableVectorINS_8DateTimeELm8EEC2ERKS2_ -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7ColumnsINS_8DateTimeEEC2EmPKNS_5TableERKNSt3__16vectorImNS6_9allocatorImEEEE -_ZN5realm7ColumnsINS_8DateTimeEED0Ev -_ZNK5realm7ColumnsINS_8DateTimeEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm7ColumnsINS_8DateTimeEE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsINS_8DateTimeEE14get_base_tableEv -_ZN5realm7ColumnsINS_8DateTimeEE8evaluateEmRNS_9ValueBaseE -_ZN5realm7ColumnsINS_8DateTimeEEC2ERKS2_ -_ZN5realm7ColumnsINS_8DateTimeEE17evaluate_internalINS_6ColumnINS_4util8OptionalIxEEEEEEvmRNS_9ValueBaseE -_ZN5realm7ColumnsINS_8DateTimeEE17evaluate_internalINS_6ColumnIxEEEEvmRNS_9ValueBaseE +_ZN5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_ED1Ev +_ZN5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_ED0Ev +_ZNK5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_E10find_firstEmm +_ZN5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_E14set_base_tableEPKNS_5TableE +_ZNK5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_E14get_base_tableEv +_ZNK5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE +_ZN5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE +_ZN5realm5ValueINS_9TimestampEED1Ev +_ZN5realm5ValueINS_9TimestampEEC2Ev +_ZNK5realm5ValueINS_9TimestampEE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE16export_TimestampERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE10export_intERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE12export_floatERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE14export_int64_tERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE13export_doubleERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE17export_StringDataERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE15export_RowIndexERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE11export_nullERNS_9ValueBaseE +_ZN5realm5ValueINS_9TimestampEE6importERKNS_9ValueBaseE +_ZN5realm5ValueINS_9TimestampEE8evaluateEmRNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE +_ZN5realm5ValueINS_9TimestampEED0Ev +_ZThn24_N5realm5ValueINS_9TimestampEED1Ev +_ZThn24_N5realm5ValueINS_9TimestampEED0Ev +_ZThn24_NK5realm5ValueINS_9TimestampEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE +_ZThn24_N5realm5ValueINS_9TimestampEE8evaluateEmRNS_9ValueBaseE +_ZNK5realm14NullableVectorINS_9TimestampELm8EEixEm +_ZN5realm14NullableVectorINS_9TimestampELm8EEC2ERKS2_ +_ZNK5realm9TimestampgtERKS0_ +_ZN5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE +_ZN5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_ED1Ev +_ZN5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_ED0Ev +_ZNK5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_E10find_firstEmm +_ZN5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_E14set_base_tableEPKNS_5TableE +_ZNK5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_E14get_base_tableEv +_ZNK5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE +_ZN5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE +_ZNK5realm9TimestampgeERKS0_ +_ZNK5realm9TimestampeqERKS0_ +_ZN5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE +_ZN5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_ED1Ev +_ZN5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_ED0Ev +_ZNK5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_E10find_firstEmm +_ZN5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_E14set_base_tableEPKNS_5TableE +_ZNK5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_E14get_base_tableEv +_ZNK5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE +_ZN5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE +_ZNK5realm9TimestampltERKS0_ +_ZN5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE +_ZN5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_ED1Ev +_ZN5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_ED0Ev +_ZNK5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_E10find_firstEmm +_ZN5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_E14set_base_tableEPKNS_5TableE +_ZNK5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_E14get_base_tableEv +_ZNK5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE +_ZN5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE +_ZNK5realm9TimestampleERKS0_ +_ZN5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE +_ZN5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_ED1Ev +_ZN5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_ED0Ev +_ZNK5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_E10find_firstEmm +_ZN5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_E14set_base_tableEPKNS_5TableE +_ZNK5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_E14get_base_tableEv +_ZNK5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE +_ZN5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE +_ZN5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE +_ZN5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_ED1Ev +_ZN5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_ED0Ev +_ZNK5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_E10find_firstEmm +_ZN5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_E14set_base_tableEPKNS_5TableE +_ZNK5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_E14get_base_tableEv +_ZNK5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE +_ZN5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE +_ZNK5realm9TimestampneERKS0_ +_ZN5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE +_ZN5realm7ColumnsINS_9TimestampEED0Ev +_ZNK5realm7ColumnsINS_9TimestampEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE +_ZN5realm18SimpleQuerySupportINS_9TimestampEE14set_base_tableEPKNS_5TableE +_ZNK5realm18SimpleQuerySupportINS_9TimestampEE14get_base_tableEv +_ZN5realm18SimpleQuerySupportINS_9TimestampEE8evaluateEmRNS_9ValueBaseE +_ZN5realm18SimpleQuerySupportINS_9TimestampEED1Ev +_ZN5realm18SimpleQuerySupportINS_9TimestampEED0Ev _ZN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_ED1Ev _ZN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_ED0Ev _ZNK5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_E10find_firstEmm @@ -5006,12 +6377,14 @@ _ZN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_E20apply_handov _ZN5realm5ValueINS_10StringDataEED1Ev _ZN5realm5ValueINS_10StringDataEEC2Ev _ZNK5realm5ValueINS_10StringDataEE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueINS_10StringDataEE16export_TimestampERNS_9ValueBaseE _ZNK5realm5ValueINS_10StringDataEE10export_intERNS_9ValueBaseE _ZNK5realm5ValueINS_10StringDataEE12export_floatERNS_9ValueBaseE _ZNK5realm5ValueINS_10StringDataEE14export_int64_tERNS_9ValueBaseE _ZNK5realm5ValueINS_10StringDataEE13export_doubleERNS_9ValueBaseE _ZNK5realm5ValueINS_10StringDataEE17export_StringDataERNS_9ValueBaseE _ZNK5realm5ValueINS_10StringDataEE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueINS_10StringDataEE15export_RowIndexERNS_9ValueBaseE _ZNK5realm5ValueINS_10StringDataEE11export_nullERNS_9ValueBaseE _ZN5realm5ValueINS_10StringDataEE6importERKNS_9ValueBaseE _ZN5realm5ValueINS_10StringDataEE8evaluateEmRNS_9ValueBaseE @@ -5114,12 +6487,13 @@ _ZNK5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3 _ZN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE _ZNK5realm11NotEqualInsclENS_10StringDataES1_bb _ZN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7ColumnsINS_10StringDataEEC2EmPKNS_5TableERKNSt3__16vectorImNS6_9allocatorImEEEE _ZN5realm7ColumnsINS_10StringDataEED0Ev _ZNK5realm7ColumnsINS_10StringDataEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm7ColumnsINS_10StringDataEE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsINS_10StringDataEE14get_base_tableEv -_ZN5realm7ColumnsINS_10StringDataEE8evaluateEmRNS_9ValueBaseE +_ZN5realm18SimpleQuerySupportINS_10StringDataEE14set_base_tableEPKNS_5TableE +_ZNK5realm18SimpleQuerySupportINS_10StringDataEE14get_base_tableEv +_ZN5realm18SimpleQuerySupportINS_10StringDataEE8evaluateEmRNS_9ValueBaseE +_ZN5realm18SimpleQuerySupportINS_10StringDataEED1Ev +_ZN5realm18SimpleQuerySupportINS_10StringDataEED0Ev _ZN5realm7ColumnsINS_4LinkEE7is_nullEv _ZN5realm16UnaryLinkCompareILb0EED1Ev _ZN5realm16UnaryLinkCompareILb0EED0Ev @@ -5130,12 +6504,14 @@ _ZNK5realm16UnaryLinkCompareILb0EE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22Q _ZN5realm13FindNullLinks7consumeEm _ZN5realm9OverloadsIbbE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IbEE _ZN5realm9OverloadsIbbE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IbEE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE +_ZN5realm9OverloadsINS_9TimestampES1_E7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IS1_EE +_ZNK5realm18SimpleQuerySupportINS_9TimestampEE11is_nullableEv +_ZN5realm9OverloadsINS_9TimestampES1_E7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE +_ZN5realm9OverloadsINS_9TimestampES1_E7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IS1_EE +_ZN5realm9OverloadsINS_9TimestampES1_E7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE +_ZN5realm9OverloadsINS_9TimestampES1_E7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IS1_EE +_ZN5realm9OverloadsINS_9TimestampES1_E7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE +_ZN12_GLOBAL__N_131add_between_constraint_to_queryERN5realm5QueryERKNS_15ColumnReferenceEP11objc_object _ZN12_GLOBAL__N_123validate_property_valueERKNS_15ColumnReferenceEP11objc_objectP8NSStringP15RLMObjectSchemaS6_ _ZN12_GLOBAL__N_123add_constraint_to_queryINS_15ColumnReferenceEU8__strongP11objc_objectEEvRN5realm5QueryE15RLMPropertyType23NSPredicateOperatorTypemT_T0_ _ZN12_GLOBAL__N_144add_collection_operation_constraint_to_queryIJNS_19CollectionOperationEU8__strongP11objc_objectEEEvRN5realm5QueryE23NSPredicateOperatorTypeS1_DpT_ @@ -5145,12 +6521,14 @@ _ZN5realm5ValueIfEC2Ef _ZN5realm5ValueIdEC2Ed _ZN5realm5ValueIiEC2Ei _ZNK5realm5ValueIiE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueIiE16export_TimestampERNS_9ValueBaseE _ZNK5realm5ValueIiE10export_intERNS_9ValueBaseE _ZNK5realm5ValueIiE12export_floatERNS_9ValueBaseE _ZNK5realm5ValueIiE14export_int64_tERNS_9ValueBaseE _ZNK5realm5ValueIiE13export_doubleERNS_9ValueBaseE _ZNK5realm5ValueIiE17export_StringDataERNS_9ValueBaseE _ZNK5realm5ValueIiE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueIiE15export_RowIndexERNS_9ValueBaseE _ZNK5realm5ValueIiE11export_nullERNS_9ValueBaseE _ZN5realm5ValueIiE6importERKNS_9ValueBaseE _ZN5realm5ValueIiE8evaluateEmRNS_9ValueBaseE @@ -5163,15 +6541,60 @@ _ZThn24_NK5realm5ValueIiE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeH _ZThn24_N5realm5ValueIiE8evaluateEmRNS_9ValueBaseE _ZNK5realm14NullableVectorIiLm8EEixEm _ZN5realm14NullableVectorIiLm8EEC2ERKS1_ +_ZNK12_GLOBAL__N_115ColumnReference25link_target_object_schemaEv +_ZNK12_GLOBAL__N_115ColumnReference21resolve_with_subqueryIN5realm4LinkEEEDaRNS2_5QueryES5_ +_ZNK5realm8SubQueryINS_4LinkEE5countEv +_ZN5realm13SubQueryCountD1Ev +_ZN5realm8SubQueryINS_4LinkEEC2ENS_7ColumnsIS1_EENS_5QueryE +_ZN5realm13SubQueryCountD0Ev +_ZNK5realm13SubQueryCount5cloneEPNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEE +_ZN5realm13SubQueryCount20apply_handover_patchERNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEERNS_5GroupE +_ZN5realm13SubQueryCount14set_base_tableEPKNS_5TableE +_ZNK5realm13SubQueryCount14get_base_tableEv +_ZN5realm13SubQueryCount8evaluateEmRNS_9ValueBaseE +_ZN5realm13SubQueryCountC2ERKS0_PNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE +_ZN5realm26SubQueryCountHandoverPatchD1Ev +_ZN5realm26SubQueryCountHandoverPatchD0Ev _ZN12_GLOBAL__N_139value_from_constant_expression_or_valueEP11objc_object _ZN12_GLOBAL__N_19is_nsnullEP11objc_object +_ZN12_GLOBAL__N_123value_of_type_for_queryIN5realm9TimestampEEEDaRNS1_5QueryEP11objc_object _ZN12_GLOBAL__N_130add_string_constraint_to_queryIN5realm10StringDataEEEvRNS1_5QueryE23NSPredicateOperatorTypemONS1_7ColumnsIS2_EET_ _ZN12_GLOBAL__N_123value_of_type_for_queryIN5realm10StringDataEEEDaRNS1_5QueryEP11objc_object _ZN12_GLOBAL__N_130add_binary_constraint_to_queryERN5realm5QueryE23NSPredicateOperatorTypeRKNS_15ColumnReferenceEP11objc_object _ZN12_GLOBAL__N_128add_link_constraint_to_queryERN5realm5QueryE23NSPredicateOperatorTypeRKNS_15ColumnReferenceEP9RLMObject _ZN5realm5ValueIbEC2Eb -_ZN5realm5ValueINS_8DateTimeEEC2ES1_ -_ZN5realm8BasicRowIKNS_5TableEED2Ev +_ZN5realm5ValueINS_9TimestampEEC2ES1_ +_ZN5realm8BasicRowIKNS_5TableEED1Ev +_ZN5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_ED1Ev +_ZN5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_ED0Ev +_ZNK5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_E10find_firstEmm +_ZN5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_E14set_base_tableEPKNS_5TableE +_ZNK5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_E14get_base_tableEv +_ZNK5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE +_ZN5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE +_ZN5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE +_ZN5realm16ConstantRowValueD1Ev +_ZN5realm16ConstantRowValueD0Ev +_ZNK5realm16ConstantRowValue5cloneEPNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEE +_ZN5realm16ConstantRowValue20apply_handover_patchERNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEERNS_5GroupE +_ZN5realm16ConstantRowValue14set_base_tableEPKNS_5TableE +_ZNK5realm16ConstantRowValue14get_base_tableEv +_ZN5realm16ConstantRowValue8evaluateEmRNS_9ValueBaseE +_ZN5realm16ConstantRowValueC2ERKS0_PNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE +_ZN5realm8BasicRowIKNS_5TableEE14generate_patchERKS3_RNSt3__110unique_ptrINS_20RowBaseHandoverPatchENS6_14default_deleteIS8_EEEE +_ZN5realm29ConstantRowValueHandoverPatchD1Ev +_ZN5realm29ConstantRowValueHandoverPatchD0Ev +_ZN5realm8BasicRowIKNS_5TableEE23apply_and_consume_patchERNSt3__110unique_ptrINS_20RowBaseHandoverPatchENS4_14default_deleteIS6_EEEERNS_5GroupE +_ZN5realm5ValueINS_8RowIndexEEC2ES1_ +_ZN5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_ED1Ev +_ZN5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_ED0Ev +_ZNK5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_E10find_firstEmm +_ZN5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_E14set_base_tableEPKNS_5TableE +_ZNK5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_E14get_base_tableEv +_ZNK5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE +_ZN5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE +_ZNK5realm8NotEqualclINS_8RowIndexEEEbRKT_S5_bb +_ZN5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE _ZN5realm7CompareINS_5EqualEiNS_7SubexprES2_ED1Ev _ZN5realm7CompareINS_5EqualEiNS_7SubexprES2_ED0Ev _ZNK5realm7CompareINS_5EqualEiNS_7SubexprES2_E10find_firstEmm @@ -5191,18 +6614,6 @@ _ZN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_E20apply_handover_patchERNSt3__16 _ZN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE _ZN12_GLOBAL__N_146update_query_with_function_subquery_expressionEP9RLMSchemaP15RLMObjectSchemaRN5realm5QueryEP12NSExpression23NSPredicateOperatorTypeS8_ _ZN12_GLOBAL__N_152simplify_self_value_for_key_path_function_expressionEP12NSExpression -_ZNK5realm8SubQueryINS_4LinkEE5countEv -_ZN5realm13SubQueryCountD1Ev -_ZN5realm8SubQueryINS_4LinkEEC2ENS_7ColumnsIS1_EENS_5QueryE -_ZN5realm13SubQueryCountD0Ev -_ZNK5realm13SubQueryCount5cloneEPNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEE -_ZN5realm13SubQueryCount20apply_handover_patchERNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEERNS_5GroupE -_ZN5realm13SubQueryCount14set_base_tableEPKNS_5TableE -_ZNK5realm13SubQueryCount14get_base_tableEv -_ZN5realm13SubQueryCount8evaluateEmRNS_9ValueBaseE -_ZN5realm13SubQueryCountC2ERKS0_PNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm26SubQueryCountHandoverPatchD1Ev -_ZN5realm26SubQueryCountHandoverPatchD0Ev _ZN12_GLOBAL__N_115FalseExpressionD1Ev _ZN12_GLOBAL__N_115FalseExpressionD0Ev _ZNK12_GLOBAL__N_115FalseExpression10find_firstEmm @@ -5215,47 +6626,50 @@ _unnamed_cfstring_.22 _unnamed_cfstring_.24 OBJC_CLASSLIST_REFERENCES_$_.35 OBJC_CLASSLIST_REFERENCES_$_.40 -_unnamed_cfstring_.53 -OBJC_SELECTOR_REFERENCES_.66 -OBJC_METH_VAR_NAME_.81 -OBJC_SELECTOR_REFERENCES_.82 +OBJC_CLASSLIST_REFERENCES_$_.43 +OBJC_CLASSLIST_REFERENCES_$_.56 _unnamed_cfstring_.86 -_unnamed_cfstring_.90 _ZTVN12_GLOBAL__N_114TrueExpressionE _ZTSN12_GLOBAL__N_114TrueExpressionE _ZTSN5realm10ExpressionE _ZTIN5realm10ExpressionE _ZTIN12_GLOBAL__N_114TrueExpressionE _unnamed_cfstring_.100 +_unnamed_cfstring_.102 +_unnamed_cfstring_.104 +_unnamed_cfstring_.106 +OBJC_METH_VAR_NAME_.107 +OBJC_SELECTOR_REFERENCES_.108 +.str.109 _unnamed_cfstring_.110 +OBJC_SELECTOR_REFERENCES_.112 .str.113 _unnamed_cfstring_.114 +.str.115 _unnamed_cfstring_.116 -.str.117 _unnamed_cfstring_.118 .str.119 _unnamed_cfstring_.120 -OBJC_METH_VAR_NAME_.121 -OBJC_SELECTOR_REFERENCES_.122 +OBJC_METH_VAR_NAME_.123 OBJC_SELECTOR_REFERENCES_.124 _unnamed_cfstring_.126 +OBJC_SELECTOR_REFERENCES_.128 +_unnamed_cfstring_.138 _unnamed_cfstring_.142 _unnamed_cfstring_.144 -_unnamed_cfstring_.152 -_ZTSN5realm4util17BadOptionalAccessE -_ZTIN5realm4util17BadOptionalAccessE -OBJC_SELECTOR_REFERENCES_.159 +_unnamed_cfstring_.146 +_unnamed_cfstring_.156 OBJC_SELECTOR_REFERENCES_.161 _unnamed_cfstring_.163 -OBJC_SELECTOR_REFERENCES_.165 +.str.166 .str.168 _unnamed_cfstring_.169 +.str.170 _unnamed_cfstring_.171 _unnamed_cfstring_.173 _unnamed_cfstring_.175 _unnamed_cfstring_.177 _unnamed_cfstring_.179 -.str.180 _unnamed_cfstring_.181 _ZTSN5realm8Subexpr2IxEE _ZTSN5realm7SubexprE @@ -5274,8 +6688,10 @@ _ZTSN5realm9OverloadsIxNS_10StringDataEEE _ZTIN5realm9OverloadsIxNS_10StringDataEEE _ZTSN5realm9OverloadsIxbEE _ZTIN5realm9OverloadsIxbEE -_ZTSN5realm9OverloadsIxNS_8DateTimeEEE -_ZTIN5realm9OverloadsIxNS_8DateTimeEEE +_ZTSN5realm9OverloadsIxNS_9TimestampEEE +_ZTIN5realm9OverloadsIxNS_9TimestampEEE +_ZTSN5realm9OverloadsIxNS_11OldDateTimeEEE +_ZTIN5realm9OverloadsIxNS_11OldDateTimeEEE _ZTSN5realm9OverloadsIxNS_4nullEEE _ZTIN5realm9OverloadsIxNS_4nullEEE _ZTIN5realm8Subexpr2IxEE @@ -5287,9 +6703,6 @@ _ZTSN5realm5ValueIxEE _ZTSN5realm9ValueBaseE _ZTIN5realm9ValueBaseE _ZTIN5realm5ValueIxEE -.str.183 -.str.185 -.str.186 _ZTSN5realm7CompareINS_9LessEqualExNS_7SubexprES2_EE _ZTIN5realm7CompareINS_9LessEqualExNS_7SubexprES2_EE _ZTSN5realm7CompareINS_7GreaterExNS_7SubexprES2_EE @@ -5300,52 +6713,62 @@ _ZTSN5realm7CompareINS_5EqualExNS_7SubexprES2_EE _ZTIN5realm7CompareINS_5EqualExNS_7SubexprES2_EE _ZTSN5realm7CompareINS_8NotEqualExNS_7SubexprES2_EE _ZTIN5realm7CompareINS_8NotEqualExNS_7SubexprES2_EE -.str.189 -_unnamed_cfstring_.190 +_unnamed_cfstring_.194 _unnamed_cfstring_.196 _unnamed_cfstring_.198 +.str.199 _unnamed_cfstring_.200 +.str.201 _unnamed_cfstring_.202 +.str.203 _unnamed_cfstring_.204 +.str.205 _unnamed_cfstring_.206 -_unnamed_cfstring_.208 -_unnamed_cfstring_.212 +.str.213 _unnamed_cfstring_.214 -_unnamed_cfstring_.216 +.str.217 _unnamed_cfstring_.218 __func__._ZN12_GLOBAL__N_140ValueOfTypeWithCollectionOperationHelperIxLNS_19CollectionOperation4TypeE0EE7convertERN5realm5QueryERKS1_ -.str.223 +.str.221 +.str.226 +.str.227 _ZTSN5realm7ColumnsINS_4LinkEEE _ZTSN5realm8Subexpr2INS_4LinkEEE -_ZTSN5realm9OverloadsINS_4LinkEPKcEE -_ZTIN5realm9OverloadsINS_4LinkEPKcEE -_ZTSN5realm9OverloadsINS_4LinkEiEE -_ZTIN5realm9OverloadsINS_4LinkEiEE -_ZTSN5realm9OverloadsINS_4LinkEfEE -_ZTIN5realm9OverloadsINS_4LinkEfEE -_ZTSN5realm9OverloadsINS_4LinkEdEE -_ZTIN5realm9OverloadsINS_4LinkEdEE -_ZTSN5realm9OverloadsINS_4LinkExEE -_ZTIN5realm9OverloadsINS_4LinkExEE -_ZTSN5realm9OverloadsINS_4LinkENS_10StringDataEEE -_ZTIN5realm9OverloadsINS_4LinkENS_10StringDataEEE -_ZTSN5realm9OverloadsINS_4LinkEbEE -_ZTIN5realm9OverloadsINS_4LinkEbEE -_ZTSN5realm9OverloadsINS_4LinkENS_8DateTimeEEE -_ZTIN5realm9OverloadsINS_4LinkENS_8DateTimeEEE -_ZTSN5realm9OverloadsINS_4LinkENS_4nullEEE -_ZTIN5realm9OverloadsINS_4LinkENS_4nullEEE _ZTIN5realm8Subexpr2INS_4LinkEEE _ZTIN5realm7ColumnsINS_4LinkEEE -.str.226 +.str.228 +_ZTSN5realm14MakeLinkVectorE +_ZTSN5realm15LinkMapFunctionE +_ZTIN5realm15LinkMapFunctionE +_ZTIN5realm14MakeLinkVectorE +_ZTSN5realm5ValueINS_8RowIndexEEE +_ZTSN5realm8Subexpr2INS_8RowIndexEEE +_ZTSN5realm9OverloadsINS_8RowIndexEPKcEE +_ZTIN5realm9OverloadsINS_8RowIndexEPKcEE +_ZTSN5realm9OverloadsINS_8RowIndexEiEE +_ZTIN5realm9OverloadsINS_8RowIndexEiEE +_ZTSN5realm9OverloadsINS_8RowIndexEfEE +_ZTIN5realm9OverloadsINS_8RowIndexEfEE +_ZTSN5realm9OverloadsINS_8RowIndexEdEE +_ZTIN5realm9OverloadsINS_8RowIndexEdEE +_ZTSN5realm9OverloadsINS_8RowIndexExEE +_ZTIN5realm9OverloadsINS_8RowIndexExEE +_ZTSN5realm9OverloadsINS_8RowIndexENS_10StringDataEEE +_ZTIN5realm9OverloadsINS_8RowIndexENS_10StringDataEEE +_ZTSN5realm9OverloadsINS_8RowIndexEbEE +_ZTIN5realm9OverloadsINS_8RowIndexEbEE +_ZTSN5realm9OverloadsINS_8RowIndexENS_9TimestampEEE +_ZTIN5realm9OverloadsINS_8RowIndexENS_9TimestampEEE +_ZTSN5realm9OverloadsINS_8RowIndexENS_11OldDateTimeEEE +_ZTIN5realm9OverloadsINS_8RowIndexENS_11OldDateTimeEEE +_ZTSN5realm9OverloadsINS_8RowIndexENS_4nullEEE +_ZTIN5realm9OverloadsINS_8RowIndexENS_4nullEEE +_ZTIN5realm8Subexpr2INS_8RowIndexEEE +_ZTIN5realm5ValueINS_8RowIndexEEE _ZTSN5realm9LinkCountE _ZTIN5realm9LinkCountE _ZTSN5realm10CountLinksE -_ZTSN5realm15LinkMapFunctionE -_ZTIN5realm15LinkMapFunctionE _ZTIN5realm10CountLinksE -.str.228 -.str.230 _ZTSN5realm10LogicError9ErrorKindE _ZTIN5realm10LogicError9ErrorKindE _ZTSN5realm16SequentialGetterINS_6ColumnINS_4util8OptionalIxEEEEEE @@ -5356,10 +6779,6 @@ _ZTSN5realm16SequentialGetterINS_6ColumnIxEEEE _ZTIN5realm16SequentialGetterINS_6ColumnIxEEEE _ZTSN5realm12ArrayIntNullE _ZTIN5realm12ArrayIntNullE -_ZTSN5realm14MakeLinkVectorE -_ZTIN5realm14MakeLinkVectorE -.str.232 -.str.234 _ZTSN5realm10SubColumnsIxEE _ZTIN5realm10SubColumnsIxEE _ZTSN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEEE @@ -5380,8 +6799,10 @@ _ZTSN5realm9OverloadsINS_4nullENS_10StringDataEEE _ZTIN5realm9OverloadsINS_4nullENS_10StringDataEEE _ZTSN5realm9OverloadsINS_4nullEbEE _ZTIN5realm9OverloadsINS_4nullEbEE -_ZTSN5realm9OverloadsINS_4nullENS_8DateTimeEEE -_ZTIN5realm9OverloadsINS_4nullENS_8DateTimeEEE +_ZTSN5realm9OverloadsINS_4nullENS_9TimestampEEE +_ZTIN5realm9OverloadsINS_4nullENS_9TimestampEEE +_ZTSN5realm9OverloadsINS_4nullENS_11OldDateTimeEEE +_ZTIN5realm9OverloadsINS_4nullENS_11OldDateTimeEEE _ZTSN5realm9OverloadsINS_4nullES1_EE _ZTIN5realm9OverloadsINS_4nullES1_EE _ZTIN5realm8Subexpr2INS_4nullEEE @@ -5401,8 +6822,10 @@ _ZTSN5realm9OverloadsIfNS_10StringDataEEE _ZTIN5realm9OverloadsIfNS_10StringDataEEE _ZTSN5realm9OverloadsIfbEE _ZTIN5realm9OverloadsIfbEE -_ZTSN5realm9OverloadsIfNS_8DateTimeEEE -_ZTIN5realm9OverloadsIfNS_8DateTimeEEE +_ZTSN5realm9OverloadsIfNS_9TimestampEEE +_ZTIN5realm9OverloadsIfNS_9TimestampEEE +_ZTSN5realm9OverloadsIfNS_11OldDateTimeEEE +_ZTIN5realm9OverloadsIfNS_11OldDateTimeEEE _ZTSN5realm9OverloadsIfNS_4nullEEE _ZTIN5realm9OverloadsIfNS_4nullEEE _ZTIN5realm8Subexpr2IfEE @@ -5445,8 +6868,10 @@ _ZTSN5realm9OverloadsIdNS_10StringDataEEE _ZTIN5realm9OverloadsIdNS_10StringDataEEE _ZTSN5realm9OverloadsIdbEE _ZTIN5realm9OverloadsIdbEE -_ZTSN5realm9OverloadsIdNS_8DateTimeEEE -_ZTIN5realm9OverloadsIdNS_8DateTimeEEE +_ZTSN5realm9OverloadsIdNS_9TimestampEEE +_ZTIN5realm9OverloadsIdNS_9TimestampEEE +_ZTSN5realm9OverloadsIdNS_11OldDateTimeEEE +_ZTIN5realm9OverloadsIdNS_11OldDateTimeEEE _ZTSN5realm9OverloadsIdNS_4nullEEE _ZTIN5realm9OverloadsIdNS_4nullEEE _ZTIN5realm8Subexpr2IdEE @@ -5480,45 +6905,48 @@ _ZTSN5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEEE _ZTIN5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEEE _ZTSN5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEEE _ZTIN5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEEE +.str.241 _ZTSN5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEEE _ZTIN5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEEE _ZTSN5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEEE _ZTIN5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEEE _ZTSN5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEEE _ZTIN5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEEE +.str.242 _ZTSN5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEEE _ZTIN5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEEE _ZTSN5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEEE _ZTIN5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEEE _ZTSN5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEEE _ZTIN5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEEE -.str.240 -_unnamed_cfstring_.241 -.str.244 -_unnamed_cfstring_.245 -.str.246 -_unnamed_cfstring_.247 -.str.248 -_unnamed_cfstring_.249 -.str.250 -_unnamed_cfstring_.251 -.str.252 -_unnamed_cfstring_.253 -.str.254 -_unnamed_cfstring_.255 -.str.256 -_unnamed_cfstring_.257 -.str.258 -_unnamed_cfstring_.259 -.str.260 -_unnamed_cfstring_.261 -.str.262 -_unnamed_cfstring_.263 -_unnamed_cfstring_.265 -.str.266 -_unnamed_cfstring_.267 -.str.268 -_unnamed_cfstring_.269 +.str.245 +_unnamed_cfstring_.246 +.str.247 +_unnamed_cfstring_.248 +.str.249 +_unnamed_cfstring_.250 +.str.251 +_unnamed_cfstring_.252 +.str.253 +_unnamed_cfstring_.254 +.str.255 +_unnamed_cfstring_.256 +.str.257 +_unnamed_cfstring_.258 +.str.259 +_unnamed_cfstring_.260 +.str.261 +_unnamed_cfstring_.262 +.str.263 +_unnamed_cfstring_.264 +.str.265 +_unnamed_cfstring_.266 +.str.267 +_unnamed_cfstring_.268 +.str.269 +_unnamed_cfstring_.270 +.str.275 +_unnamed_cfstring_.276 _ZTSN5realm8Subexpr2IbEE _ZTSN5realm9OverloadsIbPKcEE _ZTIN5realm9OverloadsIbPKcEE @@ -5534,8 +6962,10 @@ _ZTSN5realm9OverloadsIbNS_10StringDataEEE _ZTIN5realm9OverloadsIbNS_10StringDataEEE _ZTSN5realm9OverloadsIbbEE _ZTIN5realm9OverloadsIbbEE -_ZTSN5realm9OverloadsIbNS_8DateTimeEEE -_ZTIN5realm9OverloadsIbNS_8DateTimeEEE +_ZTSN5realm9OverloadsIbNS_9TimestampEEE +_ZTIN5realm9OverloadsIbNS_9TimestampEEE +_ZTSN5realm9OverloadsIbNS_11OldDateTimeEEE +_ZTIN5realm9OverloadsIbNS_11OldDateTimeEEE _ZTSN5realm9OverloadsIbNS_4nullEEE _ZTIN5realm9OverloadsIbNS_4nullEEE _ZTIN5realm8Subexpr2IbEE @@ -5547,48 +6977,52 @@ _ZTSN5realm5ValueIbEE _ZTIN5realm5ValueIbEE _ZTSN5realm7CompareINS_8NotEqualEbNS_7SubexprES2_EE _ZTIN5realm7CompareINS_8NotEqualEbNS_7SubexprES2_EE -_ZTSN5realm8Subexpr2INS_8DateTimeEEE -_ZTSN5realm9OverloadsINS_8DateTimeEPKcEE -_ZTIN5realm9OverloadsINS_8DateTimeEPKcEE -_ZTSN5realm9OverloadsINS_8DateTimeEiEE -_ZTIN5realm9OverloadsINS_8DateTimeEiEE -_ZTSN5realm9OverloadsINS_8DateTimeEfEE -_ZTIN5realm9OverloadsINS_8DateTimeEfEE -_ZTSN5realm9OverloadsINS_8DateTimeEdEE -_ZTIN5realm9OverloadsINS_8DateTimeEdEE -_ZTSN5realm9OverloadsINS_8DateTimeExEE -_ZTIN5realm9OverloadsINS_8DateTimeExEE -_ZTSN5realm9OverloadsINS_8DateTimeENS_10StringDataEEE -_ZTIN5realm9OverloadsINS_8DateTimeENS_10StringDataEEE -_ZTSN5realm9OverloadsINS_8DateTimeEbEE -_ZTIN5realm9OverloadsINS_8DateTimeEbEE -_ZTSN5realm9OverloadsINS_8DateTimeES1_EE -_ZTIN5realm9OverloadsINS_8DateTimeES1_EE -_ZTSN5realm9OverloadsINS_8DateTimeENS_4nullEEE -_ZTIN5realm9OverloadsINS_8DateTimeENS_4nullEEE -_ZTIN5realm8Subexpr2INS_8DateTimeEEE -_ZTSN5realm7ColumnsINS_8DateTimeEEE -_ZTIN5realm7ColumnsINS_8DateTimeEEE -_ZTSN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_EE -_ZTSN5realm5ValueINS_8DateTimeEEE -_ZTIN5realm5ValueINS_8DateTimeEEE -_ZTSN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_EE -_ZTSN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_EE -_ZTSN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_EE -_ZTSN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_EE -_ZTSN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_EE -.str.270 -_unnamed_cfstring_.271 -.str.272 -_unnamed_cfstring_.273 -.str.274 -_unnamed_cfstring_.275 +_ZTSN5realm8Subexpr2INS_9TimestampEEE +_ZTSN5realm9OverloadsINS_9TimestampEPKcEE +_ZTIN5realm9OverloadsINS_9TimestampEPKcEE +_ZTSN5realm9OverloadsINS_9TimestampEiEE +_ZTIN5realm9OverloadsINS_9TimestampEiEE +_ZTSN5realm9OverloadsINS_9TimestampEfEE +_ZTIN5realm9OverloadsINS_9TimestampEfEE +_ZTSN5realm9OverloadsINS_9TimestampEdEE +_ZTIN5realm9OverloadsINS_9TimestampEdEE +_ZTSN5realm9OverloadsINS_9TimestampExEE +_ZTIN5realm9OverloadsINS_9TimestampExEE +_ZTSN5realm9OverloadsINS_9TimestampENS_10StringDataEEE +_ZTIN5realm9OverloadsINS_9TimestampENS_10StringDataEEE +_ZTSN5realm9OverloadsINS_9TimestampEbEE +_ZTIN5realm9OverloadsINS_9TimestampEbEE +_ZTSN5realm9OverloadsINS_9TimestampES1_EE +_ZTIN5realm9OverloadsINS_9TimestampES1_EE +_ZTSN5realm9OverloadsINS_9TimestampENS_11OldDateTimeEEE +_ZTIN5realm9OverloadsINS_9TimestampENS_11OldDateTimeEEE +_ZTSN5realm9OverloadsINS_9TimestampENS_4nullEEE +_ZTIN5realm9OverloadsINS_9TimestampENS_4nullEEE +_ZTIN5realm8Subexpr2INS_9TimestampEEE +_ZTSN5realm7ColumnsINS_9TimestampEEE +_ZTSN5realm18SimpleQuerySupportINS_9TimestampEEE +_ZTIN5realm18SimpleQuerySupportINS_9TimestampEEE +_ZTIN5realm7ColumnsINS_9TimestampEEE +_ZTSN5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_EE +_ZTIN5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_EE +_ZTSN5realm5ValueINS_9TimestampEEE +_ZTIN5realm5ValueINS_9TimestampEEE +.str.278 +_ZTSN5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_EE +_ZTIN5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_EE +_ZTSN5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_EE +_ZTIN5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_EE +_ZTSN5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_EE +_ZTIN5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_EE +_ZTSN5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_EE +_ZTIN5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_EE +_ZTSN5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_EE +_ZTIN5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_EE +_unnamed_cfstring_.281 +.str.282 +_unnamed_cfstring_.283 +.str.284 +_unnamed_cfstring_.285 _ZTSN5realm8Subexpr2INS_10StringDataEEE _ZTSN5realm9OverloadsINS_10StringDataEPKcEE _ZTIN5realm9OverloadsINS_10StringDataEPKcEE @@ -5604,12 +7038,16 @@ _ZTSN5realm9OverloadsINS_10StringDataES1_EE _ZTIN5realm9OverloadsINS_10StringDataES1_EE _ZTSN5realm9OverloadsINS_10StringDataEbEE _ZTIN5realm9OverloadsINS_10StringDataEbEE -_ZTSN5realm9OverloadsINS_10StringDataENS_8DateTimeEEE -_ZTIN5realm9OverloadsINS_10StringDataENS_8DateTimeEEE +_ZTSN5realm9OverloadsINS_10StringDataENS_9TimestampEEE +_ZTIN5realm9OverloadsINS_10StringDataENS_9TimestampEEE +_ZTSN5realm9OverloadsINS_10StringDataENS_11OldDateTimeEEE +_ZTIN5realm9OverloadsINS_10StringDataENS_11OldDateTimeEEE _ZTSN5realm9OverloadsINS_10StringDataENS_4nullEEE _ZTIN5realm9OverloadsINS_10StringDataENS_4nullEEE _ZTIN5realm8Subexpr2INS_10StringDataEEE _ZTSN5realm7ColumnsINS_10StringDataEEE +_ZTSN5realm18SimpleQuerySupportINS_10StringDataEEE +_ZTIN5realm18SimpleQuerySupportINS_10StringDataEEE _ZTIN5realm7ColumnsINS_10StringDataEEE _ZTSN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_EE _ZTIN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_EE @@ -5635,32 +7073,27 @@ _ZTSN5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_EE _ZTIN5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_EE _ZTSN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_EE _ZTIN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_EE -.str.276 -.str.277 -_unnamed_cfstring_.278 -.str.279 -_unnamed_cfstring_.280 -.str.283 -_unnamed_cfstring_.284 -.str.285 -_ZTSN5realm16UnaryLinkCompareILb0EEE -_ZTIN5realm16UnaryLinkCompareILb0EEE -_ZTSN5realm13FindNullLinksE -_ZTIN5realm13FindNullLinksE +.str.286 _unnamed_cfstring_.287 .str.288 _unnamed_cfstring_.289 .str.290 _unnamed_cfstring_.291 -OBJC_CLASSLIST_REFERENCES_$_.292 -.str.293 -_unnamed_cfstring_.294 -OBJC_METH_VAR_NAME_.295 -OBJC_SELECTOR_REFERENCES_.296 -OBJC_METH_VAR_NAME_.297 -OBJC_SELECTOR_REFERENCES_.298 -OBJC_METH_VAR_NAME_.299 -OBJC_SELECTOR_REFERENCES_.300 +.str.292 +_unnamed_cfstring_.293 +.str.294 +_ZTSN5realm16UnaryLinkCompareILb0EEE +_ZTIN5realm16UnaryLinkCompareILb0EEE +_ZTSN5realm13FindNullLinksE +_ZTIN5realm13FindNullLinksE +OBJC_CLASSLIST_REFERENCES_$_.301 +.str.302 +_unnamed_cfstring_.303 +OBJC_METH_VAR_NAME_.304 +OBJC_SELECTOR_REFERENCES_.305 +OBJC_METH_VAR_NAME_.306 +OBJC_SELECTOR_REFERENCES_.307 +OBJC_SELECTOR_REFERENCES_.309 _ZTSN5realm5ValueIiEE _ZTSN5realm8Subexpr2IiEE _ZTSN5realm9OverloadsIiPKcEE @@ -5677,172 +7110,117 @@ _ZTSN5realm9OverloadsIiNS_10StringDataEEE _ZTIN5realm9OverloadsIiNS_10StringDataEEE _ZTSN5realm9OverloadsIibEE _ZTIN5realm9OverloadsIibEE -_ZTSN5realm9OverloadsIiNS_8DateTimeEEE -_ZTIN5realm9OverloadsIiNS_8DateTimeEEE +_ZTSN5realm9OverloadsIiNS_9TimestampEEE +_ZTIN5realm9OverloadsIiNS_9TimestampEEE +_ZTSN5realm9OverloadsIiNS_11OldDateTimeEEE +_ZTIN5realm9OverloadsIiNS_11OldDateTimeEEE _ZTSN5realm9OverloadsIiNS_4nullEEE _ZTIN5realm9OverloadsIiNS_4nullEEE _ZTIN5realm8Subexpr2IiEE _ZTIN5realm5ValueIiEE -OBJC_METH_VAR_NAME_.301 -OBJC_SELECTOR_REFERENCES_.302 -.str.303 -_unnamed_cfstring_.304 -.str.305 -_unnamed_cfstring_.306 -.str.307 -_unnamed_cfstring_.308 -OBJC_METH_VAR_NAME_.309 -OBJC_SELECTOR_REFERENCES_.310 +.str.310 +_ZTSN5realm13SubQueryCountE +_ZTIN5realm13SubQueryCountE +_ZTSN5realm26SubQueryCountHandoverPatchE +_ZTSN5realm22QueryNodeHandoverPatchE +_ZTIN5realm22QueryNodeHandoverPatchE +_ZTIN5realm26SubQueryCountHandoverPatchE .str.311 -_unnamed_cfstring_.312 -OBJC_CLASSLIST_REFERENCES_$_.313 -OBJC_CLASSLIST_REFERENCES_$_.316 -.str.317 -_unnamed_cfstring_.318 -OBJC_CLASSLIST_REFERENCES_$_.319 -OBJC_CLASSLIST_REFERENCES_$_.320 -OBJC_METH_VAR_NAME_.321 -OBJC_SELECTOR_REFERENCES_.322 -OBJC_METH_VAR_NAME_.323 -OBJC_SELECTOR_REFERENCES_.324 +.str.312 +_unnamed_cfstring_.314 +.str.315 +_unnamed_cfstring_.316 +OBJC_METH_VAR_NAME_.317 +OBJC_SELECTOR_REFERENCES_.318 +.str.319 +_unnamed_cfstring_.320 +.str.322 +_unnamed_cfstring_.323 +OBJC_CLASSLIST_REFERENCES_$_.324 +.str.325 +_unnamed_cfstring_.326 +OBJC_CLASSLIST_REFERENCES_$_.327 +OBJC_CLASSLIST_REFERENCES_$_.328 OBJC_METH_VAR_NAME_.329 OBJC_SELECTOR_REFERENCES_.330 -.str.331 -_unnamed_cfstring_.332 -.str.333 -_unnamed_cfstring_.334 +OBJC_METH_VAR_NAME_.333 +OBJC_SELECTOR_REFERENCES_.334 +.str.335 +.str.337 +.str.339 +.str.341 +OBJC_METH_VAR_NAME_.342 +OBJC_SELECTOR_REFERENCES_.343 +OBJC_METH_VAR_NAME_.344 +OBJC_SELECTOR_REFERENCES_.345 +OBJC_METH_VAR_NAME_.346 +OBJC_SELECTOR_REFERENCES_.347 +OBJC_METH_VAR_NAME_.348 +OBJC_SELECTOR_REFERENCES_.349 +_ZTSN5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_EE +_ZTIN5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_EE +_ZTSN5realm16ConstantRowValueE +_ZTIN5realm16ConstantRowValueE +_ZTSN5realm29ConstantRowValueHandoverPatchE +_ZTIN5realm29ConstantRowValueHandoverPatchE +_ZTSN5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_EE +_ZTIN5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_EE _ZTSN5realm7CompareINS_5EqualEiNS_7SubexprES2_EE _ZTIN5realm7CompareINS_5EqualEiNS_7SubexprES2_EE _ZTSN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_EE _ZTIN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_EE -.str.335 -_unnamed_cfstring_.336 -.str.337 -_unnamed_cfstring_.338 -OBJC_METH_VAR_NAME_.339 -OBJC_SELECTOR_REFERENCES_.340 -.str.341 -_unnamed_cfstring_.342 -OBJC_METH_VAR_NAME_.343 -OBJC_SELECTOR_REFERENCES_.344 -.str.345 -_unnamed_cfstring_.346 -OBJC_METH_VAR_NAME_.347 -OBJC_SELECTOR_REFERENCES_.348 -.str.349 -_unnamed_cfstring_.350 -.str.351 -_unnamed_cfstring_.352 -.str.353 -_unnamed_cfstring_.354 -OBJC_METH_VAR_NAME_.355 -OBJC_SELECTOR_REFERENCES_.356 -OBJC_METH_VAR_NAME_.357 -OBJC_SELECTOR_REFERENCES_.358 +.str.355 +_unnamed_cfstring_.356 +.str.357 +_unnamed_cfstring_.358 OBJC_METH_VAR_NAME_.359 OBJC_SELECTOR_REFERENCES_.360 -OBJC_METH_VAR_NAME_.361 -OBJC_SELECTOR_REFERENCES_.362 -OBJC_METH_VAR_NAME_.363 -OBJC_SELECTOR_REFERENCES_.364 -OBJC_CLASSLIST_REFERENCES_$_.365 -OBJC_METH_VAR_NAME_.366 -OBJC_SELECTOR_REFERENCES_.367 -OBJC_METH_VAR_NAME_.368 -OBJC_SELECTOR_REFERENCES_.369 -OBJC_METH_VAR_NAME_.370 -OBJC_SELECTOR_REFERENCES_.371 -OBJC_METH_VAR_NAME_.372 -OBJC_SELECTOR_REFERENCES_.373 -.str.374 -_ZTSN5realm13SubQueryCountE -_ZTIN5realm13SubQueryCountE -_ZTSN5realm26SubQueryCountHandoverPatchE -_ZTSN5realm22QueryNodeHandoverPatchE -_ZTIN5realm22QueryNodeHandoverPatchE -_ZTIN5realm26SubQueryCountHandoverPatchE -.str.375 -.str.376 +.str.361 +_unnamed_cfstring_.362 +.str.365 +_unnamed_cfstring_.366 +OBJC_METH_VAR_NAME_.367 +OBJC_SELECTOR_REFERENCES_.368 +.str.369 +_unnamed_cfstring_.370 +_unnamed_cfstring_.372 +_unnamed_cfstring_.374 +OBJC_METH_VAR_NAME_.375 +OBJC_SELECTOR_REFERENCES_.376 +OBJC_METH_VAR_NAME_.377 +OBJC_SELECTOR_REFERENCES_.378 +OBJC_METH_VAR_NAME_.379 +OBJC_SELECTOR_REFERENCES_.380 +OBJC_METH_VAR_NAME_.381 +OBJC_SELECTOR_REFERENCES_.382 +OBJC_METH_VAR_NAME_.383 +OBJC_SELECTOR_REFERENCES_.384 +OBJC_CLASSLIST_REFERENCES_$_.385 +OBJC_METH_VAR_NAME_.386 +OBJC_SELECTOR_REFERENCES_.387 +OBJC_METH_VAR_NAME_.388 +OBJC_SELECTOR_REFERENCES_.389 +OBJC_METH_VAR_NAME_.390 +OBJC_SELECTOR_REFERENCES_.391 _ZTVN12_GLOBAL__N_115FalseExpressionE _ZTSN12_GLOBAL__N_115FalseExpressionE _ZTIN12_GLOBAL__N_115FalseExpressionE -.str.377 -_unnamed_cfstring_.378 -.str.379 -_unnamed_cfstring_.380 -.str.381 -_unnamed_cfstring_.382 -.str.383 -_unnamed_cfstring_.384 -.str.385 -_unnamed_cfstring_.386 +_unnamed_cfstring_.393 +_unnamed_cfstring_.395 +.str.396 +_unnamed_cfstring_.397 +.str.398 +_unnamed_cfstring_.399 +.str.400 +_unnamed_cfstring_.401 .memset_pattern -.memset_pattern.387 -__bit_reference -__make_ref -__align_it -__swap_allocator > -__copy_unaligned >, false> -__copy_aligned >, false> -copy >, false> -__distance >, false, 0> > -distance >, false, 0> > -__construct_at_end >, false, 0> > -allocator -allocator -__push_back_slow_path -construct -__construct +.memset_pattern.402 RLMValidatedPropertyForSort -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMQueryUtil.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMQueryUtil.mm FalseExpression -clone get_base_table set_base_table ~FalseExpression -~SubQuery -~SubQueryCount -core/include/realm/query_expression.hpp -accumulate, int, (lambda at core/include/realm/query_expression.hpp:2244:71)> -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/numeric -evaluate -apply_handover_patch -SubQueryCount -forward -make_subexpr -move > *&> -swap > *> -move > &> -move_if_noexcept > > -forward > > -forward > -construct >, std::__1::unique_ptr > > -__construct >, std::__1::unique_ptr > > -__construct_backward > *> -forward > > &> -__emplace_back_slow_path -forward -move -construct >, realm::SubQueryCountHandoverPatch *> -__construct >, realm::SubQueryCountHandoverPatch *> -emplace_back -forward -move -~SubQueryCountHandoverPatch -~QueryNodeHandoverPatch -QueryNodeHandoverPatch -SubQueryCountHandoverPatch -move &> -move &> -LinkMap -move -count -operator== -operator== -link_map -SubQuery -column -resolveWithSubquery add_numeric_constraint_to_query is_self_value_for_key_path_function_expression simplify_self_value_for_key_path_function_expression @@ -5856,20 +7234,15 @@ add_string_constraint_to_query add_numeric_constraint_to_query > add_numeric_constraint_to_query > add_numeric_constraint_to_query > -create -operator!= -create -operator== -create -operator>= -create -operator> -create -operator<= -only_numeric -create -operator< -add_numeric_constraint_to_query > +operator!= +core/include/realm/query_expression.hpp +operator== +operator>= +operator> +operator<= +operator< +add_numeric_constraint_to_query > +apply_handover_patch Compare operator() core/include/realm/query_conditions.hpp @@ -5887,7 +7260,26 @@ add_bool_constraint_to_query > do_add_constraint_to_query do_add_constraint_to_query add_constraint_to_query -BasicRow +operator() +make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > +RowIndex +evaluate +__emplace_back_slow_path +construct >, realm::ConstantRowValueHandoverPatch *> +__construct >, realm::ConstantRowValueHandoverPatch *> +emplace_back +RowBaseHandoverPatch +generate_patch +forward +move +~ConstantRowValueHandoverPatch +ConstantRowValueHandoverPatch +ConstantRowValue +~ConstantRowValue +forward &> +make_subexpr &> +operator== +make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > add_link_constraint_to_query add_binary_constraint_to_query convert @@ -5896,22 +7288,22 @@ add_string_constraint_to_query add_numeric_constraint_to_query, long long> add_numeric_constraint_to_query, float> add_numeric_constraint_to_query, double> -convert -value_of_type_for_query -create -create -create +convert +value_of_type_for_query +create +create +create operator>= -create +create operator> -create +create operator<= -forward -make_subexpr, realm::DateTime &> -unwrap -only_numeric -create -add_numeric_constraint_to_query, realm::DateTime> +forward +make_subexpr, realm::Timestamp &> +unwrap +only_numeric +create +add_numeric_constraint_to_query, realm::Timestamp> convert value_of_type_for_query create @@ -5922,11 +7314,62 @@ do_add_constraint_to_query<(anonymous namespace)::ColumnReference, id> is_nsnull add_constraint_to_query<(anonymous namespace)::ColumnReference, id> validate_property_value -process_or_group<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMQueryUtil.mm:935:40)> -between_datetime +process_or_group<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMQueryUtil.mm:986:40)> RLMDynamicCast value_from_constant_expression_or_value validate_and_extract_between_range +~SubQuery +~SubQueryCount +only_numeric +create +accumulate, int, (lambda at core/include/realm/query_expression.hpp:2452:71)> +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/numeric +SubQueryCount +forward +make_subexpr +move > *&> +swap > *> +move > &> +move_if_noexcept > > +forward > > +forward > +construct >, std::__1::unique_ptr > > +__construct >, std::__1::unique_ptr > > +__construct_backward > *> +forward > > &> +__emplace_back_slow_path +forward +move +construct >, realm::SubQueryCountHandoverPatch *> +__construct >, realm::SubQueryCountHandoverPatch *> +emplace_back +forward +move +~SubQueryCountHandoverPatch +~QueryNodeHandoverPatch +QueryNodeHandoverPatch +SubQueryCountHandoverPatch +move &> +move &> +LinkMap +move +column +operator== +operator== +link_map +SubQuery +resolve_with_subquery +ColumnReference +column_ignoring_links +link_target_object_schema +constexpr_move<(anonymous namespace)::ColumnReference &> +construct +__construct +last_link_column +end > > +begin > > +any_of, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMQueryUtil.mm:188:58)> +has_any_to_many_links add_between_constraint_to_query add_numeric_constraint_to_query > > operator!= @@ -5961,6 +7404,8 @@ forward &> make_subexpr, const realm::Value &> import export_null +export2 +export_RowIndex export2 export_BinaryData export2 @@ -5973,11 +7418,12 @@ export2 export_float export2 export_int +export2 +export_Timestamp export2 export_bool ~Subexpr2 ~NullableVector -forward make_subexpr, int &> unwrap only_numeric @@ -6075,7 +7521,6 @@ only_numeric create add_numeric_constraint_to_query add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation, id> -property validate_comparison update_query_with_collection_operator_expression update_query_with_value_expression @@ -6084,7 +7529,6 @@ not_equal string_compare equal string_compare -contains string_compare ends_with string_compare @@ -6099,7 +7543,7 @@ create2 create2 clone_subexpr create2 -add_numeric_constraint_to_query, realm::Columns > +add_numeric_constraint_to_query, realm::Columns > add_bool_constraint_to_query, realm::Columns > do_add_constraint_to_query<(anonymous namespace)::ColumnReference, (anonymous namespace)::ColumnReference> UnaryLinkCompare @@ -6112,13 +7556,11 @@ has_links add_binary_constraint_to_query ~Columns make_value_for_link +SimpleQuerySupport Columns forward &> make_subexpr, const realm::Columns &> -inspect_all, std::__1::allocator >, realm::DataType> -inspect_value, std::__1::allocator >, realm::DataType> -inspect_all, std::__1::allocator >, realm::DataType, realm::DataType> -terminate +~SimpleQuerySupport column resolve compare @@ -6158,9 +7600,6 @@ make_expression ~ConstantStringValue ConstantStringValue -~OptionalStorage -~Optional -value constexpr_move &> some > some, std::__1::basic_string > @@ -6203,38 +7642,38 @@ create only_numeric create add_numeric_constraint_to_query, realm::null> -evaluate_internal > -evaluate_internal > > -forward &> -make_subexpr, const realm::Columns &> -column -resolve -operator() -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create +make_value_for_link +forward &> +make_subexpr, const realm::Columns &> +column +resolve +operator() +make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > +create +make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > +create compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create +make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > +create compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create +make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > +create compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create +make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > +create compare -__unwrap_iter -__copy -copy -forward &> -make_subexpr, const realm::Value &> -dealloc -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > +__unwrap_iter +__copy +copy +forward &> +make_subexpr, const realm::Value &> +make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > unwrap -only_numeric -create -add_numeric_constraint_to_query, realm::null> +only_numeric +create +add_numeric_constraint_to_query, realm::null> +evaluate_internal > +evaluate_internal > > forward &> make_subexpr, const realm::Columns &> column @@ -6273,7 +7712,6 @@ add_numeric_constraint_to_query, realm::LinkCount> add_collection_operation_constraint_to_query<(anonymous namespace)::ColumnReference, (anonymous namespace)::CollectionOperation> ~CollectionOperation ~ColumnReference -ColumnReference move<(anonymous namespace)::ColumnReference &> CollectionOperation ~SubColumnAggregate @@ -6340,7 +7778,7 @@ make_subexpr add_numeric_constraint_to_query >, realm::Columns > add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Maximum, (anonymous namespace)::CollectionOperation, (anonymous namespace)::ColumnReference> -column_type +column column resolve value_of_type_for_query_with_collection_operation @@ -6421,6 +7859,9 @@ __copy copy forward &> make_subexpr, const realm::Value &> +set +dealloc +set min > min sort > @@ -6428,7 +7869,6 @@ sort sort forward > &> make_subexpr >, const realm::SubColumnAggregate > &> -column_index forward &> make_subexpr, const realm::SubColumns &> column @@ -6443,13 +7883,7 @@ OptionalStorage some some null_value -operator!= -find, realm::DataType> -operator== -only_unary_links make_value_for_link -MakeLinkVector -get_links ~ArrayIntNull ArrayIntNull operator() @@ -6465,65 +7899,72 @@ forward resolve value_of_type_for_query_with_collection_operation ~LinkMap -BasicRowExpr -bind_ptr -core/include/realm/column_linklist.hpp -map_links -LinkMapFunction CountLinks count_links LinkCount forward make_subexpr +property index +set +only_unary_links +__unwrap_iter +__copy +copy +forward &> +make_subexpr, const realm::Value &> +OptionalStorage +make_value_for_link +shared_ptr +core/include/realm/column_linklist.hpp +map_links +LinkMapFunction +MakeLinkVector +get_links base_table -__construct_range_forward -__construct_at_end -forward > -__construct_range_forward -__construct_at_end -forward > +__construct_range_forward +__construct_at_end +forward > +__construct_range_forward +__construct_at_end +forward > forward &> make_subexpr, const realm::Columns &> -move -swap -__construct_backward -forward &> -__push_back_slow_path -move -forward -construct -__construct -move -swap -__construct_backward -forward &> -__push_back_slow_path -move -forward -construct -__construct +core/include/realm/column_backlink.hpp +move +swap +__construct_backward +forward &> +__push_back_slow_path +move +forward +construct +__construct +move +swap +__construct_backward +forward &> +__push_back_slow_path +forward +construct +__construct +is_link_type get_real_column_type -operator== -operator!= -__to_raw_pointer -__destroy -destroy -__to_raw_pointer -__destroy -destroy -forward -forward -move -swap -__construct_backward -forward &> +__to_raw_pointer +__destroy +destroy +__to_raw_pointer +__destroy +destroy +forward +forward +backlink __push_back_slow_path construct __construct link -operator== -operator!= +operator== +operator!= table_for_query resolve link_column @@ -6544,10 +7985,13 @@ Subexpr ValueBase forward &> make_subexpr, const realm::Value &> +set type_punning get_null_float +set type_punning get_null_float +set replace find ~Subexpr @@ -6558,21 +8002,43 @@ forward, std::__1::unique_ptr >, std::__1::unique_ptr > > add_numeric_constraint_to_query > add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation, (anonymous namespace)::ColumnReference> +forward +construct +__construct +__construct_range_forward +__construct_at_end +forward > +move > &> +move +swap +move +move_if_noexcept +forward +construct +__construct +__construct_backward +forward &> +__push_back_slow_path +forward +construct +__construct +forward column_reference_from_key_path -core/include/realm/column_fwd.hpp name_for_type -~BadOptionalAccess -BadOptionalAccess type_for_name move &> forward<(anonymous namespace)::ColumnReference> +move &> +__to_raw_pointer +__destroy +destroy operator=<(anonymous namespace)::ColumnReference, void> get_collection_operation_name_from_key_path collection_operation_from_key_path key_path_contains_collection_operator update_query_with_column_expression RLMPredicateException -process_or_group<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMQueryUtil.mm:1085:61)> +process_or_group<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMQueryUtil.mm:1136:61)> forward move Expression @@ -6596,15 +8062,12 @@ RLMValidatedProperty -[RLMRealm isEmpty] -[RLMRealm verifyThread] -[RLMRealm inWriteTransaction] --[RLMRealm path] -[RLMRealm group] --[RLMRealm isReadOnly] -[RLMRealm autorefresh] -[RLMRealm setAutorefresh:] +[RLMRealm writeableTemporaryPathForFile:] +[RLMRealm defaultRealm] -+[RLMRealm realmWithPath:] -+[RLMRealm realmWithPath:key:readOnly:inMemory:dynamic:schema:error:] ++[RLMRealm realmWithURL:] +[RLMRealm realmWithSharedRealm:schema:] _ZL25RLMRealmSetSchemaAndAlignP8RLMRealmP9RLMSchema _ZL14RLMAutoreleaseP11objc_object @@ -6614,7 +8077,6 @@ _ZN5realm4util4File16PermissionDeniedD1Ev +[RLMRealm resetRealmState] -[RLMRealm verifyNotificationsAreSupported] -[RLMRealm addNotificationBlock:] --[RLMRealm removeNotification:] -[RLMRealm sendNotifications:] -[RLMRealm configuration] -[RLMRealm beginWriteTransaction] @@ -6639,18 +8101,17 @@ _ZN5realm4util4File16PermissionDeniedD1Ev -[RLMRealm objects:where:args:] -[RLMRealm objects:withPredicate:] -[RLMRealm objectWithClassName:forPrimaryKey:] -+[RLMRealm schemaVersionAtPath:error:] -+[RLMRealm schemaVersionAtPath:encryptionKey:error:] ++[RLMRealm schemaVersionAtURL:encryptionKey:error:] +[RLMRealm migrateRealm:] -[RLMRealm createObject:withValue:] --[RLMRealm writeCopyToPath:key:error:] --[RLMRealm writeCopyToPath:error:] --[RLMRealm writeCopyToPath:encryptionKey:error:] +-[RLMRealm writeCopyToURL:encryptionKey:error:] -[RLMRealm registerEnumerator:] -[RLMRealm unregisterEnumerator:] -[RLMRealm detachAllEnumerators] -[RLMRealm schema] -[RLMRealm setSchema:] +-[RLMRealm notificationHandlers] +-[RLMRealm setNotificationHandlers:] -[RLMRealm dynamic] -[RLMRealm .cxx_destruct] -[RLMRealm .cxx_construct] @@ -6678,129 +8139,120 @@ _ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1N OBJC_IVAR_$_RLMRealmNotificationToken._realm OBJC_IVAR_$_RLMRealmNotificationToken._block l_OBJC_METACLASS_RO_$_RLMRealmNotificationToken -OBJC_CLASS_NAME_.3 -OBJC_METH_VAR_TYPE_.7 -OBJC_METH_VAR_TYPE_.9 +OBJC_CLASS_NAME_.7 OBJC_METH_VAR_TYPE_.11 l_OBJC_$_INSTANCE_METHODS_RLMRealmNotificationToken +OBJC_METH_VAR_TYPE_.19 +OBJC_METH_VAR_TYPE_.21 l_OBJC_$_INSTANCE_VARIABLES_RLMRealmNotificationToken -OBJC_PROP_NAME_ATTR_.18 -OBJC_PROP_NAME_ATTR_.19 -OBJC_PROP_NAME_ATTR_.20 +OBJC_PROP_NAME_ATTR_.22 +OBJC_PROP_NAME_ATTR_.23 +OBJC_PROP_NAME_ATTR_.24 l_OBJC_$_PROP_LIST_RLMRealmNotificationToken l_OBJC_CLASS_RO_$_RLMRealmNotificationToken +_unnamed_cfstring_.28 _ZZ22+[RLMRealm initialize]E11initialized +OBJC_CLASSLIST_REFERENCES_$_.33 OBJC_IVAR_$_RLMRealm._dynamic +_ZTSN5realm21AddressSpaceExhaustedE +_ZTIN5realm21AddressSpaceExhaustedE _ZZ41+[RLMRealm realmWithConfiguration:error:]E8initLock _ZGVZ41+[RLMRealm realmWithConfiguration:error:]E8initLock -OBJC_CLASSLIST_REFERENCES_$_.83 -.str.110 -_unnamed_cfstring_.111 +OBJC_CLASSLIST_REFERENCES_$_.73 +OBJC_CLASSLIST_REFERENCES_$_.91 +OBJC_SELECTOR_REFERENCES_.101 +_unnamed_cfstring_.105 OBJC_IVAR_$_RLMRealm._notificationHandlers -OBJC_CLASSLIST_REFERENCES_$_.118 -OBJC_SELECTOR_REFERENCES_.120 -OBJC_CLASSLIST_REFERENCES_$_.121 -OBJC_SELECTOR_REFERENCES_.129 +OBJC_CLASSLIST_REFERENCES_$_.110 +OBJC_CLASSLIST_REFERENCES_$_.113 OBJC_IVAR_$_RLMRealm._schema -OBJC_SELECTOR_REFERENCES_.131 -_ZTSN5realm4util4File11AccessErrorE -_ZTIN5realm4util4File11AccessErrorE -OBJC_METH_VAR_NAME_.132 -OBJC_SELECTOR_REFERENCES_.133 -OBJC_METH_VAR_NAME_.134 -OBJC_SELECTOR_REFERENCES_.135 -.str.136 -_unnamed_cfstring_.137 -OBJC_SELECTOR_REFERENCES_.139 +OBJC_SELECTOR_REFERENCES_.137 OBJC_SELECTOR_REFERENCES_.143 -_unnamed_cfstring_.145 -OBJC_CLASSLIST_SUP_REFS_$_.146 -OBJC_CLASSLIST_REFERENCES_$_.147 -OBJC_METH_VAR_NAME_.148 -OBJC_SELECTOR_REFERENCES_.149 -_unnamed_cfstring_.153 -OBJC_SELECTOR_REFERENCES_.155 -_unnamed_cfstring_.157 -_unnamed_cfstring_.168 -OBJC_CLASS_NAME_.170 -OBJC_SELECTOR_REFERENCES_.177 -OBJC_CLASSLIST_REFERENCES_$_.178 -_unnamed_cfstring_.187 -OBJC_CLASSLIST_REFERENCES_$_.188 -_ZTSN5realm4util4File16PermissionDeniedE -_ZTIN5realm4util4File16PermissionDeniedE -_ZTSN5realm4util4File6ExistsE -_ZTIN5realm4util4File6ExistsE -_ZTSN5realm4util4File8NotFoundE -_ZTIN5realm4util4File8NotFoundE -OBJC_SELECTOR_REFERENCES_.196 -OBJC_SELECTOR_REFERENCES_.198 +OBJC_SELECTOR_REFERENCES_.145 +_unnamed_cfstring_.147 +OBJC_CLASSLIST_SUP_REFS_$_.148 +OBJC_SELECTOR_REFERENCES_.151 +OBJC_SELECTOR_REFERENCES_.157 +OBJC_CLASS_NAME_.172 +OBJC_CLASSLIST_REFERENCES_$_.175 +OBJC_SELECTOR_REFERENCES_.179 +OBJC_CLASSLIST_REFERENCES_$_.180 +OBJC_CLASSLIST_REFERENCES_$_.187 +_unnamed_cfstring_.189 +OBJC_CLASSLIST_REFERENCES_$_.190 +OBJC_METH_VAR_NAME_.191 +OBJC_SELECTOR_REFERENCES_.192 OBJC_IVAR_$_RLMRealm._collectionEnumerators -OBJC_METH_VAR_NAME_.201 -OBJC_SELECTOR_REFERENCES_.202 OBJC_CLASS_NAME_.203 -OBJC_METH_VAR_TYPE_.205 -OBJC_METH_VAR_NAME_.206 +OBJC_METH_VAR_NAME_.207 OBJC_METH_VAR_TYPE_.208 -OBJC_METH_VAR_TYPE_.215 -OBJC_METH_VAR_TYPE_.216 -OBJC_METH_VAR_NAME_.218 -OBJC_METH_VAR_TYPE_.219 -OBJC_METH_VAR_TYPE_.220 +OBJC_METH_VAR_NAME_.209 +OBJC_METH_VAR_TYPE_.213 +OBJC_METH_VAR_TYPE_.214 +OBJC_METH_VAR_NAME_.215 +OBJC_METH_VAR_TYPE_.217 l_OBJC_$_CLASS_METHODS_RLMRealm l_OBJC_METACLASS_RO_$_RLMRealm +OBJC_CLASS_NAME_.219 +OBJC_METH_VAR_TYPE_.222 +OBJC_METH_VAR_TYPE_.227 +OBJC_METH_VAR_NAME_.230 +OBJC_METH_VAR_TYPE_.231 +OBJC_METH_VAR_TYPE_.233 OBJC_METH_VAR_NAME_.234 +OBJC_METH_VAR_NAME_.235 +OBJC_METH_VAR_NAME_.236 +OBJC_METH_VAR_NAME_.238 +OBJC_METH_VAR_NAME_.240 +OBJC_METH_VAR_NAME_.241 OBJC_METH_VAR_NAME_.242 +OBJC_METH_VAR_TYPE_.243 +OBJC_METH_VAR_TYPE_.244 OBJC_METH_VAR_TYPE_.248 -OBJC_METH_VAR_TYPE_.249 -OBJC_METH_VAR_NAME_.255 +OBJC_METH_VAR_NAME_.249 +OBJC_METH_VAR_NAME_.251 l_OBJC_$_INSTANCE_METHODS_RLMRealm -OBJC_METH_VAR_TYPE_.259 -OBJC_METH_VAR_NAME_.263 -OBJC_METH_VAR_TYPE_.264 -OBJC_METH_VAR_NAME_.265 -OBJC_METH_VAR_TYPE_.266 +OBJC_METH_VAR_TYPE_.257 l_OBJC_$_INSTANCE_VARIABLES_RLMRealm -OBJC_PROP_NAME_ATTR_.267 -OBJC_PROP_NAME_ATTR_.268 -OBJC_PROP_NAME_ATTR_.269 -OBJC_PROP_NAME_ATTR_.270 +OBJC_PROP_NAME_ATTR_.261 +OBJC_PROP_NAME_ATTR_.262 +OBJC_PROP_NAME_ATTR_.263 +OBJC_PROP_NAME_ATTR_.264 +OBJC_PROP_NAME_ATTR_.265 +OBJC_PROP_NAME_ATTR_.266 OBJC_PROP_NAME_ATTR_.271 OBJC_PROP_NAME_ATTR_.272 OBJC_PROP_NAME_ATTR_.273 OBJC_PROP_NAME_ATTR_.274 OBJC_PROP_NAME_ATTR_.275 -OBJC_PROP_NAME_ATTR_.276 -OBJC_PROP_NAME_ATTR_.277 -OBJC_PROP_NAME_ATTR_.278 -OBJC_PROP_NAME_ATTR_.279 -OBJC_PROP_NAME_ATTR_.280 l_OBJC_$_PROP_LIST_RLMRealm l_OBJC_CLASS_RO_$_RLMRealm _ZZL31shouldForciblyDisableEncryptionvE17disableEncryption _ZGVZL31shouldForciblyDisableEncryptionvE17disableEncryption -.str.284 -OBJC_METH_VAR_NAME_.285 -OBJC_SELECTOR_REFERENCES_.286 -OBJC_METH_VAR_NAME_.287 -OBJC_SELECTOR_REFERENCES_.288 -OBJC_METH_VAR_NAME_.289 -OBJC_SELECTOR_REFERENCES_.290 -OBJC_METH_VAR_NAME_.291 -OBJC_SELECTOR_REFERENCES_.292 -OBJC_SELECTOR_REFERENCES_.293 -.str.294 -_unnamed_cfstring_.295 +.str.276 +OBJC_CLASSLIST_REFERENCES_$_.277 +OBJC_SELECTOR_REFERENCES_.279 +OBJC_METH_VAR_NAME_.280 +OBJC_SELECTOR_REFERENCES_.281 +OBJC_SELECTOR_REFERENCES_.283 +OBJC_METH_VAR_NAME_.284 +OBJC_SELECTOR_REFERENCES_.285 +OBJC_SELECTOR_REFERENCES_.287 +_ZTSN5realm4util4File16PermissionDeniedE +_ZTSN5realm4util4File11AccessErrorE +_ZTIN5realm4util4File11AccessErrorE +_ZTIN5realm4util4File16PermissionDeniedE _ZTVNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE _ZTSNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE _ZTSNSt3__110__function6__baseIFvNS_10shared_ptrIN5realm5RealmEEES5_EEE _ZTINSt3__110__function6__baseIFvNS_10shared_ptrIN5realm5RealmEEES5_EEE _ZTINSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE -OBJC_CLASSLIST_REFERENCES_$_.297 -OBJC_METH_VAR_NAME_.298 -OBJC_SELECTOR_REFERENCES_.299 -OBJC_METH_VAR_NAME_.300 -OBJC_SELECTOR_REFERENCES_.301 +OBJC_SELECTOR_REFERENCES_.288 +OBJC_CLASSLIST_REFERENCES_$_.289 +OBJC_METH_VAR_NAME_.290 +OBJC_SELECTOR_REFERENCES_.291 +OBJC_METH_VAR_NAME_.292 +OBJC_SELECTOR_REFERENCES_.293 _ZTSZ41+[RLMRealm realmWithConfiguration:error:]E3$_0 _ZTIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0 _ZTVNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE @@ -6808,113 +8260,109 @@ _ZTSNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1 _ZTINSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE _ZTSZ41+[RLMRealm realmWithConfiguration:error:]E3$_1 _ZTIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1 -RLMDynamicCast forward > -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &> -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &, std::__1::shared_ptr, std::__1::shared_ptr > -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &, std::__1::shared_ptr, std::__1::shared_ptr > -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &> -forward &> -forward_as_tuple &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &&> -forward &&> -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &> -forward -forward_as_tuple -allocator, void (std::__1::shared_ptr, std::__1::shared_ptr)> > -forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > > -forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> *> -move, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&, 0> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37), false> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -operator=<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm +__invoke<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &, std::__1::shared_ptr, std::__1::shared_ptr > +__call<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &, std::__1::shared_ptr, std::__1::shared_ptr > +get<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> &> +__libcpp_compressed_pair_imp &, 0, 0> +move &> &> +__compressed_pair &> +__tuple_leaf &, void> +__tuple_impl<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> &, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> &> +forward &> +forward_as_tuple &> +get<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> &&> +forward &&> +get<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &> +__libcpp_compressed_pair_imp &&, 0, 0> +move &&> &> +move &> +__compressed_pair &&> +move &> +__tuple_leaf, void> +__tuple_impl<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> > +tuple , false> +forward > +forward_as_tuple > +__tuple_leaf +__tuple_impl<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &> +forward +forward_as_tuple +allocator, void (std::__1::shared_ptr, std::__1::shared_ptr)> > +forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > > +forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> *> +move, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > &> +allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> +get<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &&> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &&> +__libcpp_compressed_pair_imp<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &&, 0> +move &> +__compressed_pair<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &&> +__tuple_leaf<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37), void> +__tuple_impl<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &&, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> +tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37), false> +forward_as_tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> +move<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &> +__not_null<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> +function<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> +operator=<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> move, std::__1::shared_ptr)> *&> swap, std::__1::shared_ptr)> *> forward > -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &> -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &, std::__1::shared_ptr, std::__1::shared_ptr > -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &, std::__1::shared_ptr, std::__1::shared_ptr > -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &> -forward &> -forward_as_tuple &> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &> +__invoke<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &, std::__1::shared_ptr, std::__1::shared_ptr > +__call<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &, std::__1::shared_ptr, std::__1::shared_ptr > +get<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> &> +__libcpp_compressed_pair_imp &, 0, 0> +move &> &> +__compressed_pair &> +__tuple_leaf &, void> +__tuple_impl<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> &, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> &> +forward &> +forward_as_tuple &> _ZZ41+[RLMRealm realmWithConfiguration:error:]EN3$_0C2ERKS_ _ZZ41+[RLMRealm realmWithConfiguration:error:]EN3$_0C1ERKS_ -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &&> -forward &&> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &> -forward -forward_as_tuple -allocator, void (std::__1::shared_ptr, std::__1::shared_ptr)> > -forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > > -forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> *> -move, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&, 0> -move &> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&> -forward_as_tuple<> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37), false> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> +get<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &> +get<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> &&> +forward &&> +__libcpp_compressed_pair_imp &&, 0, 0> +move &&> &> +move &> +__compressed_pair &&> +move &> +__tuple_leaf, void> +__tuple_impl<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> > +tuple , false> +forward > +forward_as_tuple > +__tuple_leaf +__tuple_impl<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &> +forward +forward_as_tuple +allocator, void (std::__1::shared_ptr, std::__1::shared_ptr)> > +forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > > +forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> *> +move, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > &> +allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> +get<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &&> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &&> +__libcpp_compressed_pair_imp<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &&, 0> +move &> +__compressed_pair<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &&> +__tuple_leaf<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37), void> +__tuple_impl<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &&, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> +tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37), false> +forward_as_tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> +move<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &> +__not_null<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> +function<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> _ZZ41+[RLMRealm realmWithConfiguration:error:]EN3$_0C2EOS_ _ZZ41+[RLMRealm realmWithConfiguration:error:]EN3$_0C1EOS_ -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -operator=<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -CheckReadWrite +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> +operator=<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> is_in_read_transaction ~PermissionDenied core/include/realm/util/file.hpp @@ -6932,20 +8380,19 @@ shouldForciblyDisableEncryption -[RLMRealm .cxx_construct] -[RLMRealm .cxx_destruct] -[RLMRealm dynamic] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm_Private.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm_Private.h +-[RLMRealm setNotificationHandlers:] +-[RLMRealm notificationHandlers] -[RLMRealm setSchema:] -[RLMRealm schema] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.h -[RLMRealm detachAllEnumerators] -[RLMRealm unregisterEnumerator:] -[RLMRealm registerEnumerator:] --[RLMRealm writeCopyToPath:encryptionKey:error:] --[RLMRealm writeCopyToPath:error:] --[RLMRealm writeCopyToPath:key:error:] +-[RLMRealm writeCopyToURL:encryptionKey:error:] -[RLMRealm createObject:withValue:] +[RLMRealm migrateRealm:] -+[RLMRealm schemaVersionAtPath:encryptionKey:error:] -+[RLMRealm schemaVersionAtPath:error:] ++[RLMRealm schemaVersionAtURL:encryptionKey:error:] -[RLMRealm objectWithClassName:forPrimaryKey:] -[RLMRealm objects:withPredicate:] -[RLMRealm objects:where:args:] @@ -6970,7 +8417,6 @@ shouldForciblyDisableEncryption -[RLMRealm beginWriteTransaction] -[RLMRealm configuration] -[RLMRealm sendNotifications:] --[RLMRealm removeNotification:] -[RLMRealm addNotificationBlock:] -[RLMRealm verifyNotificationsAreSupported] +[RLMRealm resetRealmState] @@ -6978,15 +8424,12 @@ shouldForciblyDisableEncryption +[RLMRealm openSharedRealm:error:] RLMRealmTranslateException +[RLMRealm realmWithSharedRealm:schema:] -+[RLMRealm realmWithPath:key:readOnly:inMemory:dynamic:schema:error:] -+[RLMRealm realmWithPath:] ++[RLMRealm realmWithURL:] +[RLMRealm defaultRealm] +[RLMRealm writeableTemporaryPathForFile:] -[RLMRealm setAutorefresh:] -[RLMRealm autorefresh] --[RLMRealm isReadOnly] -[RLMRealm group] --[RLMRealm path] -[RLMRealm inWriteTransaction] -[RLMRealm verifyThread] -[RLMRealm isEmpty] @@ -7001,16 +8444,7 @@ RLMRealmValidatedEncryptionKey -[RLMRealmNotificationToken dealloc] -[RLMRealmNotificationToken stop] RLMDisableSyncToDisk -_ZNK12_GLOBAL__N_130PredicateExpressionTransformer5visitEP11NSPredicate -_ZNK12_GLOBAL__N_130PredicateExpressionTransformer5visitEP12NSExpression -OBJC_CLASSLIST_REFERENCES_$_.3 -OBJC_CLASSLIST_REFERENCES_$_.18 -OBJC_SELECTOR_REFERENCES_.43 -OBJC_SELECTOR_REFERENCES_.55 -visit -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMPredicateUtil.mm -PredicateExpressionTransformer -transformPredicate +_ZL35defaultDirectoryForBundleIdentifierP8NSString -[RLMRealmConfiguration config] +[RLMRealmConfiguration defaultConfiguration] +[RLMRealmConfiguration setDefaultConfiguration:] @@ -7019,8 +8453,8 @@ transformPredicate -[RLMRealmConfiguration init] -[RLMRealmConfiguration copyWithZone:] -[RLMRealmConfiguration description] --[RLMRealmConfiguration path] --[RLMRealmConfiguration setPath:] +-[RLMRealmConfiguration fileURL] +-[RLMRealmConfiguration setFileURL:] _ZL22RLMNSStringToStdStringRNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEP8NSString -[RLMRealmConfiguration inMemoryIdentifier] -[RLMRealmConfiguration setInMemoryIdentifier:] @@ -7030,6 +8464,8 @@ _ZL22RLMNSStringToStdStringRNSt3__112basic_stringIcNS_11char_traitsIcEENS_9alloc -[RLMRealmConfiguration setReadOnly:] -[RLMRealmConfiguration schemaVersion] -[RLMRealmConfiguration setSchemaVersion:] +-[RLMRealmConfiguration deleteRealmIfMigrationNeeded] +-[RLMRealmConfiguration setDeleteRealmIfMigrationNeeded:] -[RLMRealmConfiguration objectClasses] -[RLMRealmConfiguration setObjectClasses:] -[RLMRealmConfiguration setDynamic:] @@ -7044,56 +8480,46 @@ _ZL22RLMNSStringToStdStringRNSt3__112basic_stringIcNS_11char_traitsIcEENS_9alloc -[RLMRealmConfiguration customSchema] -[RLMRealmConfiguration .cxx_destruct] -[RLMRealmConfiguration .cxx_construct] -_unnamed_cfstring_.14 -_ZL33c_RLMRealmConfigurationProperties _unnamed_cfstring_.16 +_ZL33c_RLMRealmConfigurationProperties +_ZZ19RLMRealmPathForFileE9directory +_ZGVZ19RLMRealmPathForFileE9directory OBJC_IVAR_$_RLMRealmConfiguration._config -_ZZ29-[RLMRealmConfiguration init]E16defaultRealmPath -_ZGVZ29-[RLMRealmConfiguration init]E16defaultRealmPath +_ZZ29-[RLMRealmConfiguration init]E15defaultRealmURL +_ZGVZ29-[RLMRealmConfiguration init]E15defaultRealmURL +OBJC_CLASSLIST_REFERENCES_$_.29 OBJC_IVAR_$_RLMRealmConfiguration._dynamic OBJC_IVAR_$_RLMRealmConfiguration._migrationBlock OBJC_IVAR_$_RLMRealmConfiguration._customSchema -_unnamed_cfstring_.39 -_unnamed_cfstring_.49 -_unnamed_cfstring_.57 -OBJC_CLASSLIST_REFERENCES_$_.60 -OBJC_CLASSLIST_REFERENCES_$_.71 -_unnamed_cfstring_.77 -_unnamed_cfstring_.81 -OBJC_CLASSLIST_REFERENCES_$_.84 -OBJC_METH_VAR_TYPE_.93 -OBJC_METH_VAR_TYPE_.95 +OBJC_CLASSLIST_REFERENCES_$_.63 +_unnamed_cfstring_.71 +_unnamed_cfstring_.75 +OBJC_CLASSLIST_REFERENCES_$_.76 +OBJC_CLASSLIST_REFERENCES_$_.89 +OBJC_METH_VAR_TYPE_.98 l_OBJC_$_CLASS_METHODS_RLMRealmConfiguration -OBJC_METH_VAR_NAME_.96 -OBJC_METH_VAR_TYPE_.97 -OBJC_CLASS_NAME_.98 +OBJC_CLASS_NAME_.103 l_OBJC_CLASS_PROTOCOLS_$_RLMRealmConfiguration l_OBJC_METACLASS_RO_$_RLMRealmConfiguration -OBJC_METH_VAR_TYPE_.108 -OBJC_METH_VAR_TYPE_.110 -OBJC_METH_VAR_TYPE_.112 +OBJC_METH_VAR_TYPE_.106 +OBJC_METH_VAR_NAME_.109 OBJC_METH_VAR_TYPE_.113 -OBJC_METH_VAR_NAME_.115 -OBJC_METH_VAR_NAME_.128 l_OBJC_$_INSTANCE_METHODS_RLMRealmConfiguration l_OBJC_$_INSTANCE_VARIABLES_RLMRealmConfiguration -OBJC_PROP_NAME_ATTR_.137 -OBJC_PROP_NAME_ATTR_.138 -OBJC_PROP_NAME_ATTR_.139 -OBJC_PROP_NAME_ATTR_.140 -OBJC_PROP_NAME_ATTR_.141 -OBJC_PROP_NAME_ATTR_.142 -OBJC_PROP_NAME_ATTR_.143 OBJC_PROP_NAME_ATTR_.144 OBJC_PROP_NAME_ATTR_.145 -OBJC_PROP_NAME_ATTR_.146 OBJC_PROP_NAME_ATTR_.147 +OBJC_PROP_NAME_ATTR_.148 OBJC_PROP_NAME_ATTR_.149 OBJC_PROP_NAME_ATTR_.150 OBJC_PROP_NAME_ATTR_.151 OBJC_PROP_NAME_ATTR_.152 OBJC_PROP_NAME_ATTR_.153 OBJC_PROP_NAME_ATTR_.154 +OBJC_PROP_NAME_ATTR_.155 +OBJC_PROP_NAME_ATTR_.156 +OBJC_PROP_NAME_ATTR_.157 +OBJC_PROP_NAME_ATTR_.163 l_OBJC_$_PROP_LIST_RLMRealmConfiguration l_OBJC_CLASS_RO_$_RLMRealmConfiguration __destroy @@ -7110,14 +8536,15 @@ distance assign __to_raw_pointer RLMNSStringToStdString -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealmConfiguration.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealmConfiguration.mm +defaultDirectoryForBundleIdentifier -[RLMRealmConfiguration .cxx_construct] -[RLMRealmConfiguration .cxx_destruct] -[RLMRealmConfiguration customSchema] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealmConfiguration_Private.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealmConfiguration_Private.h -[RLMRealmConfiguration dynamic] -[RLMRealmConfiguration setMigrationBlock:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealmConfiguration.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealmConfiguration.h -[RLMRealmConfiguration migrationBlock] -[RLMRealmConfiguration disableFormatUpgrade] -[RLMRealmConfiguration setDisableFormatUpgrade:] @@ -7127,6 +8554,8 @@ RLMNSStringToStdString -[RLMRealmConfiguration setDynamic:] -[RLMRealmConfiguration setObjectClasses:] -[RLMRealmConfiguration objectClasses] +-[RLMRealmConfiguration setDeleteRealmIfMigrationNeeded:] +-[RLMRealmConfiguration deleteRealmIfMigrationNeeded] -[RLMRealmConfiguration setSchemaVersion:] -[RLMRealmConfiguration schemaVersion] -[RLMRealmConfiguration setReadOnly:] @@ -7135,8 +8564,8 @@ RLMNSStringToStdString -[RLMRealmConfiguration encryptionKey] -[RLMRealmConfiguration setInMemoryIdentifier:] -[RLMRealmConfiguration inMemoryIdentifier] --[RLMRealmConfiguration setPath:] --[RLMRealmConfiguration path] +-[RLMRealmConfiguration setFileURL:] +-[RLMRealmConfiguration fileURL] -[RLMRealmConfiguration description] -[RLMRealmConfiguration copyWithZone:] -[RLMRealmConfiguration init] @@ -7167,11 +8596,11 @@ _ZTSN12_GLOBAL__N_121RLMNotificationHelperE _ZTSN5realm14BindingContextE _ZTIN5realm14BindingContextE _ZTIN12_GLOBAL__N_121RLMNotificationHelperE -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealmUtil.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealmUtil.mm forward move -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__tree -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/map +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__tree +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/map __destroy destroy __tree_right_rotate *> @@ -7182,7 +8611,6 @@ move construct __construct -forward &> construct, const std::__1::basic_string &> __construct, const std::__1::basic_string &> forward, NSMapTable *>, void *> > > > @@ -7213,6 +8641,7 @@ __tree_next *> __map_iterator __tree_iterator __begin_node +__invoke operator void (*)(NSException *) addressof *> > __end_node @@ -7229,19 +8658,11 @@ RLMClearRealmCache RLMGetThreadLocalCachedRealmForPath RLMGetAnyCachedRealmForPath RLMCacheRealm --[RLMCancellationToken initWithToken:] --[RLMCancellationToken stop] --[RLMCancellationToken .cxx_destruct] --[RLMCancellationToken .cxx_construct] --[RLMFastEnumerator initWithCollection:objectSchema:] --[RLMFastEnumerator dealloc] --[RLMFastEnumerator detach] --[RLMFastEnumerator countByEnumeratingWithState:count:] --[RLMFastEnumerator .cxx_destruct] --[RLMFastEnumerator .cxx_construct] -[RLMResults initPrivate] +[RLMResults resultsWithObjectSchema:results:] _ZN5realm7ResultsaSEOS0_ ++[RLMResults emptyDetachedResults] +-[RLMResults isInvalidated] -[RLMResults count] -[RLMResults objectClassName] -[RLMResults countByEnumeratingWithState:objects:count:] @@ -7281,217 +8702,105 @@ _ZL24assertKeyPathIsNotNestedP8NSString -[RLMResults indexInSource:] -[RLMResults tableView] -[RLMResults addNotificationBlock:] +-[RLMResults isAttached] -[RLMResults realm] -[RLMResults objectSchema] -[RLMResults setObjectSchema:] -[RLMResults .cxx_destruct] -[RLMResults .cxx_construct] _ZL10throwErrorP8NSString -___ZZ36-[RLMResults deleteObjectsFromRealm]ENK4$_13clEv_block_invoke -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEED1Ev -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEED0Ev -_ZNKSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE7__cloneEv -_ZNKSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE7__cloneEPNS0_6__baseIS6_EE -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE7destroyEv -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE18destroy_deallocateEv -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEEclEOS5_ -_ZNKSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE6targetERKSt9type_info -_ZNKSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE11target_typeEv +___ZZ36-[RLMResults deleteObjectsFromRealm]ENK4$_14clEv_block_invoke l_OBJC_METACLASS_RO_$_RLMNotificationToken l_OBJC_CLASS_RO_$_RLMNotificationToken -OBJC_IVAR_$_RLMCancellationToken._token -OBJC_CLASS_NAME_.1 -l_OBJC_METACLASS_RO_$_RLMCancellationToken -l_OBJC_$_INSTANCE_METHODS_RLMCancellationToken -l_OBJC_$_INSTANCE_VARIABLES_RLMCancellationToken -l_OBJC_CLASS_RO_$_RLMCancellationToken -OBJC_CLASSLIST_SUP_REFS_$_.10 -OBJC_IVAR_$_RLMFastEnumerator._realm -OBJC_IVAR_$_RLMFastEnumerator._objectSchema -OBJC_IVAR_$_RLMFastEnumerator._tableView -OBJC_IVAR_$_RLMFastEnumerator._collection -OBJC_IVAR_$_RLMFastEnumerator._strongBuffer -OBJC_CLASS_NAME_.35 -l_OBJC_METACLASS_RO_$_RLMFastEnumerator -l_OBJC_$_INSTANCE_METHODS_RLMFastEnumerator -OBJC_METH_VAR_TYPE_.43 -OBJC_METH_VAR_TYPE_.45 -OBJC_METH_VAR_TYPE_.47 -OBJC_METH_VAR_TYPE_.49 -OBJC_METH_VAR_TYPE_.51 -l_OBJC_$_INSTANCE_VARIABLES_RLMFastEnumerator -l_OBJC_CLASS_RO_$_RLMFastEnumerator -OBJC_CLASSLIST_SUP_REFS_$_.52 OBJC_IVAR_$_RLMResults._results OBJC_IVAR_$_RLMResults._realm OBJC_IVAR_$_RLMResults._objectSchema -OBJC_CLASSLIST_REFERENCES_$_.61 -OBJC_CLASSLIST_REFERENCES_$_.76 -OBJC_CLASSLIST_REFERENCES_$_.87 -.str.94 -_unnamed_cfstring_.95 -.str.96 -_unnamed_cfstring_.97 -OBJC_CLASSLIST_REFERENCES_$_.114 -OBJC_SELECTOR_REFERENCES_.116 -OBJC_SELECTOR_REFERENCES_.118 -_unnamed_cfstring_.122 -OBJC_CLASSLIST_REFERENCES_$_.131 -OBJC_CLASSLIST_REFERENCES_$_.134 -OBJC_CLASSLIST_REFERENCES_$_.151 -OBJC_SELECTOR_REFERENCES_.157 -_unnamed_cfstring_.161 -OBJC_SELECTOR_REFERENCES_.179 -OBJC_CLASSLIST_REFERENCES_$_.180 -OBJC_SELECTOR_REFERENCES_.181 -OBJC_CLASS_NAME_.182 +OBJC_CLASSLIST_REFERENCES_$_.15 +_unnamed_cfstring_.32 +_unnamed_cfstring_.63 +OBJC_CLASSLIST_REFERENCES_$_.83 +OBJC_CLASSLIST_REFERENCES_$_.86 +OBJC_METH_VAR_TYPE_.110 l_OBJC_$_CLASS_METHODS_RLMResults -OBJC_METH_VAR_TYPE_.187 -OBJC_METH_VAR_NAME_.188 -OBJC_METH_VAR_TYPE_.189 -OBJC_METH_VAR_TYPE_.190 -OBJC_CLASS_NAME_.191 -OBJC_PROP_NAME_ATTR_.193 -OBJC_PROP_NAME_ATTR_.194 -OBJC_PROP_NAME_ATTR_.195 -OBJC_PROP_NAME_ATTR_.196 -OBJC_METH_VAR_TYPE_.202 -OBJC_METH_VAR_TYPE_.210 -OBJC_METH_VAR_TYPE_.211 -OBJC_METH_VAR_TYPE_.213 -OBJC_METH_VAR_TYPE_.217 -OBJC_METH_VAR_TYPE_.223 -OBJC_METH_VAR_TYPE_.225 -OBJC_CLASS_NAME_.229 -OBJC_CLASS_NAME_.231 +OBJC_METH_VAR_TYPE_.112 +OBJC_CLASS_NAME_.119 +OBJC_PROP_NAME_ATTR_.122 +OBJC_PROP_NAME_ATTR_.123 +OBJC_PROP_NAME_ATTR_.124 +OBJC_METH_VAR_NAME_.146 +OBJC_METH_VAR_NAME_.155 +OBJC_CLASS_NAME_.160 l_OBJC_CLASS_PROTOCOLS_$_RLMResults l_OBJC_METACLASS_RO_$_RLMResults -OBJC_CLASS_NAME_.234 -OBJC_METH_VAR_TYPE_.235 -OBJC_METH_VAR_NAME_.236 -OBJC_METH_VAR_NAME_.238 +OBJC_METH_VAR_TYPE_.164 l_OBJC_$_INSTANCE_METHODS_RLMResults -OBJC_METH_VAR_TYPE_.250 +OBJC_METH_VAR_TYPE_.187 l_OBJC_$_INSTANCE_VARIABLES_RLMResults -OBJC_PROP_NAME_ATTR_.251 -OBJC_PROP_NAME_ATTR_.252 +OBJC_PROP_NAME_ATTR_.190 +OBJC_PROP_NAME_ATTR_.191 +OBJC_PROP_NAME_ATTR_.192 +OBJC_PROP_NAME_ATTR_.193 +OBJC_PROP_NAME_ATTR_.194 +OBJC_PROP_NAME_ATTR_.195 l_OBJC_$_PROP_LIST_RLMResults l_OBJC_CLASS_RO_$_RLMResults -.str.253 -.str.257 -.str.259 -.str.261 -.str.267 -.str.269 -.str.271 -.str.273 -.str.275 -.str.280 -.str.282 -_ZTSN5realm24IncorrectThreadExceptionE -_ZTIN5realm24IncorrectThreadExceptionE -_unnamed_cfstring_.285 -_unnamed_cfstring_.293 -.str.296 -_unnamed_cfstring_.297 -_unnamed_cfstring_.299 -.str.300 -_unnamed_cfstring_.301 -OBJC_METH_VAR_NAME_.322 -OBJC_SELECTOR_REFERENCES_.323 -_unnamed_cfstring_.325 -OBJC_CLASSLIST_REFERENCES_$_.326 -OBJC_CLASSLIST_REFERENCES_$_.331 -OBJC_SELECTOR_REFERENCES_.332 -.str.334 -_ZTVNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEEE -_ZTSNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEEE -_ZTSNSt3__110__function6__baseIFvSt13exception_ptrEEE -_ZTINSt3__110__function6__baseIFvSt13exception_ptrEEE -_ZTINSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEEE -_ZTSZ35-[RLMResults addNotificationBlock:]E4$_16 -_ZTIZ35-[RLMResults addNotificationBlock:]E4$_16 -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &> -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &, std::exception_ptr> -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &, std::exception_ptr> -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &> -forward &> -forward_as_tuple &> -_ZZ35-[RLMResults addNotificationBlock:]EN4$_16C2ERKS_ -_ZZ35-[RLMResults addNotificationBlock:]EN4$_16C1ERKS_ -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &&> -forward &&> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &> -forward -forward_as_tuple -allocator, void (std::exception_ptr)> > -forward, void (std::exception_ptr)> > > > -forward, void (std::exception_ptr)> *> -move, void (std::exception_ptr)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -_ZZ35-[RLMResults addNotificationBlock:]EN4$_16C2EOS_ -_ZZ35-[RLMResults addNotificationBlock:]EN4$_16C1EOS_ -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&, 0> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33), false> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:528:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:524:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:480:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:456:34)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:440:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:424:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:396:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:381:28)> +OBJC_CLASS_NAME_.196 +l_OBJC_METACLASS_RO_$_RLMLinkingObjects +l_OBJC_CLASS_RO_$_RLMLinkingObjects +.str.219 +_unnamed_cfstring_.220 +_unnamed_cfstring_.222 +.str.223 +_unnamed_cfstring_.224 +.str.225 +_unnamed_cfstring_.226 +_unnamed_cfstring_.228 +_unnamed_cfstring_.232 +_unnamed_cfstring_.234 +OBJC_SELECTOR_REFERENCES_.236 +.str.244 +.str.246 +.str.248 +.str.252 +.str.254 +.str.256 +.str.258 +.str.262 +OBJC_SELECTOR_REFERENCES_.266 +OBJC_CLASSLIST_REFERENCES_$_.269 +OBJC_METH_VAR_NAME_.270 +OBJC_SELECTOR_REFERENCES_.271 +OBJC_SELECTOR_REFERENCES_.274 +OBJC_SELECTOR_REFERENCES_.278 +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:402:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:398:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:382:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:358:34)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:342:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:326:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:298:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:283:28)> assertKeyPathIsNotNested RLMResultsValidateInWriteTransaction -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:354:21)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:348:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:317:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:308:32)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:303:32)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:297:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:287:35)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:256:21)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:250:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:219:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:210:32)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:205:32)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:199:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:175:35)> get_mode -throwError -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:246:28)> -get_source_ndx -is_row_attached -move +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:134:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:130:28)> -[RLMResults .cxx_construct] -[RLMResults .cxx_destruct] -[RLMResults setObjectSchema:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults_Private.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults_Private.h -[RLMResults objectSchema] -[RLMResults realm] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.h +-[RLMResults isAttached] -[RLMResults addNotificationBlock:] -[RLMResults tableView] -[RLMResults indexInSource:] @@ -7530,18 +8839,10 @@ move -[RLMResults countByEnumeratingWithState:objects:count:] -[RLMResults objectClassName] -[RLMResults count] +-[RLMResults isInvalidated] ++[RLMResults emptyDetachedResults] +[RLMResults resultsWithObjectSchema:results:] -[RLMResults initPrivate] --[RLMFastEnumerator .cxx_construct] --[RLMFastEnumerator .cxx_destruct] --[RLMFastEnumerator countByEnumeratingWithState:count:] --[RLMFastEnumerator detach] --[RLMFastEnumerator dealloc] --[RLMFastEnumerator initWithCollection:objectSchema:] --[RLMCancellationToken .cxx_construct] --[RLMCancellationToken .cxx_destruct] --[RLMCancellationToken stop] --[RLMCancellationToken initWithToken:] -[RLMSchema init] -[RLMSchema objectSchema] -[RLMSchema setObjectSchema:] @@ -7586,29 +8887,23 @@ OBJC_CLASSLIST_REFERENCES_$_.27 _ZL19s_sharedSchemaState __block_descriptor_tmp.59 __block_literal_global.60 +__block_descriptor_tmp.82 __block_descriptor_tmp.87 -OBJC_CLASSLIST_REFERENCES_$_.91 -OBJC_CLASS_NAME_.118 -OBJC_METH_VAR_TYPE_.123 -OBJC_METH_VAR_NAME_.124 -OBJC_METH_VAR_NAME_.126 +OBJC_CLASSLIST_REFERENCES_$_.96 +OBJC_SELECTOR_REFERENCES_.110 +__block_descriptor_tmp.117 +OBJC_METH_VAR_TYPE_.121 l_OBJC_$_CLASS_METHODS_RLMSchema -OBJC_METH_VAR_TYPE_.129 +OBJC_CLASS_NAME_.130 l_OBJC_CLASS_PROTOCOLS_$_RLMSchema l_OBJC_METACLASS_RO_$_RLMSchema OBJC_CLASS_NAME_.131 -OBJC_METH_VAR_TYPE_.135 -OBJC_METH_VAR_NAME_.136 -OBJC_METH_VAR_TYPE_.137 l_OBJC_$_INSTANCE_METHODS_RLMSchema l_OBJC_$_INSTANCE_VARIABLES_RLMSchema l_OBJC_$_PROP_LIST_RLMSchema l_OBJC_CLASS_RO_$_RLMSchema -OBJC_SELECTOR_REFERENCES_.153 -_unnamed_cfstring_.155 -_unnamed_cfstring_.159 -OBJC_SELECTOR_REFERENCES_.167 -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMSchema.mm +OBJC_SELECTOR_REFERENCES_.171 +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMSchema.mm move &> forward > > make_unique > > @@ -7651,41 +8946,50 @@ OBJC_METH_VAR_TYPE_.5 l_OBJC_METACLASS_RO_$_RLMSwiftSupport l_OBJC_CLASS_RO_$_RLMSwiftSupport +[RLMSwiftSupport demangleClassName:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMSwiftSupport.m +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMSwiftSupport.m +[RLMSwiftSupport isSwiftClassName:] RLMCheckForUpdates -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMUpdateChecker.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMUpdateChecker.mm _ZL12RLMExceptionP8NSStringP12NSDictionary OBJC_CLASSLIST_REFERENCES_$_.8 OBJC_CLASSLIST_REFERENCES_$_.9 OBJC_CLASSLIST_REFERENCES_$_.53 -_unnamed_cfstring_.87 -OBJC_CLASSLIST_REFERENCES_$_.90 -OBJC_SELECTOR_REFERENCES_.125 -OBJC_SELECTOR_REFERENCES_.137 -.str.139 -OBJC_SELECTOR_REFERENCES_.185 -OBJC_SELECTOR_REFERENCES_.193 -OBJC_CLASSLIST_REFERENCES_$_.200 -OBJC_CLASSLIST_REFERENCES_$_.201 -OBJC_CLASSLIST_REFERENCES_$_.202 +OBJC_CLASSLIST_REFERENCES_$_.60 +_ZL26treatFakeObjectAsRLMObject +OBJC_CLASSLIST_REFERENCES_$_.87 +_ZZ21RLMIsObjectOrSubclassP10objc_classE15FakeObjectClass +_ZGVZ21RLMIsObjectOrSubclassP10objc_classE15FakeObjectClass +_ZZ19RLMIsObjectSubclassP10objc_classE15FakeObjectClass +_ZGVZ19RLMIsObjectSubclassP10objc_classE15FakeObjectClass +OBJC_CLASSLIST_REFERENCES_$_.92 +OBJC_SELECTOR_REFERENCES_.114 +OBJC_SELECTOR_REFERENCES_.126 +_unnamed_cfstring_.128 +_unnamed_cfstring_.130 +OBJC_CLASSLIST_REFERENCES_$_.135 +OBJC_SELECTOR_REFERENCES_.147 +OBJC_SELECTOR_REFERENCES_.155 +OBJC_CLASSLIST_REFERENCES_$_.157 +OBJC_CLASSLIST_REFERENCES_$_.158 RLMDynamicCast RLMDynamicCast RLMIsSubclass -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMUtil.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMUtil.mm +category +underlying RLMException -object_has_valid_type nsnumber_is_like_double nsnumber_is_like_float nsnumber_is_like_integer nsnumber_is_like_bool RLMMixedToObjc +RLMIsRunningInPlayground RLMIsDebuggerAttached RLMIsObjectSubclass +RLMIsObjectOrSubclass +RLMSetTreatFakeObjectAsRLMObject RLMSetErrorOrThrow RLMMakeError -RLMCollectionSetValueForKey -RLMCollectionValueForKey RLMDefaultValuesForObjectSchema RLMIsObjectValidForProperty _ZL15compare_by_nameRKN5realm12ObjectSchemaES2_ @@ -7704,11 +9008,34 @@ forward construct __construct emplace_back +__emplace_back_slow_path +forward +construct +__construct +emplace_back +forward +operator= __emplace_back_slow_path forward construct __construct emplace_back +__wrap_iter +__construct_forward +__construct_at_end > +__unwrap_iter > +__copy, realm::Property *> +copy, realm::Property *> +__move_backward +move_backward +__construct_range_forward, realm::Property *> +__advance > +advance > +operator- +__distance > +distance > +operator- +insert > __advance > advance > operator- @@ -7734,19 +9061,22 @@ swap __sort sort sort +__construct_range_forward +__construct_at_end is_indexable compare_by_name -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/schema.cpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/schema.cpp validate Realm/ObjectStore/schema.cpp _ZN5realm5Realm6ConfigaSEOS1_ -_ZN5realm25UnitializedRealmExceptionD1Ev +_ZL24translate_file_exceptionN5realm10StringDataEb +_ZN5realm27UninitializedRealmExceptionD1Ev _ZZN5realm5Realm13update_schemaENSt3__110unique_ptrINS_6SchemaENS1_14default_deleteIS3_EEEEyEN21WriteTransactionGuardD1Ev _ZN5realm24IncorrectThreadExceptionD1Ev _ZL16check_read_writePN5realm5RealmE -_ZN5realm25UnitializedRealmExceptionD0Ev +_ZN5realm27UninitializedRealmExceptionD0Ev _ZN5realm24IncorrectThreadExceptionD0Ev -_ZN5realm11SharedGroupC2ERNS_11ReplicationENS0_15DurabilityLevelEPKcb +_ZN5realm11SharedGroupC2ERNS_11ReplicationENS0_15DurabilityLevelEPKcbNSt3__18functionIFviiEEE _ZNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EED1Ev _ZNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EED0Ev _ZNKSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EE7__cloneEv @@ -7758,12 +9088,16 @@ _ZNKSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_ _ZNKSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EE11target_typeEv _ZNSt3__120__shared_ptr_pointerIPN5realm5RealmENS_14default_deleteIS2_EENS_9allocatorIS2_EEED1Ev _ZNSt3__120__shared_ptr_pointerIPN5realm5RealmENS_14default_deleteIS2_EENS_9allocatorIS2_EEED0Ev +_ZTSN5realm27UninitializedRealmExceptionE +_ZTIN5realm27UninitializedRealmExceptionE +_ZTSN5realm4util4File6ExistsE +_ZTIN5realm4util4File6ExistsE +_ZTSN5realm4util4File8NotFoundE +_ZTIN5realm4util4File8NotFoundE _ZTSN5realm20IncompatibleLockFileE _ZTIN5realm20IncompatibleLockFileE _ZTSN5realm25FileFormatUpgradeRequiredE _ZTIN5realm25FileFormatUpgradeRequiredE -_ZTSN5realm25UnitializedRealmExceptionE -_ZTIN5realm25UnitializedRealmExceptionE _ZTVNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EEE _ZTSNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EEE _ZTSNSt3__110__function6__baseIFvPN5realm5GroupERNS2_6SchemaEEEE @@ -7775,7 +9109,8 @@ _ZTSNSt3__114default_deleteIN5realm5RealmEEE _ZTSZN5realm5Realm13update_schemaENSt3__110unique_ptrINS_6SchemaENS1_14default_deleteIS3_EEEEyE3$_0 _ZTIZN5realm5Realm13update_schemaENSt3__110unique_ptrINS_6SchemaENS1_14default_deleteIS3_EEEEyE3$_0 forward -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &> +shared_ptr addressof, std::__1::allocator > > addressof > __get_deleter @@ -7787,53 +9122,52 @@ forward > move &> __shared_ptr_pointer forward -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &, realm::Group *, realm::Schema &> -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &, realm::Group *, realm::Schema &> -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &> -forward &> -forward_as_tuple &> -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &&> -forward &&> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &> -forward -forward_as_tuple -allocator, void (realm::Group *, realm::Schema &)> > -forward, void (realm::Group *, realm::Schema &)> > > > -forward, void (realm::Group *, realm::Schema &)> *> -move, void (realm::Group *, realm::Schema &)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&, 0> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31), false> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -Realm/ObjectStore/schema.hpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp +__invoke<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &, realm::Group *, realm::Schema &> +__call<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &, realm::Group *, realm::Schema &> +get<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> &> +__libcpp_compressed_pair_imp &, 0, 0> +move &> &> +__compressed_pair &> +__tuple_leaf &, void> +__tuple_impl<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> &, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> &> +forward &> +forward_as_tuple &> +get<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &> +get<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> &&> +forward &&> +__libcpp_compressed_pair_imp &&, 0, 0> +move &&> &> +move &> +__compressed_pair &&> +move &> +__tuple_leaf, void> +__tuple_impl<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> > +tuple , false> +forward > +forward_as_tuple > +__tuple_leaf +__tuple_impl<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &> +forward +forward_as_tuple +allocator, void (realm::Group *, realm::Schema &)> > +forward, void (realm::Group *, realm::Schema &)> > > > +forward, void (realm::Group *, realm::Schema &)> *> +move, void (realm::Group *, realm::Schema &)> > > &> +allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> +get<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &&> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &&> +__libcpp_compressed_pair_imp<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &&, 0> +move &> +__compressed_pair<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &&> +__tuple_leaf<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31), void> +__tuple_impl<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &&, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> +tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31), false> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> +forward_as_tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> +move<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &> +__not_null<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> +function<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> forward make_unique forward > @@ -7844,13 +9178,19 @@ unmap ~MapBase ~Map ~Mutex +~InterprocessMutex +core/include/realm/util/interprocess_mutex.hpp set_replication +core/include/realm/alloc_slab.hpp open +move &> +InterprocessMutex init_as_regular Mutex MapBase Map File +ReadLockInfo Group SharedGroup forward @@ -7878,20 +9218,25 @@ make_unique &, const char *, re make_unique __construct_range_forward __construct_at_end +forward Realm/ObjectStore/binding_context.hpp __to_raw_pointer __destroy destroy check_read_write -get_transact_stage ~IncorrectThreadException IncorrectThreadException ~WriteTransactionGuard -~UnitializedRealmException -UnitializedRealmException +~UninitializedRealmException +UninitializedRealmException move > &> move &> +__search +__str_find, 18446744073709551615> +translate_file_exception refresh +notify +write_copy compact invalidate cancel_transaction @@ -7908,24 +9253,35 @@ Realm ~Config Config Realm/ObjectStore/shared_realm.cpp +_ZN5realm11SharedGroup15do_advance_readINS_5_impl23NullInstructionObserverEEEbPT_NS0_9VersionIDERNS2_7HistoryE +_ZN5realm5_impl20ChangesetInputStreamD1Ev +_ZN5realm5_impl20ChangesetInputStream10next_blockERPKcS4_ +_ZN5realm5_impl20ChangesetInputStreamD0Ev +_ZN5realm5_impl17TransactLogParser10read_mixedEPNS_5MixedE +_ZN5realm4util6BufferImE7reserveEmm +_ZN5realm5_impl17TransactLogParser14BadTransactLogD1Ev +_ZN5realm5_impl17TransactLogParser14read_timestampEv +_ZN5realm4util6BufferImE6resizeEmmmm +_ZN5realm5_impl17TransactLogParser14BadTransactLogD0Ev +_ZNK5realm5_impl17TransactLogParser14BadTransactLog4whatEv _ZN5realm11SharedGroup15do_advance_readIN12_GLOBAL__N_120TransactLogValidatorEEEbPT_NS0_9VersionIDERNS_5_impl7HistoryE -_ZN12_GLOBAL__N_120TransactLogValidator12erase_columnEm -_ZN12_GLOBAL__N_120TransactLogValidator17erase_link_columnEmmm -_ZN12_GLOBAL__N_120TransactLogValidator13rename_columnEmN5realm10StringDataE -_ZN12_GLOBAL__N_120TransactLogValidator11move_columnEmm -_ZN12_GLOBAL__N_120TransactLogValidator24insert_group_level_tableEmmN5realm10StringDataE -_ZN12_GLOBAL__N_120TransactLogValidator23erase_group_level_tableEmm -_ZN12_GLOBAL__N_120TransactLogValidator24rename_group_level_tableEmN5realm10StringDataE -_ZN12_GLOBAL__N_120TransactLogValidator22move_group_level_tableEmm -_ZN12_GLOBAL__N_120TransactLogValidator29schema_error_unless_new_tableEv -_ZN12_GLOBAL__N_120TransactLogValidator12schema_errorEv +_ZN12_GLOBAL__N_126TransactLogValidationMixin12erase_columnEm +_ZN12_GLOBAL__N_126TransactLogValidationMixin17erase_link_columnEmmm +_ZN12_GLOBAL__N_126TransactLogValidationMixin13rename_columnEmN5realm10StringDataE +_ZN12_GLOBAL__N_126TransactLogValidationMixin11move_columnEmm +_ZN12_GLOBAL__N_126TransactLogValidationMixin24insert_group_level_tableEmmN5realm10StringDataE +_ZN12_GLOBAL__N_126TransactLogValidationMixin23erase_group_level_tableEmm +_ZN12_GLOBAL__N_126TransactLogValidationMixin24rename_group_level_tableEmN5realm10StringDataE +_ZN12_GLOBAL__N_126TransactLogValidationMixin22move_group_level_tableEmm +_ZN12_GLOBAL__N_126TransactLogValidationMixin29schema_error_unless_new_tableEv +_ZN12_GLOBAL__N_126TransactLogValidationMixin12schema_errorEv _ZN5realm11SharedGroup15do_advance_readIN12_GLOBAL__N_119TransactLogObserverEEEbPT_NS0_9VersionIDERNS_5_impl7HistoryE _ZN5realm5_impl17TransactLogParser5parseIN12_GLOBAL__N_119TransactLogObserverEEEvRNS0_17NoCopyInputStreamERT_ -_ZN12_GLOBAL__N_119TransactLogObserver10mark_dirtyEmm +_ZN12_GLOBAL__N_114MarkDirtyMixinINS_19TransactLogObserverEE10mark_dirtyEmm _ZN12_GLOBAL__N_119TransactLogObserver10get_changeERN5realm14BindingContext13ObserverStateEm _ZN12_GLOBAL__N_119TransactLogObserver10invalidateEPN5realm14BindingContext13ObserverStateE _ZN12_GLOBAL__N_119TransactLogObserver23append_link_list_changeEN5realm14BindingContext10ColumnInfo4KindEm -_ZZN5realm5_impl11transaction5beginERNS_11SharedGroupEPNS_14BindingContextEbENK3$_1clIJRN12_GLOBAL__N_120TransactLogValidatorEEEEDaDpOT_ +_ZZN5realm5_impl11transaction5beginERNS_11SharedGroupEPNS_14BindingContextEbENK3$_1clIJN12_GLOBAL__N_120TransactLogValidatorEEEEDaDpOT_ _ZN5realm11SharedGroup16promote_to_writeINS_5_impl23NullInstructionObserverEEEvPT_ _ZN5realm5_impl25ReversedNoCopyInputStreamD1Ev _ZN5realm5_impl17SimpleInputStreamD1Ev @@ -7948,6 +9304,7 @@ _ZN5realm5_impl16TransactReverser16select_link_listEmmm _ZN5realm5_impl16TransactReverser17select_descriptorEmPKm _ZN5realm5_impl16TransactReverser24insert_group_level_tableEmmNS_10StringDataE _ZN5realm5_impl16TransactReverser23erase_group_level_tableEmm +_ZN5realm5_impl16TransactReverser22move_group_level_tableEmm _ZN5realm5_impl16TransactReverser18append_instructionEv _ZNK5realm5_impl16TransactReverser17transact_log_sizeEv _ZN5realm5_impl16TransactReverser10sync_tableEv @@ -7956,6 +9313,14 @@ _ZN5realm5_impl16TransactReverser18append_instructionENS1_5InstrE _ZN5realm5_impl25ReversedNoCopyInputStream10next_blockERPKcS4_ _ZN5realm5_impl25ReversedNoCopyInputStreamD0Ev _ZN5realm11SharedGroup29rollback_and_continue_as_readINS_5_impl23NullInstructionObserverEEEvPT_ +_ZN12_GLOBAL__N_116LinkViewObserver10mark_dirtyEmm +_ZN12_GLOBAL__N_116LinkViewObserver10get_changeEv +_ZTSN5realm5_impl20ChangesetInputStreamE +_ZTSN5realm5_impl17NoCopyInputStreamE +_ZTIN5realm5_impl17NoCopyInputStreamE +_ZTIN5realm5_impl20ChangesetInputStreamE +_ZTSN5realm5_impl17TransactLogParser14BadTransactLogE +_ZTIN5realm5_impl17TransactLogParser14BadTransactLogE _ZTSN5realm5_impl17SimpleInputStreamE _ZTSN5realm5_impl11InputStreamE _ZTIN5realm5_impl11InputStreamE @@ -7970,20 +9335,75 @@ _ZTSN5realm5_impl24NoCopyInputStreamAdaptorE _ZTIN5realm5_impl24NoCopyInputStreamAdaptorE _ZTSN5realm5_impl25ReversedNoCopyInputStreamE _ZTIN5realm5_impl25ReversedNoCopyInputStreamE +operator== +operator!= +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/transact_log_handler.cpp +addressof +operator!=, std::__1::__wrap_iter > +select_link_list +link_list_clear +link_list_nullify +link_list_erase +link_list_swap +link_list_move +link_list_insert +link_list_set +__wrap_iter +operator- +__unwrap_iter +__move +move +operator== +operator!= +operator- +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/transact_log_handler.cpp:562:29) &> +remove_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/transact_log_handler.cpp:562:29)> +clear_table +end > > +operator== +operator!= +begin > > +need_move_info +insert_empty_rows +erase_substring +insert_substring +set_mixed +set_olddatetime +set_string_unique +set_int_unique +construct +__construct +get_change +mark_dirty +parse_one<(anonymous namespace)::LinkViewObserver> +core/include/realm/impl/transact_log.hpp +parse<(anonymous namespace)::LinkViewObserver> +do_advance_read<(anonymous namespace)::LinkViewObserver> +advance_read<(anonymous namespace)::LinkViewObserver> +core/include/realm/lang_bind_helper.hpp rollback_and_continue_as_read<(anonymous namespace)::TransactLogObserver> operator()<(anonymous namespace)::TransactLogObserver &> -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/transact_log_handler.cpp rollback_and_continue_as_read rollback_and_continue_as_read operator()<> ~SimpleInputStream +core/include/realm/impl/input_stream.hpp ~TransactReverser abort_transact core/include/realm/replication.hpp advance_transact ~ReversedNoCopyInputStream +next_block ReversedNoCopyInputStream ~NoCopyInputStreamAdaptor +optimize_table +move_group_level_table +rename_group_level_table +insert_group_level_table +erase_group_level_table +select_descriptor +move_column +rename_column Tuple core/include/realm/util/tuple.hpp cons > > @@ -7997,10 +9417,16 @@ append > > >, char **> for_each > > > >, char **> append_string_instr > > > > -is_link_type +insert_link_column +erase_link_column tuple append_string_instr > > +insert_column +erase_column append_simple_instr > > > +set_link_type +remove_search_index +add_search_index append_simple_instr > __push_back_slow_path forward @@ -8011,6 +9437,8 @@ sync_select sync_linkview sync_descriptor sync_table +select_table +change_link_targets cons > > > tuple for_each > > >, char **> @@ -8021,6 +9449,18 @@ for_each, char **> for_each >, char **> for_each > >, char **> append_simple_instr > > > +append +append, int> +cons > > +append >, int> +cons > > > +append > >, int> +cons > > > > +append > > >, int> +for_each > >, char **> +for_each > > >, char **> +for_each > > > >, char **> +append_simple_instr > > > > > cons > append, unsigned long> cons > > @@ -8031,6 +9471,7 @@ for_each > >, char **> for_each > > >, char **> append_string_instr > > > +get_olddatetime append cons > append, double> @@ -8083,6 +9524,19 @@ append, realm::DataType> cons > > append >, realm::DataType> append_mixed_instr > > +cons +tuple +cons > +tuple +cons > > +tuple +cons > > > +tuple +for_each, char **> +for_each >, char **> +for_each > >, char **> +for_each > > >, char **> +append_simple_instr > > > > tuple cons > > > append > >, unsigned long> @@ -8130,6 +9584,7 @@ tuple cons > > tuple test +core/include/realm/util/safe_int_ops.hpp is_negative encode_int for_each, char **> @@ -8145,6 +9600,7 @@ inspect_all, std: inspect_value, std::__1::allocator >, char *> inspect_all, std::__1::allocator >, char *, const char *> terminate +core/include/realm/util/buffer.hpp transact_log_data write_position transact_log_size @@ -8201,8 +9657,8 @@ InputStream SimpleInputStream reset_free_space_tracking rollback_and_continue_as_read<(anonymous namespace)::TransactLogValidator> -operator()<(anonymous namespace)::TransactLogValidator &> -TransactLogObserver<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/transact_log_handler.cpp:460:38)> +operator()<(anonymous namespace)::TransactLogValidator> +TransactLogObserver<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/transact_log_handler.cpp:599:38)> promote_to_write<(anonymous namespace)::TransactLogObserver> promote_to_write promote_to_write @@ -8211,7 +9667,7 @@ unselect_all reset_selection_caches initiate_transact promote_to_write<(anonymous namespace)::TransactLogValidator> -TransactLogObserver<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/transact_log_handler.cpp:444:38)> +TransactLogObserver<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/transact_log_handler.cpp:583:38)> move<(anonymous namespace)::TransactLogObserver &> append_link_list_change __wrap_iter @@ -8232,9 +9688,7 @@ swap move move_if_noexcept forward -forward > > -move > &> -IndexSet +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/index_set.hpp ColumnInfo construct __construct @@ -8242,7 +9696,6 @@ __construct_backward forward &> construct __construct -get_change operator== operator!= current_table @@ -8254,12 +9707,13 @@ distance > __lower_bound &, std::__1::__wrap_iter, realm::BindingContext::ObserverState> lower_bound, realm::BindingContext::ObserverState, std::__1::__less > lower_bound, realm::BindingContext::ObserverState> -mark_dirty parse_one<(anonymous namespace)::TransactLogObserver> parse<(anonymous namespace)::TransactLogObserver> do_advance_read<(anonymous namespace)::TransactLogObserver> advance_read<(anonymous namespace)::TransactLogObserver> move &> +~TransactLogValidator +TransactLogValidator move<(anonymous namespace)::TransactLogValidator &> schema_error end > > @@ -8270,30 +9724,101 @@ parse_one<(anonymous namespace)::TransactLogValidator> parse<(anonymous namespace)::TransactLogValidator> do_advance_read<(anonymous namespace)::TransactLogValidator> advance_read<(anonymous namespace)::TransactLogValidator> -TransactLogValidator -TransactLogObserver<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/transact_log_handler.cpp:437:38)> +TransactLogObserver<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/transact_log_handler.cpp:576:38)> +~LinkViewObserver +TransactLogValidationMixin +LinkViewObserver +~ReadLockUnlockGuard +operator() +~Buffer +~StringBuffer +core/include/realm/util/string_buffer.hpp +~TransactLogParser +~ChangesetInputStream +~BadTransactLog +BadTransactLog +is_valid_data_type +is_valid_link_type +operator() +reset +__unwrap_iter +__copy +copy +unique_ptr +less +int_less_than +int_greater_than +int_multiply_with_overflow_detect +read_timestamp +core/include/realm/olddatetime.hpp +read_mixed +sub +int_subtract_with_overflow_detect +int_greater_than_or_equal +int_shift_left_with_overflow_detect +read_int +OldDateTime +read_binary +read_buffer +read_string +read_double +read_bytes +read_float +cast +cast_to_unsigned +int_subtract_with_overflow_detect +int_greater_than_or_equal +int_shift_left_with_overflow_detect +read_int +int_subtract_with_overflow_detect +int_greater_than_or_equal +int_shift_left_with_overflow_detect +read_int +cast +cast_to_unsigned +int_subtract_with_overflow_detect +cast +cast_to_unsigned +int_greater_than_or_equal +int_shift_left_with_overflow_detect +read_int +read_char +parse_one +next_input_buffer +has_next +parse +~NoCopyInputStream +NoCopyInputStream +ChangesetInputStream +Buffer +StringBuffer +unique_ptr +TransactLogParser +ReadLockUnlockGuard +do_advance_read +get_replication +get_history +advance_read +advance_read commit_and_continue_as_read -~TransactLogValidator +~TransactLogValidationMixin ~TransactLogObserver cancel commit -.str1 -.str2 -.str3 +_ZZN5realm5_impl17WeakRealmNotifierC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_08__invokeEPv +_ZZN5realm5_impl17WeakRealmNotifierC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_18__invokeEPKv +_ZZN5realm5_impl17WeakRealmNotifierC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_28__invokeEPKv +WeakRealmNotifierBase +~WeakRealmNotifierBase +~RefCountedWeakPointer +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/weak_realm_notifier.cpp +operator void (*)(const void *) +operator const void *(*)(const void *) +operator void (*)(void *) +~WeakRealmNotifier +WeakRealmNotifier _ZTSN5realm4util16DecryptionFailedE _ZTIN5realm4util16DecryptionFailedE -.str4 -.str5 -.str6 -.str7 -.str8 -.str9 -.str10 -.str11 -.str12 -.str13 -.str14 -.str15 _ZN12_GLOBAL__N_115system_categoryD1Ev _ZN12_GLOBAL__N_115system_categoryD0Ev _ZNK12_GLOBAL__N_115system_category4nameEv @@ -8305,33 +9830,9 @@ _ZTSN12_GLOBAL__N_115system_categoryE _ZTIN12_GLOBAL__N_115system_categoryE _ZZN5realm4util9page_sizeEvE16cached_page_size _ZGVZN5realm4util9page_sizeEvE16cached_page_size -.str18 -.str19 -.str20 -.str21 -.str22 -.str23 -.str24 -.str25 -.str26 -.str27 -.str28 -.str29 -.str30 -.str31 -.str32 -.str33 -.str34 -.str35 -.str38 _GLOBAL__sub_I_file_mapper.cpp -_ZTSN5realm21AddressSpaceExhaustedE -_ZTIN5realm21AddressSpaceExhaustedE _ZN12_GLOBAL__N_15nslogEPKc _ZN12_GLOBAL__N_133termination_notification_callbackE -.str16 -.str17 -_GLOBAL__sub_I_platform_specific_condvar.cpp _ZN12_GLOBAL__N_116DefaultAllocatorD1Ev _ZN12_GLOBAL__N_116DefaultAllocatorD0Ev _ZN12_GLOBAL__N_116DefaultAllocator8do_allocEm @@ -8346,73 +9847,38 @@ _ZTIN12_GLOBAL__N_116DefaultAllocatorE _ZN12_GLOBAL__N_116InvalidFreeSpaceD1Ev _ZN12_GLOBAL__N_116InvalidFreeSpaceD0Ev _ZNK12_GLOBAL__N_116InvalidFreeSpace4whatEv +_GLOBAL__sub_I_alloc_slab.cpp _ZTSN12_GLOBAL__N_116InvalidFreeSpaceE _ZTIN12_GLOBAL__N_116InvalidFreeSpaceE +_ZN12_GLOBAL__N_19all_filesE +_ZN12_GLOBAL__N_115all_files_mutexE _ZTSN5realm15InvalidDatabaseE _ZTIN5realm15InvalidDatabaseE _ZTSN5realm9SlabAlloc5RetryE _ZTIN5realm9SlabAlloc5RetryE _ZTVN12_GLOBAL__N_116InvalidFreeSpaceE -.str36 -.str37 +_ZTSNSt3__120__shared_ptr_emplaceIN5realm9SlabAlloc10MappedFileENS_9allocatorIS3_EEEE +_ZTINSt3__120__shared_ptr_emplaceIN5realm9SlabAlloc10MappedFileENS_9allocatorIS3_EEEE +_ZTSNSt3__120__shared_ptr_emplaceIKN5realm4util4File3MapIcEENS_9allocatorIS6_EEEE +_ZTINSt3__120__shared_ptr_emplaceIKN5realm4util4File3MapIcEENS_9allocatorIS6_EEEE _ZN12_GLOBAL__N_119foreach_bptree_leafINS_12VisitAdapterEEEbRN5realm5ArrayEmmT_m _ZN12_GLOBAL__N_130simplified_foreach_bptree_leafINS_13UpdateAdapterEEEvRN5realm5ArrayET_ _ZN12_GLOBAL__N_129destroy_singlet_bptree_branchEN5realm6MemRefERNS0_9AllocatorERNS0_5Array12EraseHandlerE _ZN12_GLOBAL__N_128elim_superfluous_bptree_rootEPN5realm5ArrayENS0_6MemRefExmRNS1_12EraseHandlerE -__cxx_global_var_init36 -__cxx_global_var_init37 -__cxx_global_var_init38 -__cxx_global_var_init39 -__cxx_global_var_init40 -__cxx_global_var_init41 -__cxx_global_var_init42 +__cxx_global_var_init.36 +__cxx_global_var_init.37 +__cxx_global_var_init.38 +__cxx_global_var_init.39 +__cxx_global_var_init.40 +__cxx_global_var_init.41 +__cxx_global_var_init.42 _ZN12_GLOBAL__N_117find_bptree_childExmRKN5realm9AllocatorE _ZZN5realm5Array9bit_widthExE4bits _ZZNK5realm5Array13first_set_bitEjE27MultiplyDeBruijnBitPosition -.str43 -.str44 -.str45 -.str46 -.str47 -.str48 -.str49 -.str50 -.str51 _ZTSN5realm10QueryStateIxEE _ZTSN5realm14QueryStateBaseE _ZTIN5realm14QueryStateBaseE _ZTIN5realm10QueryStateIxEE -.str52 -.str53 -.str54 -.str55 -.str56 -.str57 -.str58 -.str59 -.str60 -.str61 -.str62 -.str64 -.str65 -.str66 -.str67 -.str68 -.str69 -.str70 -.str71 -.str72 -.str73 -.str74 -.str75 -.str76 -.str77 -.str78 -.str80 -.str81 -.str83 -.str84 -.str85 _ZTSN5realm11ArrayBinaryE _ZTIN5realm11ArrayBinaryE _ZTSN5realm9ArrayBlobE @@ -8427,7 +9893,6 @@ _ZTSN5realm10BpTreeBase17WriteSliceHandlerE _ZTSN5realm5Array12VisitHandlerE _ZTIN5realm5Array12VisitHandlerE _ZTIN5realm10BpTreeBase17WriteSliceHandlerE -.str39 _ZN12_GLOBAL__N_111SetLeafElemD1Ev _ZN12_GLOBAL__N_111SetLeafElem6updateEN5realm6MemRefEPNS1_11ArrayParentEmm _ZN12_GLOBAL__N_111SetLeafElemD0Ev @@ -8440,13 +9905,10 @@ _ZTSN5realm12BinaryColumn13CreateHandlerE _ZTIN5realm12BinaryColumn13CreateHandlerE _ZTSN5realm12BinaryColumn12SliceHandlerE _ZTIN5realm12BinaryColumn12SliceHandlerE -_ZTSN5realm8LinkViewE -_ZTIN5realm8LinkViewE +_ZTSNSt3__120__shared_ptr_emplaceIN5realm8LinkViewENS_9allocatorIS2_EEEE +_ZTINSt3__120__shared_ptr_emplaceIN5realm8LinkViewENS_9allocatorIS2_EEEE _ZTSN5realm11MixedColumn10RefsColumnE _ZTIN5realm11MixedColumn10RefsColumnE -.str40 -.str41 -.str42 _ZTSN5realm14ColumnTemplateINS_10StringDataEEE _ZTIN5realm14ColumnTemplateINS_10StringDataEEE _ZTSN5realm12StringColumn13EraseLeafElemE @@ -8455,6 +9917,18 @@ _ZTSN5realm12StringColumn13CreateHandlerE _ZTIN5realm12StringColumn13CreateHandlerE _ZTSN5realm12StringColumn12SliceHandlerE _ZTIN5realm12StringColumn12SliceHandlerE +_ZTSN5realm14ColumnTemplateINS_9TimestampEEE +_ZTIN5realm14ColumnTemplateINS_9TimestampEEE +_ZTSN5realm15TimestampColumn13CreateHandlerINS_6BpTreeINS_4util8OptionalIxEEEEEE +_ZTIN5realm15TimestampColumn13CreateHandlerINS_6BpTreeINS_4util8OptionalIxEEEEEE +_ZTSN5realm15TimestampColumn13CreateHandlerINS_6BpTreeIxEEEE +_ZTIN5realm15TimestampColumn13CreateHandlerINS_6BpTreeIxEEEE +_ZTSN5realm6BpTreeINS_4util8OptionalIxEEE14SetNullHandlerE +_ZTIN5realm6BpTreeINS_4util8OptionalIxEEE14SetNullHandlerE +_ZTSN5realm6BpTreeINS_4util8OptionalIxEEE12EraseHandlerE +_ZTIN5realm6BpTreeINS_4util8OptionalIxEEE12EraseHandlerE +_ZTSN5realm6BpTreeINS_4util8OptionalIxEEE13UpdateHandlerE +_ZTIN5realm6BpTreeINS_4util8OptionalIxEEE13UpdateHandlerE _ZN12_GLOBAL__N_119InsertColumnUpdaterD1Ev _ZN12_GLOBAL__N_119InsertColumnUpdater6updateERN5realm5TableE _ZN12_GLOBAL__N_119InsertColumnUpdater13update_parentERN5realm5TableE @@ -8501,7 +9975,6 @@ _ZTIN12_GLOBAL__N_118EraseColumnUpdaterE _ZTVN12_GLOBAL__N_117MoveColumnUpdaterE _ZTSN12_GLOBAL__N_117MoveColumnUpdaterE _ZTIN12_GLOBAL__N_117MoveColumnUpdaterE -.str63 _ZTVN12_GLOBAL__N_116MarkDirtyUpdaterE _ZTSN12_GLOBAL__N_116MarkDirtyUpdaterE _ZTIN12_GLOBAL__N_116MarkDirtyUpdaterE @@ -8510,6 +9983,8 @@ _ZTIN5realm5_impl15ArrayWriterBaseE _ZN12_GLOBAL__N_120has_duplicate_valuesERKN5realm5ArrayE _ZTSN5realm6BpTreeIxE15AdjustGEHandlerE _ZTIN5realm6BpTreeIxE15AdjustGEHandlerE +_ZTSNSt3__123enable_shared_from_thisIN5realm8LinkViewEEE +_ZTINSt3__123enable_shared_from_thisIN5realm8LinkViewEEE _ZTSN5realm6OrNodeE _ZTIN5realm6OrNodeE _ZTSN5realm14ExpressionNodeE @@ -8518,6 +9993,8 @@ _ZTSN5realm11LinksToNodeE _ZTIN5realm11LinksToNodeE _ZTSN5realm24LinksToNodeHandoverPatchE _ZTIN5realm24LinksToNodeHandoverPatchE +_ZTSN5realm14ConstTableViewE +_ZTIN5realm14ConstTableViewE _ZTSN5realm12SubtableNodeE _ZTIN5realm12SubtableNodeE _ZTSN5realm10BinaryNodeINS_5EqualEEE @@ -8582,6 +10059,8 @@ _ZTIN5realm14StringNodeBaseE _ZTIN5realm10StringNodeINS_5EqualEEE _ZTSN5realm16SequentialGetterINS_16StringEnumColumnEEE _ZTIN5realm16SequentialGetterINS_16StringEnumColumnEEE +_ZTSN5realm13TimestampNodeINS_5EqualEEE +_ZTIN5realm13TimestampNodeINS_5EqualEEE _ZTSN5realm11IntegerNodeINS_6ColumnINS_4util8OptionalIxEEEENS_8NotEqualEEE _ZTIN5realm11IntegerNodeINS_6ColumnINS_4util8OptionalIxEEEENS_8NotEqualEEE _ZTSN5realm15FloatDoubleNodeINS_6ColumnIfEENS_8NotEqualEEE @@ -8590,8 +10069,8 @@ _ZTSN5realm15FloatDoubleNodeINS_6ColumnIdEENS_8NotEqualEEE _ZTIN5realm15FloatDoubleNodeINS_6ColumnIdEENS_8NotEqualEEE _ZTSN5realm10StringNodeINS_8NotEqualEEE _ZTIN5realm10StringNodeINS_8NotEqualEEE -.str79 -.str82 +_ZTSN5realm13TimestampNodeINS_8NotEqualEEE +_ZTIN5realm13TimestampNodeINS_8NotEqualEEE _ZTSN5realm11IntegerNodeINS_6ColumnIxEENS_5EqualEEE _ZTSN5realm15IntegerNodeBaseINS_6ColumnIxEEEE _ZTIN5realm15IntegerNodeBaseINS_6ColumnIxEEEE @@ -8622,6 +10101,14 @@ _ZTSN5realm15FloatDoubleNodeINS_6ColumnIdEENS_9LessEqualEEE _ZTIN5realm15FloatDoubleNodeINS_6ColumnIdEENS_9LessEqualEEE _ZTSN5realm15FloatDoubleNodeINS_6ColumnIdEENS_4LessEEE _ZTIN5realm15FloatDoubleNodeINS_6ColumnIdEENS_4LessEEE +_ZTSN5realm13TimestampNodeINS_7GreaterEEE +_ZTIN5realm13TimestampNodeINS_7GreaterEEE +_ZTSN5realm13TimestampNodeINS_12GreaterEqualEEE +_ZTIN5realm13TimestampNodeINS_12GreaterEqualEEE +_ZTSN5realm13TimestampNodeINS_9LessEqualEEE +_ZTIN5realm13TimestampNodeINS_9LessEqualEEE +_ZTSN5realm13TimestampNodeINS_4LessEEE +_ZTIN5realm13TimestampNodeINS_4LessEEE _ZTSN5realm10StringNodeINS_8EqualInsEEE _ZTIN5realm10StringNodeINS_8EqualInsEEE _ZTSN5realm10StringNodeINS_10BeginsWithEEE @@ -8647,139 +10134,30 @@ _ZTSN5realm10QueryStateIfEE _ZTIN5realm10QueryStateIfEE _ZN12_GLOBAL__N_121get_group_ndx_blockedEmRNS_9AggrStateERN5realm5TableE _ZN12_GLOBAL__N_113get_group_ndxEmRNS_9AggrStateERN5realm5TableE -.str86 -.str87 -.str88 -.str89 -.str90 -.str91 -.str92 -.str93 -.str94 -.str95 -.str96 -.str97 -.str98 -.str99 -.str100 -.str101 -.str102 -.str104 -.str105 -.str106 -.str107 -.str108 -.str109 -.str110 -.str111 -.str112 -.str113 +.str.116 _ZTSN5realm5Table21InsertSubtableColumnsE _ZTSN5realm5Table15SubtableUpdaterE _ZTIN5realm5Table15SubtableUpdaterE _ZTIN5realm5Table21InsertSubtableColumnsE -.str114 -.str115 -.str116 -.str117 -.str118 -.str119 -.str120 -.str121 _ZTSN5realm5Table20EraseSubtableColumnsE _ZTIN5realm5Table20EraseSubtableColumnsE _ZTSN5realm5Table19MoveSubtableColumnsE _ZTIN5realm5Table19MoveSubtableColumnsE -.str122 _ZTSN5realm5Table21RenameSubtableColumnsE _ZTIN5realm5Table21RenameSubtableColumnsE -.str123 -.str124 -.str125 -.str126 -.str127 -.str128 -.str129 -.str130 -.str131 -.str132 -.str133 -.str134 -.str135 -.str136 -.str137 -.str138 -.str139 -.str140 -.str141 -.str142 -.str143 -.str144 -.str145 -.str146 -.str148 -.str149 -.str150 -.str151 -.str152 -.str153 -.str154 -.str155 -.str156 -.str157 -.str158 -.str159 -.str160 -.str161 -.str162 -.str163 -.str164 -.str165 -.str166 -.str167 -.str168 -.str169 -.str170 -.str171 -.str172 -.str173 -.str174 -.str175 -.str176 -.str177 -.str178 -.str179 -_ZTSN5realm14ConstTableViewE -_ZTIN5realm14ConstTableViewE _ZTSN5realm5Table11SliceWriterE _ZTIN5realm5Table11SliceWriterE -.str180 -.str181 -.str182 _ZTSN5realm14ColumnTemplateINS_4util8OptionalIxEEEE _ZTIN5realm14ColumnTemplateINS_4util8OptionalIxEEEE _ZTIN5realm6ColumnINS_4util8OptionalIxEEEE -_ZTSN5realm6BpTreeINS_4util8OptionalIxEEE14SetNullHandlerE -_ZTIN5realm6BpTreeINS_4util8OptionalIxEEE14SetNullHandlerE -_ZTSN5realm6BpTreeINS_4util8OptionalIxEEE12EraseHandlerE -_ZTIN5realm6BpTreeINS_4util8OptionalIxEEE12EraseHandlerE -_ZTSN5realm6BpTreeINS_4util8OptionalIxEEE13UpdateHandlerE -_ZTIN5realm6BpTreeINS_4util8OptionalIxEEE13UpdateHandlerE -.str187 _ZTSN5realm6BpTreeINS_4util8OptionalIxEEE12SliceHandlerE _ZTIN5realm6BpTreeINS_4util8OptionalIxEEE12SliceHandlerE _ZTSN5realm14ColumnTemplateIfEE _ZTIN5realm14ColumnTemplateIfEE _ZTIN5realm6ColumnIfEE -.str188 _ZTSN5realm6BpTreeIfE14SetNullHandlerE _ZTIN5realm6BpTreeIfE14SetNullHandlerE -.str189 -.str190 -.str191 -.str192 -.str193 -.str195 +.str.204 _ZTSN5realm6BpTreeIfE12EraseHandlerE _ZTIN5realm6BpTreeIfE12EraseHandlerE _ZTSN5realm6BpTreeIfE13UpdateHandlerE @@ -8797,21 +10175,14 @@ _ZTSN5realm6BpTreeIdE13UpdateHandlerE _ZTIN5realm6BpTreeIdE13UpdateHandlerE _ZTSN5realm6BpTreeIdE12SliceHandlerE _ZTIN5realm6BpTreeIdE12SliceHandlerE -.str196 _ZTSN5realm6ColumnINS_4util8OptionalIxEEE13CreateHandlerE _ZTIN5realm6ColumnINS_4util8OptionalIxEEE13CreateHandlerE _ZTSN5realm6ColumnIfE13CreateHandlerE _ZTIN5realm6ColumnIfE13CreateHandlerE _ZTSN5realm6ColumnIdE13CreateHandlerE _ZTIN5realm6ColumnIdE13CreateHandlerE -.str197 -.str198 -.str199 -.str200 -.str201 -.str202 -.str203 -.str204 +.str.216 +.str.220 _ZZN5realm15sequence_lengthEcE7lengths _ZZN5realm12utf8_compareENS_10StringDataES0_E15collation_order _GLOBAL__sub_I_utilities.cpp diff --git a/Carthage/Build/iOS/8EEB6569-8AFD-3A6E-899D-DFCD03AAC6FB.bcsymbolmap b/Carthage/Build/iOS/3B46401A-6463-3C56-A1A8-7DAEC6A432BB.bcsymbolmap similarity index 56% rename from Carthage/Build/iOS/8EEB6569-8AFD-3A6E-899D-DFCD03AAC6FB.bcsymbolmap rename to Carthage/Build/iOS/3B46401A-6463-3C56-A1A8-7DAEC6A432BB.bcsymbolmap index b0fb8c5..2d8fa95 100644 --- a/Carthage/Build/iOS/8EEB6569-8AFD-3A6E-899D-DFCD03AAC6FB.bcsymbolmap +++ b/Carthage/Build/iOS/3B46401A-6463-3C56-A1A8-7DAEC6A432BB.bcsymbolmap @@ -1,323 +1,502 @@ BCSymbolMap Version: 1.0 -__clang_call_terminate -_ZNK5realm13TableViewBase4sizeEv -_ZN5realm13TableViewBaseD2Ev -_ZN5realm9TableViewD1Ev -_ZN5realm9TableViewD0Ev -_ZNK5realm5_impl10AsyncQuery21is_for_current_threadEv -_ZN5realm5Array16update_child_refEmm -_ZNK5realm5Array13get_child_refEm -_ZNK5realm5Array12GetWidthTypeEv -_ZNK5realm19ColumnBaseWithIndex16has_search_indexEv -_ZNK5realm19ColumnBaseWithIndex16get_search_indexEv -_ZN5realm19ColumnBaseWithIndex16get_search_indexEv -_ZN5realm10ColumnBase39set_search_index_allow_duplicate_valuesEb -_ZN5realm6ColumnIxE18replace_root_arrayENSt3__110unique_ptrINS_5ArrayENS2_14default_deleteIS4_EEEE -_ZNK5realm10ColumnBase21get_subtable_accessorEm -_ZN5realm10ColumnBase25discard_subtable_accessorEm -_ZN5realm10ColumnBase30bump_link_origin_table_versionEv -_ZN5realm10ColumnBase26do_discard_child_accessorsEv -_ZNK5realm6ColumnIxE7get_valEm -_ZNK5realm14ColumnTemplateIxE14compare_valuesEmm -_ZThn8_NK5realm6ColumnIxE7get_valEm -_ZNK5realm10RowIndexes14sync_if_neededEv -_ZNK5realm10RowIndexes10is_in_syncEv -_ZN5realm10ColumnBase19adj_acc_insert_rowsEmm -_ZN5realm10ColumnBase17adj_acc_erase_rowEm -_ZN5realm10ColumnBase17adj_acc_move_overEmm -_ZN5realm10ColumnBase17adj_acc_swap_rowsEmm -_ZN5realm10ColumnBase24adj_acc_clear_root_tableEv -_ZN5realm10ColumnBase4markEi -_ZNK5realm13TableViewBase15get_column_baseEm -_ZNK5realm9TableView18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_18ConstSourcePayloadE -_ZN5realm9TableView18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_20MutableSourcePayloadE -_ZN5realm9TableView23apply_and_consume_patchERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEERNS_5GroupE -_ZN5realm13TableViewBaseD1Ev -_ZN5realm13TableViewBaseD0Ev -_ZNK5realm13TableViewBase18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_18ConstSourcePayloadE -_ZN5realm13TableViewBase18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_20MutableSourcePayloadE -_ZN5realm13TableViewBase23apply_and_consume_patchERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEERNS_5GroupE -_ZN5realm10RowIndexesD1Ev -_ZN5realm10RowIndexesD0Ev -_ZNK5realm5Table10unbind_ptrEv -_ZN5realm13TableViewBaseC2Ev -_ZN5realm19ColumnBaseWithIndexD2Ev -_ZN5realm12ArrayIntegerD1Ev -_ZN5realm12ArrayIntegerD0Ev -_ZN5realm10LogicErrorD1Ev -_ZN5realm5_impl17NullableOrNothingINS_12ArrayIntegerEE8set_nullERS2_m -_ZN5realm6BpTreeIxE14SetNullHandlerD1Ev -_ZN5realm6BpTreeIxE14SetNullHandler6updateENS_6MemRefEPNS_11ArrayParentEmm -_ZN5realm6BpTreeIxE14SetNullHandlerD0Ev -_ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZThn8_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZThn8_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZTv0_n12_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZTv0_n12_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekposENS_4fposI11__mbstate_tEEj -_ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_ -_ZN5realm6BpTreeIxE13UpdateHandlerD1Ev -_ZN5realm6BpTreeIxE13UpdateHandler6updateENS_6MemRefEPNS_11ArrayParentEmm -_ZN5realm6BpTreeIxE13UpdateHandlerD0Ev -_ZN5realm6ColumnIxE13CreateHandler11create_leafEm -_ZN5realm13TableViewBaseaSEOS0_ -_ZNKSt3__114default_deleteIN5realm22TableViewHandoverPatchEEclEPS2_ -_ZN5realm10BpTreeBase7destroyEv -_ZN5realm11SharedGroup10BadVersionD1Ev -_ZN5realm11SharedGroup10BadVersionD0Ev +_ZNSt3__16vectorIN12_GLOBAL__N_17RowInfoENS_9allocatorIS2_EEE7reserveEm +_ZNSt3__16vectorIN12_GLOBAL__N_134LongestCommonSubsequenceCalculator3RowENS_9allocatorIS3_EEE7reserveEm +_ZNSt3__16vectorIN12_GLOBAL__N_134LongestCommonSubsequenceCalculator3RowENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE +_ZNSt3__16__sortIRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_8PNS1_34LongestCommonSubsequenceCalculator3RowEEEvT0_SG_T_ +_ZNSt3__17__sort3IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_8PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_T_ +_ZNSt3__17__sort4IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_8PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_SG_T_ +_ZNSt3__17__sort5IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_8PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_SG_SG_T_ +_ZNSt3__127__insertion_sort_incompleteIRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_8PNS1_34LongestCommonSubsequenceCalculator3RowEEEbT0_SG_T_ +_ZNSt3__16__sortIRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_9PNS1_34LongestCommonSubsequenceCalculator3RowEEEvT0_SG_T_ +_ZNSt3__17__sort3IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_9PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_T_ +_ZNSt3__17__sort4IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_9PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_SG_T_ +_ZNSt3__17__sort5IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_9PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_SG_SG_T_ +_ZNSt3__127__insertion_sort_incompleteIRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_9PNS1_34LongestCommonSubsequenceCalculator3RowEEEbT0_SG_T_ +_ZN12_GLOBAL__N_134LongestCommonSubsequenceCalculator20find_longest_matchesEmmmm +_ZNSt3__16vectorIN12_GLOBAL__N_134LongestCommonSubsequenceCalculator5MatchENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE +_ZNSt3__16__sortIRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_3PNS1_19CollectionChangeSet4MoveEEEvT0_S9_T_ +_ZNSt3__17__sort3IRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_3PNS1_19CollectionChangeSet4MoveEEEjT0_S9_S9_T_ +_ZNSt3__17__sort4IRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_3PNS1_19CollectionChangeSet4MoveEEEjT0_S9_S9_S9_T_ +_ZNSt3__17__sort5IRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_3PNS1_19CollectionChangeSet4MoveEEEjT0_S9_S9_S9_S9_T_ +_ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_3PNS1_19CollectionChangeSet4MoveEEEbT0_S9_T_ +_ZNSt3__16vectorIN12_GLOBAL__N_17RowInfoENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE +_ZNSt3__16__sortIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_4PN12_GLOBAL__N_17RowInfoEEEvT0_SI_T_ +_ZNSt3__17__sort3IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_4PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_T_ +_ZNSt3__17__sort4IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_4PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_T_ +_ZNSt3__17__sort5IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_4PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_SI_T_ +_ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_4PN12_GLOBAL__N_17RowInfoEEEbT0_SI_T_ +_ZNSt3__16__sortIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_5PN12_GLOBAL__N_17RowInfoEEEvT0_SI_T_ +_ZNSt3__17__sort3IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_5PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_T_ +_ZNSt3__17__sort4IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_5PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_T_ +_ZNSt3__17__sort5IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_5PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_SI_T_ +_ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_5PN12_GLOBAL__N_17RowInfoEEEbT0_SI_T_ +_ZNSt3__16__sortIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_7PN12_GLOBAL__N_17RowInfoEEEvT0_SI_T_ +_ZNSt3__17__sort3IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_7PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_T_ +_ZNSt3__17__sort4IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_7PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_T_ +_ZNSt3__17__sort5IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_7PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_SI_T_ +_ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_7PN12_GLOBAL__N_17RowInfoEEEbT0_SI_T_ _ZNSt3__117bad_function_callD1Ev _ZNSt3__117bad_function_callD0Ev -_ZN5realm6BpTreeIxE17LeafValueInserter11leaf_insertENS_6MemRefERNS_11ArrayParentEmRNS_9AllocatorEmRNS_5Array10TreeInsertIS2_EE -_ZN5realm6BpTreeIxE12EraseHandlerD1Ev -_ZN5realm6BpTreeIxE12EraseHandler15erase_leaf_elemENS_6MemRefEPNS_11ArrayParentEmm -_ZN5realm6BpTreeIxE12EraseHandler12destroy_leafENS_6MemRefE -_ZN5realm6BpTreeIxE12EraseHandler20replace_root_by_leafENS_6MemRefE -_ZN5realm6BpTreeIxE12EraseHandler26replace_root_by_empty_leafEv -_ZN5realm6BpTreeIxE12EraseHandlerD0Ev -_ZN5realm6BpTreeIxE12SliceHandler10slice_leafENS_6MemRefEmmRNS_9AllocatorE +.str +.str.1 +.str.2 +.str.3 +.str.4 +.str.5 +.str.6 +.str.7 .str.8 .str.9 -.str.10 -.str.11 -.str.12 -.str.13 -.str.14 -.str.15 -.str.16 -.str.17 -.str.18 -.str.19 -.str.20 -.str.21 -.str.22 -.str.23 -.str.24 -.str.25 -.str.26 -.str.27 -.str.28 -.str.29 -.str.30 -.str.31 -.str.32 -.str.33 -.str.34 -.str.40 -.str.43 -.str.44 -.str.45 -.str.53 -.str.54 -.str.55 -.str.56 -.str.57 -.str.58 -.str.59 -.str.60 -.str.61 -.str.62 -.str.63 -.str.65 -Apple LLVM version 7.3.0 (clang-703.0.29) -get_val -core/include/realm/column.hpp -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release -set_ndx_in_parent -core/include/realm/bptree.hpp -get_ndx_in_parent -set_parent -~SliceHandler -slice_leaf -SliceHandler -~DeepArrayDestroyGuard -core/include/realm/impl/destroy_guard.hpp -is_read_only -core/include/realm/alloc.hpp -write -core/include/realm/array.hpp -DeepArrayDestroyGuard -clone_deep -replace_root_array -get_mem -get_root_array -get_ref -data -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/array -get_index_data -clear -clear_and_destroy_children -get_type -clear_without_updating_index -move_last_over -move_last_over_without_updating_index -update_ref -core/include/realm/index_string.hpp -move_last_row_over -~EraseHandler -replace_root_by_empty_leaf -unique_ptr > -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/memory -replace_root_by_leaf -free_ -destroy_leaf -has_refs -erase_leaf_elem -EraseHandler -set_header_size -erase -erase_without_updating_index -erase -do_erase -erase_rows -adjust -ensure_bptree_offsets -forward -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/type_traits -inspect_value, std::__1::allocator >, int> -core/include/realm/util/inspect.hpp -inspect_all, std::__1::allocator >, int> -inspect_all, std::__1::allocator >, unsigned long, int> -terminate -core/include/realm/util/terminate.hpp -bptree_insert::LeafValueInserter> -~Array -leaf_insert -bptree_append::LeafValueInserter> -insert -null_or_default_value -insert_rows -compare_values -operator* -operator bool -operator= -__libcpp_compressed_pair_imp -__compressed_pair -unique_ptr -get_deleter -forward > -move > &> -import_from_handover -core/include/realm/group_shared.hpp -function -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/functional -operator[] -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/vector -forward +Apple LLVM version 7.3.0 (clang-703.0.31) ~bad_function_call +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/functional +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa +exception +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/exception bad_function_call operator() -~unique_ptr -first -operator-> -forward > -release -move > &> -~BadVersion -BadVersion -import_from_handover -forward > > -second -reset -move *&> -forward -Handover -export_for_handover -load -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/atomic -get -empty -__wrap_iter -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iterator -__unwrap_iter -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/algorithm -__move -move +__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *> +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/algorithm +__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *> +__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *> +__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *> +__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *> +operator()<(anonymous namespace)::RowInfo, (anonymous namespace)::RowInfo> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp +__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *> +sort<(anonymous namespace)::RowInfo *, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &> +sort<(anonymous namespace)::RowInfo, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15)> +__wrap_iter<(anonymous namespace)::RowInfo *> +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iterator +operator- +__unwrap_iter<(anonymous namespace)::RowInfo *> +__move<(anonymous namespace)::RowInfo, (anonymous namespace)::RowInfo> +move<(anonymous namespace)::RowInfo *, (anonymous namespace)::RowInfo *> __annotate_shrink +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/vector __destruct_at_end -__wrap_iter -__make_iter -begin -cbegin +operator== +operator!= base -operator- -operator- -__distance > -distance > -operator== -operator() -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/async_query.cpp -find_if, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/async_query.cpp:78:27)> -end > > -begin > > +operator- +erase +operator()<(anonymous namespace)::RowInfo> +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:621:35) &> +remove_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:621:35)> +__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *> +__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *> +__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *> +__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *> +__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *> +__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *> +sort<(anonymous namespace)::RowInfo *, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &> +sort<(anonymous namespace)::RowInfo, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47)> +__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *> +__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *> +__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *> +__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *> +__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *> +swap<(anonymous namespace)::RowInfo> +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/type_traits +__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *> +sort<(anonymous namespace)::RowInfo *, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &> +sort<(anonymous namespace)::RowInfo, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47)> +end > > +begin > > +second +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/memory +__alloc +max_size +__max_size +__recommend +__push_back_slow_path<(anonymous namespace)::RowInfo> +__done +move<(anonymous namespace)::RowInfo &> +forward<(anonymous namespace)::RowInfo> +construct<(anonymous namespace)::RowInfo, (anonymous namespace)::RowInfo> +__construct<(anonymous namespace)::RowInfo, (anonymous namespace)::RowInfo> +__RAII_IncreaseAnnotator +push_back +operator[] size -store -~function +first __end_cap -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__split_buffer +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__split_buffer capacity +clear ~__split_buffer __invalidate_all_iterators __annotate_new -move -swap -move_if_noexcept -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/utility -__construct_backward +move<(anonymous namespace)::RowInfo *&> +swap<(anonymous namespace)::RowInfo *> +__construct_backward<(anonymous namespace)::RowInfo> +data __annotate_contiguous_container __annotate_delete __swap_out_circular_buffer -__alloc allocate -forward &> +__libcpp_compressed_pair_imp +forward &> +__compressed_pair __split_buffer -max_size -__max_size -__recommend -__push_back_slow_path -__done -forward -Callback -Realm/ObjectStore/impl/async_query.hpp -construct -__construct -__RAII_IncreaseAnnotator -push_back -operator!= -move -swap -move -swap +reserve +allocator +forward<(anonymous namespace)::RowInfo *> +__vector_base +vector +operator* +operator++ +operator==<(anonymous namespace)::RowInfo *, (anonymous namespace)::RowInfo *> +operator!=<(anonymous namespace)::RowInfo *> +end +__wrap_iter +__make_iter +begin +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/unordered_map +__destroy +destroy +__destroy +destroy +reset +~unique_ptr +release +forward +pair, void *> *>, bool> +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/utility +get +forward +forward, void *> *> > +pair, void *> *>, bool &, void> +ceil +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/cmath +__is_hash_power2 +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__hash_table +__clz +__next_hash_pow2 +__rehash +rehash +__node_insert_unique +unique_ptr +move, void *>, std::__1::__hash_map_node_destructor, void *> > > > &> +addressof +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__functional_base +construct +__construct +get_deleter +operator-> +addressof +construct +__construct +forward, void *> > > > +move, void *> > > &> +__hash_map_node_destructor +__construct_node_with_key +addressof > +pointer_to +find +__hash_const_iterator +forward, void *> > > > +forward, void *> *> +move, void *> > > &> +__hash_node_destructor +remove +find +__erase_unique +Realm/ObjectStore/index_set.hpp +back +operator-- +front +__advance > > +advance > > +prev > > +operator!= +next_chunk +offset +outer +operator== +operator== > > +operator!= > > +cbegin +operator+ +__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *> +__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *> +__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *> +__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *> +__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *> +swap +operator() +__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *> +sort +sort +__push_back_slow_path +operator== +operator!= +__hash_map_iterator +__hash_iterator +operator() +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:127:53) &> +remove_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:127:53)> +move +swap +__construct_forward +__construct_backward +__construct_at_end > +forward &> +__unwrap_iter +__copy +copy, realm::CollectionChangeSet::Move *> +__move_backward +move_backward +forward +construct +__construct +__move_range +forward +construct +__construct +__construct_range_forward, realm::CollectionChangeSet::Move *> +operator+= +__advance > +advance > +operator- +__distance > +distance > +insert > +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:83:31) &> +remove_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:83:31)> +__wrap_iter +operator- +__unwrap_iter +__move +move +operator== +operator!= +operator- +move +pop_back +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:54:61)> +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:52:55) &> +remove_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:52:55)> +end > > +begin > > +operator== +operator!= +__unordered_map_equal +forward +__unordered_map_hasher +__hash_node_base +forward +__bucket_list_deallocator +forward, void *> **> +__hash_table +unordered_map +forward > +forward +empty +deallocate +__to_raw_pointer<(anonymous namespace)::RowInfo> +destroy +__destroy<(anonymous namespace)::RowInfo> +destroy<(anonymous namespace)::RowInfo> +~__vector_base +~vector +calculate_moves_unsorted +operator==<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match *, (anonymous namespace)::LongestCommonSubsequenceCalculator::Match *> +operator!=<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match *> +~LongestCommonSubsequenceCalculator +forward > +move &> +__push_back_slow_path<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match> +move<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match &> +forward<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match> +construct<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match, (anonymous namespace)::LongestCommonSubsequenceCalculator::Match> +__construct<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match, (anonymous namespace)::LongestCommonSubsequenceCalculator::Match> +__destroy<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match> +destroy<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match> +move<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match *&> +swap<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match *> +__construct_backward<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match> +forward &> +__push_back_slow_path +__to_raw_pointer<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match> +forward +construct<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match, const (anonymous namespace)::LongestCommonSubsequenceCalculator::Match &> +__construct<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match, const (anonymous namespace)::LongestCommonSubsequenceCalculator::Match &> +__construct_backward +forward &> +__push_back_slow_path +move +forward +construct +__construct +operator== +operator!= +operator==<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +operator!=<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +operator()<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row, unsigned long> +__advance > +advance > +operator-<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__distance > +distance > +__lower_bound<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:437:35) &, std::__1::__wrap_iter<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *>, unsigned long> +lower_bound, unsigned long, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:437:35)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:455:33)> +__to_raw_pointer +__destroy +destroy +__swap_allocator > +move +swap swap -shared_ptr -move &> -~lock_guard -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__mutex_base -lock_guard -forward > > -unlock -core/include/realm/util/thread.hpp -~LockGuard -move *&> +forward +find_longest_match +find_longest_matches +forward<(anonymous namespace)::LongestCommonSubsequenceCalculator::Match *> +LongestCommonSubsequenceCalculator +__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:530:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:530:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:530:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:530:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:530:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +operator()<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:530:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +sort<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:530:33) &> +sort<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:530:33)> +end > > +begin > > +__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:510:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:510:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:510:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:510:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:510:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +swap<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +__tuple_leaf +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/tuple +__tuple_impl<0, 1, unsigned long &, unsigned long &, unsigned long &, unsigned long &> +tuple +tie +operator(), std::__1::tuple > +get<1, unsigned long &, unsigned long &> +get<0, unsigned long &, unsigned long &> +operator< +__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:510:33) &, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +sort<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:510:33) &> +sort<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:510:33)> +max > +max +min > +min +__push_back_slow_path<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +move<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row &> +forward<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +construct<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +__construct<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row, (anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +__destroy<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +destroy<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +move<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *&> +swap<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +__construct_backward<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +__to_raw_pointer<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row> +__allocate +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/new +forward &> +forward<(anonymous namespace)::LongestCommonSubsequenceCalculator::Row *> +calculate_moves_sorted +ChunkedRangeVectorIterator +MutableChunkedRangeVectorIterator max -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/limits -VersionID -forward -lock -LockGuard -export_for_handover -~Handover -allocator -forward -__vector_base -vector +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/limits +get +get<1, const unsigned long, unsigned long> +forward +get<0, const unsigned long, unsigned long> +forward +pair &, void> +~ChunkedRangeVector +~IndexSet +__to_raw_pointer +__destroy +destroy +~CollectionChangeBuilder +Realm/ObjectStore/impl/collection_change_builder.hpp +ChunkedRangeVector +IndexSet +move +move, std::__1::__unordered_map_hasher, std::__1::hash, true>, std::__1::__unordered_map_equal, std::__1::equal_to, true>, std::__1::allocator > > &> +bucket_count +__constrain_hash +addressof, void *> *> > +move, std::__1::equal_to, true> &> +key_eq +max_load_factor +move, std::__1::hash, true> &> +hash_function +move, void *> > &> +move, void *> *> &> +__move_assign_alloc +reset, void *> **> +__move_assign +operator= +move &> +__to_raw_pointer +__to_raw_pointer > +__destroy > +destroy > +~Chunk +__destroy +destroy +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/collection_notifications.hpp +~CollectionChangeSet +__deallocate +addressof > +~__hash_value_type +__destroy > +destroy > +__node_alloc +~__hash_table +~unordered_map +CollectionChangeSet +move > &> +forward > +forward +__vector_base_common +move &> +move +calculate +verify +move_over +move +insert +modify +parse_complete +clean_up_stale_moves +merge +CollectionChangeBuilder +__clang_call_terminate +_ZN5realm4util15AtomicSharedPtrINS_5_impl18CollectionNotifierELb1EE8exchangeENSt3__110shared_ptrIS3_EE +_ZN5realm4util15AtomicSharedPtrINS_5_impl18CollectionNotifierELb1EEaSEOS4_ +_ZN5realm4util15AtomicSharedPtrINS_5_impl18CollectionNotifierELb1EEC2EOS4_ +atomic_store +Realm/ObjectStore/util/atomic_shared_ptr.hpp +AtomicSharedPtr +operator bool +move +swap +move +swap +atomic_exchange +exchange ~shared_ptr -bad_weak_ptr -shared_ptr -shared_from_this -destroy +shared_ptr +forward > +basic_string +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/string +get_allocator +operator+, std::__1::allocator > +operator<< > +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ostream +operator<<, std::__1::allocator > reset __copy copy @@ -333,7 +512,6 @@ cast cast_to_unsigned int_greater_than_or_equal int_multiply_with_overflow_detect -reserve ~BufferSizeOverflow what BufferSizeOverflow @@ -342,59 +520,14 @@ cast_to_unsigned add int_add_with_overflow_detect reserve_extra -update_from_parent -is_attached -detach -get_alloc -~BasicTableRef -core/include/realm/table_ref.hpp -end -__bit_iterator -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__bit_reference -__copy_unaligned >, true> -__to_raw_pointer -min > -min -__copy_aligned >, true> -copy >, true> -operator- -__distance >, true, 0> > -distance >, true, 0> > -__construct_at_end >, true, 0> > -__external_cap_to_internal -__internal_cap_to_external -forward > -select_on_container_copy_construction -~vector -~BpTreeBase -~BpTree -~Column operator() -apply_and_consume_patch -core/include/realm/table_view.hpp -clone_for_handover -~TableViewBase -apply_patch -ConstTableView -TableView -forward -move -forward -forward > *> -forward -QueryHandoverPatch -core/include/realm/handover_defs.hpp -forward -TableViewHandoverPatch -deallocate -__to_raw_pointer > > -__destroy > > -destroy > > -~__vector_base -~QueryHandoverPatch -~LinkViewHandoverPatch -~TableViewHandoverPatch -get_column_base +~PrefixLogger +core/include/realm/util/logger.hpp +~ThreadSafeLogger +~Mutex +core/include/realm/util/thread.hpp +~StreamLogger +~StderrLogger __unwrap_iter __unwrap_iter __copy @@ -404,242 +537,126 @@ core/include/realm/impl/transact_log.hpp ~ChangesetInputStream core/include/realm/impl/input_stream.hpp ~NoCopyInputStream +do_discard_child_accessors +core/include/realm/column.hpp +bump_link_origin_table_version mark adj_acc_clear_root_table adj_acc_swap_rows adj_acc_move_over adj_acc_erase_row adj_acc_insert_rows -core/include/realm/array_binary.hpp -core/include/realm/column_binary.hpp -set_search_index_ref -get_search_index -destroy_search_index -create_search_index -has_search_index -~BinaryColumn -~ColumnBaseSimple -set_null -is_null -core/include/realm/binary_data.hpp -core/include/realm/array_blobs_big.hpp -get_context_flag_from_header -get_size_from_header -get_data_from_header -core/include/realm/array_blob.hpp -to_size_t -core/include/realm/utilities.hpp -legacy_array_type -BinaryData -is_nullable -core/include/realm/string_data.hpp -set_string -is_in_sync -core/include/realm/views.hpp -sync_if_needed -core/include/realm/link_view.hpp -get_target_table -core/include/realm/column_linkbase.hpp -do_discard_child_accessors -core/include/realm/column_linklist.hpp -bump_link_origin_table_version -core/include/realm/util/bind_ptr.hpp -core/include/realm/table.hpp -discard_subtable_accessor -get_subtable_accessor -set_search_index_allow_duplicate_values -GetWidthType -calc_item_count -~ArrayBlob -get_child_ref -update_child_ref -~FileFormatUpgradeRequired -core/include/realm/exceptions.hpp -~DescriptorMismatch -~CrossTableLinkTarget -~TableNameInUse -~NoSuchTable -overflow -core/include/realm/util/file.hpp -sync -int_less_than -min -int_less_than -int_cast_has_overflow -int_cast_with_overflow_detect -seekpos -move, std::__1::default_delete > > &> -move, std::__1::default_delete > > &> -move -operator!= -operator== -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/thread -is_for_current_thread -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.hpp -move -move &> -__move_assign_alloc -__move_assign -move &> -__cap -move &> -max > -max -__allocate -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/new -min > -min -__to_raw_pointer -__destroy -destroy -__construct_range_forward -__construct_at_end -__unwrap_iter -__copy -copy -__advance -advance -__distance -distance -assign -__copy_assign_alloc -move &> -move -swap -bind_ptr -move -move &> -move_assign -BasicTableRef -move -wants_background_updates -move -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/exception -get_coordinator -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.hpp -~Callback -move &> -operator++ -~SortOrder -__to_raw_pointer -__destroy -destroy -__atomic_base -atomic -exception_ptr -get_shared_group -forward *> -init_from_ref -~CreateHandler -create -create_array -create_leaf -CreateHandler -forward -forward -Sorter -forward -__vector_base_common -move > &> -default_delete -forward > -operator= > -forward -move -Array -get_is_inner_bptree_node_from_header -create_root_from_mem +discard_subtable_accessor +get_subtable_accessor +update_from_parent +core/include/realm/array_binary.hpp +core/include/realm/column_binary.hpp +set_ndx_in_parent +core/include/realm/array.hpp +get_ndx_in_parent +set_parent +is_attached +detach +clone_deep MemRef +core/include/realm/alloc.hpp +get_mem +get_ref +get_alloc +set_search_index_allow_duplicate_values +set_search_index_ref +get_search_index +destroy_search_index +create_search_index +has_search_index +get_index_data +~BinaryColumn +~ColumnBase +~ColumnBaseSimple +free_ +get_header_from_data +destroy_deep +move_last_row_over +erase_rows +insert_rows +set_null +is_null +core/include/realm/binary_data.hpp +~MemRef +~pair +core/include/realm/array_blobs_big.hpp +get_context_flag_from_header +get_size_from_header +get_data_from_header +core/include/realm/array_blob.hpp translate -create_root_from_ref -get_parent -get_ref_from_parent -init_from_parent -refresh_accessor_tree -insert -populate_search_index -StringIndex -~UpdateHandler -update -UpdateHandler -move -set +to_size_t +core/include/realm/utilities.hpp core/include/realm/array_integer.hpp -swap_rows_without_updating_index -StringData -to_str -insert -erase +legacy_array_type ~basic_stringstream -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iosfwd -forward +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iosfwd inspect_all, std::__1::allocator > > +core/include/realm/util/inspect.hpp inspect_all, std::__1::allocator >, unsigned long> inspect_value, std::__1::allocator >, unsigned long> inspect_all, std::__1::allocator >, unsigned long, unsigned long> -operator<< > -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ostream length -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/string setstate -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ios +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ios failed widen -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__locale +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__locale use_facet > fill flags rdbuf ostreambuf_iterator width -basic_string sputn -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/streambuf +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/streambuf __pad_and_output > -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/locale +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/locale __put_character_sequence > sputc max > max -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/sstream -to_char_type +overflow +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/sstream eq -not_eof -eq_int_type pbackfail to_int_type egptr underflow -operator long long +seekpos eback gptr fpos seekoff ~basic_stringbuf -pbump __get_long_cap setg __get_short_size __get_long_size addressof -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__functional_base -pointer_to __get_short_pointer __get_long_pointer __is_long __get_pointer __to_raw_pointer str -__zero basic_stringbuf basic_ostream -eof init basic_istream -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/istream +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/istream basic_iostream ios_base basic_ios +_ZTv0_n12_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev +_ZTv0_n12_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev +_ZThn8_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev +_ZThn8_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev _ZTv0_n12_NSt3__113basic_ostreamIcNS_11char_traitsIcEEED0Ev _ZTv0_n12_NSt3__113basic_ostreamIcNS_11char_traitsIcEEED1Ev _ZTv0_n12_NSt3__113basic_istreamIcNS_11char_traitsIcEEED0Ev @@ -650,6 +667,440 @@ _ZThn8_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev _ZThn8_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev basic_stringstream terminate +core/include/realm/util/terminate.hpp +BinaryData +is_nullable +core/include/realm/string_data.hpp +~LogicError +core/include/realm/exceptions.hpp +LogicError +set_string +GetWidthType +calc_item_count +~ArrayBlob +to_ref +get_as_ref +get_child_ref +update_child_ref +~FileFormatUpgradeRequired +~DescriptorMismatch +~CrossTableLinkTarget +~TableNameInUse +~NoSuchTable +pbump +to_char_type +eq_int_type +not_eof +eof +core/include/realm/util/file.hpp +sync +operator long long +int_less_than +min +int_less_than +int_cast_has_overflow +int_cast_with_overflow_detect +move &> +~AtomicSharedPtr +move &> +unlock +~LockGuard +__zero +move, std::__1::allocator >::__rep, std::__1::allocator > &> +move &> +do_log +lock +LockGuard +get_bptree_size +get_context_flag +is_inner_bptree_node +root_is_leaf +~ArrayWriterBase +core/include/realm/impl/array_writer.hpp +~ArrayParent +~Array +epptr +setp +pbase +pptr +flush +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/collection_notifications.cpp +NotificationToken +~NotificationToken +~Logger +transact_log_reserve +next_block +calc_byte_len +~OutputStream +core/include/realm/impl/output_stream.hpp +~ArrayIntNull +~Allocator +~Streambuf +Realm/ObjectStore/collection_notifications.cpp +_ZN5realm13BasicTableRefINS_5TableEED1Ev +_ZN5realm13BasicTableRefIKNS_5TableEED1Ev +_ZN5realm5_impl18CollectionNotifier10do_deliverERNS_11SharedGroupE +_ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev +_ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev +_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev +_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev +_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekposENS_4fposI11__mbstate_tEEj +_ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_ +_ZNSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEED1Ev +_ZNSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEED0Ev +_ZNKSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEE7__cloneEv +_ZNKSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEE7__cloneEPNS0_6__baseISE_EE +_ZNSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEE7destroyEv +_ZNSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEE18destroy_deallocateEv +_ZNSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEEclEOm +_ZNKSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEE6targetERKSt9type_info +_ZNKSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEE11target_typeEv +_ZNSt3__110__function6__funcIN5realm5_impl17DeepChangeCheckerENS_9allocatorIS4_EEFbmEED1Ev +_ZNSt3__110__function6__funcIN5realm5_impl17DeepChangeCheckerENS_9allocatorIS4_EEFbmEED0Ev +.str.10 +.str.11 +.str.12 +.str.15 +.str.16 +.str.17 +.str.18 +.str.19 +.str.20 +.str.21 +.str.22 +.str.23 +.str.24 +.str.25 +_ZTVNSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEEE +_ZTSNSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEEE +_ZTINSt3__110__function6__funcIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS3_21TransactionChangeInfoERKNS2_5TableEE3$_0NS_9allocatorISB_EEFbmEEE +_ZTSZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS0_21TransactionChangeInfoERKNS_5TableEE3$_0 +_ZTIZN5realm5_impl18CollectionNotifier24get_modification_checkerERKNS0_21TransactionChangeInfoERKNS_5TableEE3$_0 +get_val +core/include/realm/bptree.hpp +~SliceHandler +slice_leaf +SliceHandler +~DeepArrayDestroyGuard +core/include/realm/impl/destroy_guard.hpp +is_read_only +write +DeepArrayDestroyGuard +replace_root_array +get_root_array +clear_and_destroy_children +get_type +clear_without_updating_index +move_last_over +move_last_over_without_updating_index +update_ref +core/include/realm/index_string.hpp +~EraseHandler +replace_root_by_empty_leaf +unique_ptr > +replace_root_by_leaf +destroy_leaf +has_refs +erase_leaf_elem +EraseHandler +set_header_size +erase_without_updating_index +erase +do_erase +adjust +ensure_bptree_offsets +forward +inspect_value, std::__1::allocator >, int> +inspect_all, std::__1::allocator >, int> +inspect_all, std::__1::allocator >, unsigned long, int> +terminate +bptree_insert::LeafValueInserter> +leaf_insert +bptree_append::LeafValueInserter> +null_or_default_value +compare_values +function +forward +forward +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__bit_reference +__bit_reference +__make_ref +__bit_iterator +__fill_n_false > > +__fill_n_true > > +fill_n > > +__swap_allocator > +move +swap +move +swap +cend +__copy_unaligned >, true> +__to_raw_pointer +operator- +__copy_aligned >, true> +copy >, true> +__align_it +__copy_unaligned >, false> +__to_raw_pointer +min > +min +__copy_aligned >, false> +copy >, false> +__distance >, false, 0> > +distance >, false, 0> > +__construct_at_end >, false, 0> > +__cap +__external_cap_to_internal +forward > +allocator +allocator +__internal_cap_to_external +operator== +operator!= +unique_lock +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__mutex_base +operator!= +move +swap +__wrap_iter +__unwrap_iter +__move +move +operator- +operator- +__distance > +distance > +operator== +operator() +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:200:27)> +end > > +begin > > +store +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/atomic +~function +move +swap +move_if_noexcept +__construct_backward +forward &> +__push_back_slow_path +forward +Callback +Realm/ObjectStore/impl/collection_notifier.hpp +construct +__construct +~lock_guard +lock_guard +operator!= +forward +move +swap +move_if_noexcept +forward +construct +__construct +__construct_backward +__construct_at_end +forward &> +construct +__construct +__append +impl_get_row_ndx +core/include/realm/row.hpp +row_ndx +get_index +operator== +operator!= +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/array +operator== +operator() +operator!= +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:85:23)> +end > > +begin > > +core/include/realm/util/bind_ptr.hpp +core/include/realm/table_ref.hpp +move +swap +__construct_backward +forward &> +__push_back_slow_path +move +forward +construct +__construct +move +swap +move_if_noexcept +__construct_backward +forward &> +forward +__push_back_slow_path +move +forward +forward > +forward +move &> +RelatedTable +construct +__construct +operator() +any_of, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:50:38)> +target_type +target +forward +__invoke +__call +destroy_deallocate +get<0, const std::__1::allocator &> +__libcpp_compressed_pair_imp &, 0, 0> +move &> &> +__compressed_pair &> +__tuple_leaf &, void> +__tuple_impl<0, const std::__1::allocator &, const std::__1::allocator &> +forward &> +forward_as_tuple &> +__func +__clone +forward +construct +__construct +__construct_range_forward +__construct_at_end +select_on_container_copy_construction +DeepChangeChecker +get<0, const realm::_impl::DeepChangeChecker &> +__libcpp_compressed_pair_imp &&, 0, 0> +move &> +__compressed_pair &&> +__tuple_leaf +__tuple_impl<0, const realm::_impl::DeepChangeChecker &, const realm::_impl::DeepChangeChecker &> +forward +forward_as_tuple +allocator +~__func +~__libcpp_compressed_pair_imp +~__compressed_pair +forward > +forward +move &> +get<0, realm::_impl::DeepChangeChecker &&> +forward +get<0, std::__1::allocator &&> +forward &&> +__libcpp_compressed_pair_imp &&, 0, 0> +move &&> &> +move &> +__compressed_pair &&> +move &> +__tuple_leaf, void> +__tuple_impl<0, std::__1::allocator &&, std::__1::allocator > +tuple , false> +forward > +forward_as_tuple > +__tuple_leaf +__tuple_impl<0, realm::_impl::DeepChangeChecker &&, realm::_impl::DeepChangeChecker> +tuple +forward +forward_as_tuple +allocator, bool (unsigned long)> > +move +forward, bool (unsigned long)> > > > +forward, bool (unsigned long)> *> +move, bool (unsigned long)> > > &> +__allocator_destructor +__not_null +function +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/typeinfo +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &> +__invoke<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &, unsigned long> +__call<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &, unsigned long> +get<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> &> +__libcpp_compressed_pair_imp &, 0, 0> +move &> &> +__compressed_pair &> +__tuple_leaf &, void> +__tuple_impl<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> &, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> &> +forward &> +forward_as_tuple &> +get<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> &&> +forward &&> +get<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &> +__libcpp_compressed_pair_imp &&, 0, 0> +move &&> &> +move &> +__compressed_pair &&> +move &> +__tuple_leaf, void> +__tuple_impl<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> > +tuple , false> +forward > +forward_as_tuple > +__tuple_leaf +__tuple_impl<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &> +forward +forward_as_tuple +allocator, bool (unsigned long)> > +forward, bool (unsigned long)> > > > +forward, bool (unsigned long)> *> +move, bool (unsigned long)> > > &> +allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> +~__base +get<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &&> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &&> +__libcpp_compressed_pair_imp<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &&, 0> +move &> +move &> +__compressed_pair<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &&> +forward_as_tuple<> +__tuple_leaf<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16), void> +__tuple_impl<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &&, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> +tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16), false> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> +forward_as_tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> +__base +move<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16) &> +__not_null<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> +function<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:41:16)> +any_of, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:36:27)> +~enable_shared_from_this +unbind +~bind_ptr +~BasicTableRef +move > &> +move > &> +default_delete +forward > +operator= > +forward +move +Array +forward > +get_is_inner_bptree_node_from_header +create_root_from_mem +create_root_from_ref +get_parent +get_ref_from_parent +init_from_parent +refresh_accessor_tree +insert +populate_search_index +forward +move +StringIndex +~Column +~UpdateHandler +update +UpdateHandler +move +set +swap_rows_without_updating_index +StringData +to_str +insert +erase swap_rows ~SetNullHandler SetNullHandler @@ -658,136 +1109,122 @@ root_as_leaf null core/include/realm/null.hpp update_parent -get_header_from_data -destroy_deep -to_ref -get_as_ref +init_from_ref erase equal > equal safe_equal -to_str +to_str set -~LogicError -exception -LogicError -~pair -~MemRef -get_leaf -root_is_leaf -~ColumnBase -~StringIndex -~ColumnBaseWithIndex -forward > -move > &> -BpTreeBase -forward -move ~ArrayInteger -~ArrayParent +get_leaf ArrayParent ArrayInteger -BpTree -ColumnTemplateBase -ColumnTemplate -forward -ColumnBase -ColumnBaseWithIndex +~StringIndex +~ColumnBaseWithIndex +~BpTreeBase +~BpTree _ZThn8_NK5realm6ColumnIxE7is_nullEm -Column -RowIndexes -TableViewBase -forward -forward *> -__thread_id -get_id -SortOrder -get_sort -get_realm -mutex +atomic_thread_fence +fetch_sub unbind_ptr -unbind -~bind_ptr -__to_raw_pointer -__destroy -destroy -__to_raw_pointer -__destroy -destroy -~Sorter +core/include/realm/table.hpp +do_deliver +is_in_sync +core/include/realm/link_view.hpp +get_target_table +get_column_base +core/include/realm/column_linklist.hpp +core/include/realm/column_linkbase.hpp +__construct_range_forward +__construct_at_end +forward +__construct_range_forward > +__construct_at_end *> +forward > > +forward *> +Chunk +construct +__construct +__construct_range_forward +__construct_at_end +core/include/realm/group_shared.hpp +version +load +have_callbacks +operator() +max_element, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.cpp:249:28)> +move +get_coordinator +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.hpp +~Callback +move &> +__to_raw_pointer +__destroy +destroy +__to_raw_pointer +__destroy +destroy +__atomic_base +atomic +exception_ptr +get_shared_group +move &> +mutex +BasicRowExpr +BasicRowExpr +is_null_link +bind_ptr move &> -move -swap -move &> -back -get_bptree_size -get_context_flag -is_inner_bptree_node +BasicTableRef +get_link_target +get_column_count +core/include/realm/spec.hpp +get_column_type +get_public_column_count +has_parent +__to_raw_pointer +__destroy +destroy +~RelatedTable +__to_raw_pointer +__destroy +destroy +~DeepChangeChecker +core/include/realm/views.hpp ~RowIndexes -__deallocate __to_raw_pointer +~weak_ptr +~list_entry __destroy destroy -~ArrayWriterBase -core/include/realm/impl/array_writer.hpp -epptr -setp -pbase -pptr -flush _ZThn36_NK5realm14LinkListColumn13get_child_refEm _ZThn36_N5realm14LinkListColumn16update_child_refEmm _ZThn8_NK5realm14LinkListColumn7is_nullEm -detatch +_ZThn8_NK5realm6ColumnIxE7get_valEm attach_to next_callback call_callbacks deliver prepare_handover -run +add_required_change_info +set_table +lock_target is_alive -release_query unregister remove_callback add_callback -~AsyncQuery -AsyncQuery -~ConstTableView -~TableView -transact_log_reserve -next_block +~CollectionNotifier +CollectionNotifier +check_row +check_outgoing_links +find_related_tables +get_modification_checker ~LinkView _ZThn36_N5realm14LinkListColumnD0Ev ~LinkListColumn _ZThn36_N5realm14LinkListColumnD1Ev ~LinkColumnBase -calc_byte_len -~OutputStream -core/include/realm/impl/output_stream.hpp -~ArrayIntNull -~Allocator -~Streambuf -_ZZN5realm5_impl11CachedRealmC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_08__invokeEPv -_ZZN5realm5_impl11CachedRealmC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_18__invokeEPKv -_ZZN5realm5_impl11CachedRealmC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_28__invokeEPKv -weak_ptr -move &> -Realm/ObjectStore/impl/cached_realm_base.hpp -weak_ptr -CachedRealmBase -move -~CachedRealmBase -~weak_ptr -~RefCountedWeakPointer -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/cached_realm.cpp -__invoke -operator void (*)(const void *) -fetch_add -operator const void *(*)(const void *) -operator void (*)(void *) -notify -~CachedRealm -CachedRealm _ZNSt3__119basic_ostringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev _ZN12_GLOBAL__N_19notify_fdEi _ZTv0_n12_NSt3__119basic_ostringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev @@ -800,66 +1237,63 @@ _ZNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommit _ZNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEE9__executeEv _ZNSt3__112__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS2_16RealmCoordinatorEE3$_0JEEclEv _ZNSt3__114__thread_proxyINS_5tupleIJMNS_19__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS5_16RealmCoordinatorEE3$_0JEEEEEFvvEPSB_EEEEEPvSG_ -.str.5 -.str.6 -.str.7 __func__._ZN5realm5_impl20ExternalCommitHelper6listenEv __func__._ZN12_GLOBAL__N_19notify_fdEi _ZTVNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEEE _ZTSNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEEE _ZTINSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEEE -forward > *> -move > *&> +.str.13 +forward > *> +move > *&> __execute -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/future +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/future ~__deferred_assoc_state __set_deferred __deferred_assoc_state -__make_deferred_assoc_state > -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), void> -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/tuple -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), false> +__make_deferred_assoc_state > +__tuple_leaf<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), void> +__tuple_impl<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> +tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), false> __async_func -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -__decay_copy<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -get<1, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> -get<0, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> -move >::*&)()> -__invoke >::*)(), std::__1::__async_assoc_state > *, void> -__thread_execute >::*)(), std::__1::__async_assoc_state > *, 1> -__thread_proxy >::*)(), std::__1::__async_assoc_state > *> > -forward >::*)(), std::__1::__async_assoc_state > *> *> -move >::*)(), std::__1::__async_assoc_state > *> *&> -__tuple_leaf > *, void> -__tuple_leaf >::*)(), void> -__tuple_impl<0, 1, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> -tuple >::*)(), std::__1::__async_assoc_state > *, false> -__decay_copy > *> -forward >::*)()> -__decay_copy >::*)()> -thread >::*)(), std::__1::__async_assoc_state > *, void> -forward > *> -move > *&> -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47) &> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> +__decay_copy<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> +get<1, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> +get<0, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> +move >::*&)()> +__invoke >::*)(), std::__1::__async_assoc_state > *, void> +__thread_execute >::*)(), std::__1::__async_assoc_state > *, 1> +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/thread +__thread_proxy >::*)(), std::__1::__async_assoc_state > *> > +forward >::*)(), std::__1::__async_assoc_state > *> *> +move >::*)(), std::__1::__async_assoc_state > *> *&> +__tuple_leaf > *, void> +__tuple_leaf >::*)(), void> +__tuple_impl<0, 1, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> +tuple >::*)(), std::__1::__async_assoc_state > *, false> +__decay_copy > *> +forward >::*)()> +__decay_copy >::*)()> +thread >::*)(), std::__1::__async_assoc_state > *, void> +forward > *> +move > *&> +get<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> +move<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47) &> name -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/typeinfo -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp +__invoke<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> __execute<> __on_zero_shared ~__async_assoc_state ~__assoc_sub_state -move &> +move &> condition_variable __shared_count __assoc_sub_state __async_assoc_state -forward > -__make_async_assoc_state > +forward > +__make_async_assoc_state > __does_policy_contain -async<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> +async<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> move &> shrink_to_fit assign @@ -877,9 +1311,6 @@ __loadword __do_string_hash basic_ostringstream c_str -forward > -get_allocator -operator+, std::__1::allocator > wait notify_fd ~FdHolder @@ -898,45 +1329,354 @@ listen ~ExternalCommitHelper ExternalCommitHelper close -operator+= -operator+ -__push_back_slow_path > -__construct_forward > -__construct_backward > -move *&> -swap *> +_ZN12_GLOBAL__N_125ChunkedRangeVectorBuilderC1ERKN5realm5_impl18ChunkedRangeVectorE +_ZN12_GLOBAL__N_125ChunkedRangeVectorBuilder8finalizeEv +_ZN12_GLOBAL__N_125ChunkedRangeVectorBuilder9push_backENSt3__14pairImmEE +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/index_set.cpp +next > > +shift +__unwrap_iter > +__unwrap_iter > > +__copy >, std::__1::back_insert_iterator<(anonymous namespace)::ChunkedRangeVectorBuilder> > +copy >, std::__1::back_insert_iterator<(anonymous namespace)::ChunkedRangeVectorBuilder> > +addressof<(anonymous namespace)::ChunkedRangeVectorBuilder> +back_insert_iterator +back_inserter<(anonymous namespace)::ChunkedRangeVectorBuilder> +operator(), unsigned long> +__lower_bound<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/index_set.cpp:340:35) &, std::__1::__wrap_iter *>, unsigned long> +lower_bound *>, unsigned long, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/index_set.cpp:340:35)> +operator() +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/index_set.cpp:331:28)> +operator== +operator== > > +operator!= > > +operator- +operator- *, const std::__1::pair *> +operator== *, std::__1::pair *> +operator!= *> +pair +construct> +__construct> +forward &> +construct, std::__1::pair &> +__construct, std::__1::pair &> +__construct_range_forward *>, std::__1::pair *> +__construct_at_end *> > +__unwrap_iter *> > +__copy *>, std::__1::pair *> +copy *>, std::__1::pair *> +__advance *> > +advance *> > +operator- *, std::__1::pair *> +__distance *> > +distance *> > +assign *> > +__wrap_iter +__construct_forward move_iterator +operator!= +__construct_at_end > +__move +move +__move_backward +move_backward +operator- +__wrap_iter *> +__construct_forward > operator!= *, std::__1::pair *> __construct_at_end *> > -forward > &> -forward *> +__move *, std::__1::pair *> +move *, std::__1::pair *> +addressof > __move_backward *, std::__1::pair *> move_backward *, std::__1::pair *> -__move_range forward > construct, std::__1::pair > __construct, std::__1::pair > operator- *, std::__1::pair *> -__wrap_iter *> +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/initializer_list +__construct_range_forward *, std::__1::pair *> +__construct_at_end *> +__push_back_slow_path +move *&> +swap *> +__construct_backward > +forward > &> +__push_back_slow_path &> +forward &> +construct, const std::__1::pair &> +__construct, const std::__1::pair &> +pair +pair +pair +IndexIterator +__unwrap_iter __unwrap_iter *> -move &> -__move *, std::__1::pair *> -move *, std::__1::pair *> -__to_raw_pointer > -__destroy > -destroy > -operator- *, const std::__1::pair *> -operator== *, std::__1::pair *> -operator!= *> +operator= &, void> +__copy *, std::__1::pair *> +copy *, std::__1::pair *> +__advance *> +advance *> +__distance *> +distance *> +assign *> +__copy_assign_alloc +__copy +copy +__advance +advance +__distance +distance +assign pair -forward -pair -add_shifted -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/index_set.cpp -insert_at +~ChunkedRangeVectorBuilder +move > &> +finalize +move +swap +move +move_if_noexcept +forward +move > &> +construct +__construct +__construct_backward +forward &> +construct +__construct +operator== +operator!= +ChunkedRangeVectorBuilder +IndexIteratableAdaptor +as_indexes +get +get<1, unsigned long, unsigned long> +get<0, unsigned long, unsigned long> +pair &, void> +move &> do_add -find +unshift +do_remove +erase_or_unshift +erase_at +shift_for_insert_at +insert_at +add_shifted_by +add_shifted +count +contains +ensure_space Realm/ObjectStore/index_set.cpp +_ZN5realm27InvalidTransactionExceptionD1Ev +_ZN5realm5Array16update_child_refEmm +_ZNK5realm5Array13get_child_refEm +_ZNK5realm5Array12GetWidthTypeEv +_ZN5realm27InvalidTransactionExceptionD0Ev +_ZN5realm12ArrayIntegerD1Ev +_ZN5realm12ArrayIntegerD0Ev +_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl12ListNotifierENS_9allocatorIS3_EEED1Ev +_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl12ListNotifierENS_9allocatorIS3_EEED0Ev +.str.14 +shared_ptr +move &> +operator= +forward &> +forward &> +__enable_weak_this +addressof > > +allocator +__on_zero_shared_weak +~__shared_ptr_emplace +~Handover +~ListNotifier +Realm/ObjectStore/impl/list_notifier.hpp +get<1, std::__1::shared_ptr &, std::__1::shared_ptr &> +get<0, std::__1::shared_ptr &, std::__1::shared_ptr &> +get<0, std::__1::allocator &> +__libcpp_compressed_pair_imp &, std::__1::shared_ptr &, std::__1::shared_ptr &, 0, 0, 1> +move &, std::__1::shared_ptr &> &> +move &> &> +__compressed_pair &, std::__1::shared_ptr &, std::__1::shared_ptr &> +__tuple_leaf &, void> +__tuple_leaf &, void> +__tuple_impl<0, 1, std::__1::shared_ptr &, std::__1::shared_ptr &, std::__1::shared_ptr &, std::__1::shared_ptr &> +forward_as_tuple &, std::__1::shared_ptr &> +__tuple_leaf &, void> +__tuple_impl<0, std::__1::allocator &, std::__1::allocator &> +forward &> +forward_as_tuple &> +__shared_weak_count +__shared_ptr_emplace &, std::__1::shared_ptr &> +allocator > > +forward > > > > +forward > *> +move > > > &> +make_shared &, std::__1::shared_ptr &> +make_shared &, std::__1::shared_ptr &> +table +get_table +impl_get_table +apply_and_consume_patch +core/include/realm/table_view.hpp +clone_for_handover +TableViewBase +clone +~TableViewBase +apply_patch +ConstTableView +TableView +forward +forward > *> +forward +QueryHandoverPatch +core/include/realm/handover_defs.hpp +forward +forward +TableViewHandoverPatch +~RowBaseHandoverPatch +__to_raw_pointer > > +__destroy > > +destroy > > +~QueryHandoverPatch +~LinkViewHandoverPatch +~TableViewHandoverPatch +get_hasrefs_from_header +~DeepArrayRefDestroyGuard +__destroy +destroy +move +swap +__construct_backward +forward &> +forward +__push_back_slow_path +move +__to_raw_pointer +forward +construct +__construct +register_view +DeepArrayRefDestroyGuard +OptionalStorage +core/include/realm/util/optional.hpp +Optional +__construct_range_forward +__construct_at_end +forward > +forward +__construct_range_forward +__construct_at_end +forward > +forward +__distance >, true, 0> > +distance >, true, 0> > +__construct_at_end >, true, 0> > +Sorter +move +__construct_range_forward +__construct_at_end +move > &> +RowBase +BasicRow +fetch_add +bind_ptr +bind +BasicTableRef +BpTreeBase +BpTree +ColumnTemplateBase +ColumnTemplate +forward +ColumnBase +ColumnBaseWithIndex +Column +RowIndexes +OptionalStorage +move +~OptionalStorage +~Optional +core/include/realm/column_fwd.hpp +~SortOrder +Realm/ObjectStore/results.hpp +forward +move &> +SortOrder +move +find_first +find_first +~InvalidTransactionException +Realm/ObjectStore/shared_realm.hpp +InvalidTransactionException +get_origin_row_index +where +move &> +~RowBase +~BasicRow +__to_raw_pointer +__destroy +destroy +__to_raw_pointer +__destroy +destroy +~Sorter +move +swap +move &> +add_notification_callback +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/list.cpp +filter +sort +delete_all +remove_all +get_unchecked +verify_in_transaction +verify_attached +is_valid +verify_valid_row +get_query +List +~List +~ConstTableView +~TableView +Realm/ObjectStore/list.cpp +_ZN5realm5_impl12ListNotifierD1Ev +_ZN5realm5_impl12ListNotifierD0Ev +__destroy +destroy +move +swap +__construct_backward +forward &> +forward +__push_back_slow_path +move +__to_raw_pointer +forward +construct +__construct +move +swap +forward > > +operator== +move, std::__1::equal_to, true> > &> +move, std::__1::hash, true> > &> +move, void *> *>, std::__1::allocator, void *> > > &> +move, void *> *> > &> +forward, void *> *> > > +move, void *> *[], std::__1::__bucket_list_deallocator, void *> *> > > &> +add_changes +move, std::__1::default_delete > > &> +get_realm +get_origin_table +forward *> +do_prepare_handover +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/list_notifier.cpp +run +do_add_required_change_info +do_detach_from +do_attach_to +release_data +ListNotifier _ZN5realm26InvalidPrimaryKeyExceptionD1Ev _ZN5realm26InvalidPrimaryKeyExceptionD0Ev _ZNK5realm20ObjectStoreException4whatEv @@ -958,7 +1698,6 @@ construct __construct __construct_backward forward &> -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/initializer_list forward construct __construct @@ -966,7 +1705,6 @@ __construct_range_forward __construct_at_end forward StringData, std::__1::allocator > -move, std::__1::allocator >::__rep, std::__1::allocator > &> Realm/ObjectStore/object_store.hpp ~InvalidPrimaryKeyException ~ObjectSchemaValidationException @@ -976,36 +1714,71 @@ Realm/ObjectStore/object_schema.hpp ~Property move get_name -bind_ptr -BasicTableRef -get_link_target -get_column_type core/include/realm/array_string.hpp -get_column_count -core/include/realm/spec.hpp get_column_name -get_public_column_count -has_parent -move &> __to_raw_pointer __destroy destroy set_primary_key_property -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/object_schema.cpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/object_schema.cpp property_for_name ObjectSchema ~ObjectSchema Realm/ObjectStore/object_schema.cpp +_ZNK5realm13TableViewBase4sizeEv +_ZN5realm13TableViewBaseD2Ev +_ZN5realm41PropertyRenameMissingNewPropertyExceptionD1Ev _ZN5realm23SchemaMismatchExceptionD1Ev _ZN5realm24MissingPropertyExceptionD1Ev _ZN5realm29MismatchedPropertiesExceptionD1Ev _ZN5realm26ChangedPrimaryKeyExceptionD1Ev _ZN5realm22ExtraPropertyExceptionD1Ev +_ZL20copy_property_valuesRKN5realm8PropertyES2_RNS_5TableE _ZN5realm29InvalidSchemaVersionExceptionD1Ev _ZN5realm33PropertyTypeNotIndexableExceptionD1Ev _ZN5realm33DuplicatePrimaryKeyValueExceptionD1Ev +_ZN5realm43PropertyRenameMissingNewObjectTypeExceptionD1Ev +_ZN5realm41PropertyRenameMissingOldPropertyExceptionD1Ev +_ZN5realm35PropertyRenameTypeMismatchExceptionD1Ev +_ZN5realm37PropertyRenameOldStillExistsExceptionD1Ev +_ZNK5realm8Property11type_stringEv _ZN5realm29ObjectSchemaPropertyExceptionC2ERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_8PropertyE _ZN5realm31ObjectSchemaValidationExceptionC2ERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE +_ZN5realm10ColumnBase39set_search_index_allow_duplicate_valuesEb +_ZNK5realm10ColumnBase21get_subtable_accessorEm +_ZN5realm10ColumnBase25discard_subtable_accessorEm +_ZN5realm10ColumnBase19adj_acc_insert_rowsEmm +_ZN5realm10ColumnBase17adj_acc_erase_rowEm +_ZN5realm10ColumnBase17adj_acc_move_overEmm +_ZN5realm10ColumnBase17adj_acc_swap_rowsEmm +_ZN5realm10ColumnBase24adj_acc_clear_root_tableEv +_ZN5realm10ColumnBase4markEi +_ZN5realm10ColumnBase30bump_link_origin_table_versionEv +_ZN5realm10ColumnBase26do_discard_child_accessorsEv +_ZNK5realm19ColumnBaseWithIndex16has_search_indexEv +_ZNK5realm19ColumnBaseWithIndex16get_search_indexEv +_ZN5realm19ColumnBaseWithIndex16get_search_indexEv +_ZN5realm6ColumnIxE18replace_root_arrayENSt3__110unique_ptrINS_5ArrayENS2_14default_deleteIS4_EEEE +_ZNK5realm6ColumnIxE7get_valEm +_ZNK5realm14ColumnTemplateIxE14compare_valuesEmm +_ZNK5realm13TableViewBase15get_column_baseEm +_ZN5realm13TableViewBaseD1Ev +_ZN5realm13TableViewBaseD0Ev +_ZNK5realm13TableViewBase5cloneEv +_ZNK5realm13TableViewBase18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_18ConstSourcePayloadE +_ZN5realm13TableViewBase18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_20MutableSourcePayloadE +_ZN5realm13TableViewBase23apply_and_consume_patchERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEERNS_5GroupE +_ZN5realm23PropertyRenameExceptionD1Ev +_ZN5realm23PropertyRenameExceptionD0Ev +_ZN5realm40PropertyRenameMissingObjectTypeExceptionD1Ev +_ZN5realm40PropertyRenameMissingObjectTypeExceptionD0Ev +_ZN5realm43PropertyRenameMissingOldObjectTypeExceptionD1Ev +_ZN5realm43PropertyRenameMissingOldObjectTypeExceptionD0Ev +_ZN5realm43PropertyRenameMissingNewObjectTypeExceptionD0Ev +_ZN5realm41PropertyRenameMissingOldPropertyExceptionD0Ev +_ZN5realm41PropertyRenameMissingNewPropertyExceptionD0Ev +_ZN5realm37PropertyRenameOldStillExistsExceptionD0Ev +_ZN5realm35PropertyRenameTypeMismatchExceptionD0Ev _ZN5realm29InvalidSchemaVersionExceptionD0Ev _ZN5realm33DuplicatePrimaryKeyValueExceptionD0Ev _ZN5realm25SchemaValidationExceptionD1Ev @@ -1022,18 +1795,57 @@ _ZN5realm29MismatchedPropertiesExceptionD0Ev _ZN5realm26ChangedPrimaryKeyExceptionD0Ev _ZN5realm29DuplicatePrimaryKeysExceptionD1Ev _ZN5realm29DuplicatePrimaryKeysExceptionD0Ev +_ZN5realm38InvalidLinkingObjectsPropertyExceptionD1Ev +_ZN5realm38InvalidLinkingObjectsPropertyExceptionD0Ev +_ZN5realm10RowIndexesD1Ev +_ZN5realm10RowIndexesD0Ev +_ZNK5realm10RowIndexes10is_in_syncEv +_ZN5realm10LogicErrorD1Ev _ZN5realm31ObjectSchemaValidationExceptionC2ERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9_ _ZN5realm29ObjectSchemaPropertyExceptionD1Ev _ZN5realm29ObjectSchemaPropertyExceptionD0Ev +_ZN5realm13TableViewBaseC2ERKS0_ +_ZN5realm19ColumnBaseWithIndexD2Ev +_ZN5realm5_impl17NullableOrNothingINS_12ArrayIntegerEE8set_nullERS2_m +_ZN5realm6BpTreeIxE14SetNullHandlerD1Ev +_ZN5realm6BpTreeIxE14SetNullHandler6updateENS_6MemRefEPNS_11ArrayParentEmm +_ZN5realm6BpTreeIxE14SetNullHandlerD0Ev +_ZN5realm6BpTreeIxE13UpdateHandlerD1Ev +_ZN5realm6BpTreeIxE13UpdateHandler6updateENS_6MemRefEPNS_11ArrayParentEmm +_ZN5realm6BpTreeIxE13UpdateHandlerD0Ev +_ZN5realm8BasicRowIKNS_5TableEEC2ERKS3_ _ZN5realm18QueryHandoverPatchD2Ev +_ZN5realm4util8bind_ptrINS_5TableEED2Ev +_ZN5realm10BpTreeBase7destroyEv +_ZN5realm6BpTreeIxE17LeafValueInserter11leaf_insertENS_6MemRefERNS_11ArrayParentEmRNS_9AllocatorEmRNS_5Array10TreeInsertIS2_EE +_ZN5realm6BpTreeIxE12EraseHandlerD1Ev +_ZN5realm6BpTreeIxE12EraseHandler15erase_leaf_elemENS_6MemRefEPNS_11ArrayParentEmm +_ZN5realm6BpTreeIxE12EraseHandler12destroy_leafENS_6MemRefE +_ZN5realm6BpTreeIxE12EraseHandler20replace_root_by_leafENS_6MemRefE +_ZN5realm6BpTreeIxE12EraseHandler26replace_root_by_empty_leafEv +_ZN5realm6BpTreeIxE12EraseHandlerD0Ev +_ZN5realm6BpTreeIxE12SliceHandler10slice_leafENS_6MemRefEmmRNS_9AllocatorE _ZN12_GLOBAL__N_1L21c_object_table_prefixE +.str.26 +.str.27 +.str.28 +.str.29 +.str.30 +.str.31 +.str.32 +.str.33 +.str.34 .str.35 .str.36 .str.37 .str.38 .str.39 +.str.40 .str.41 .str.42 +.str.43 +.str.44 +.str.45 .str.46 .str.47 .str.48 @@ -1041,19 +1853,37 @@ _ZN12_GLOBAL__N_1L21c_object_table_prefixE .str.50 .str.51 .str.52 +.str.53 +.str.54 +.str.55 +.str.56 +.str.57 +.str.58 +.str.59 +.str.60 +.str.61 .str.64 +.str.65 .str.66 .str.67 .str.68 .str.69 .str.70 -.str.71 .str.72 +.str.73 +.str.74 +.str.75 +.str.76 .str.77 .str.78 +.str.79 +.str.80 .str.81 .str.82 .str.83 +.str.84 +.str.85 +.str.86 .str.87 .str.88 .str.89 @@ -1061,18 +1891,30 @@ _ZN12_GLOBAL__N_1L21c_object_table_prefixE .str.91 .str.92 .str.93 -.str.94 -.str.95 -.str.100 +.str.98 .str.101 .str.102 .str.103 -.str.104 -.str.105 -.str.106 .str.107 .str.108 +.str.109 +.str.110 +.str.111 +.str.112 +.str.113 +.str.114 +.str.115 +.str.120 +.str.121 +.str.122 +.str.123 +.str.124 +.str.125 +.str.126 +.str.127 +.str.128 switch.table +~InvalidLinkingObjectsPropertyException ~DuplicatePrimaryKeysException ~ChangedPrimaryKeyException ~MismatchedPropertiesException @@ -1085,12 +1927,20 @@ switch.table ~SchemaValidationException ~DuplicatePrimaryKeyValueException ~InvalidSchemaVersionException +~PropertyRenameTypeMismatchException +~PropertyRenameOldStillExistsException +~PropertyRenameMissingNewPropertyException +~PropertyRenameMissingOldPropertyException +~PropertyRenameMissingNewObjectTypeException +~PropertyRenameMissingOldObjectTypeException +~PropertyRenameMissingObjectTypeException +~PropertyRenameException operator== operator!= __construct_range_forward __construct_at_end forward > -append +operator== forward construct __construct @@ -1101,7 +1951,6 @@ swap move move_if_noexcept forward -forward construct __construct __construct_range_forward @@ -1112,7 +1961,6 @@ __construct __construct_backward forward &> __emplace_back_slow_path &> -forward &> forward construct &> __construct &> @@ -1121,6 +1969,20 @@ forward forward end operator!= +operator==, realm::Property> *, std::__1::pair, realm::Property> *> +operator!=, realm::Property> *> +forward, realm::Property> > > +move, realm::Property> > &> +move, realm::Property> *&> +swap, realm::Property> *> +move_if_noexcept, realm::Property> > +__construct_backward, realm::Property> *> +forward, realm::Property> > &> +__push_back_slow_path, realm::Property> > +move, realm::Property> &> +forward, realm::Property> > +construct, realm::Property>, std::__1::pair, realm::Property> > +__construct, realm::Property>, std::__1::pair, realm::Property> > operator== operator!= move @@ -1132,6 +1994,7 @@ forward construct __construct forward +forward, realm::Property> *> __emplace_back_slow_path forward construct @@ -1152,8 +2015,6 @@ forward construct __construct emplace_back -operator== -operator!= __wrap_iter __construct_forward __construct_at_end > @@ -1190,29 +2051,43 @@ construct emplace_back operator== -operator== -operator!= forward +operator== +operator!= +operator!= +compare +operator== > operator!=, std::__1::allocator > +append ~ObjectSchemaPropertyException string_for_property_type ObjectSchemaPropertyException +type_string ~MigrationException MigrationException is_empty do_get_table core/include/realm/group.hpp -get_table requires_index +get_table_name __to_raw_pointer __destroy destroy -get_table_name +~Schema +Realm/ObjectStore/schema.hpp +move, realm::Property>, std::__1::allocator, realm::Property> > > &> +__to_raw_pointer, realm::Property> > +__destroy, realm::Property> > +destroy, realm::Property> > __to_raw_pointer __destroy destroy -copy_property_values -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/object_store.cpp +pair &, realm::Property &, void> +forward +forward &> +make_pair &, realm::Property &> +copy_property_values +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/object_store.cpp copy_property_values copy_property_values copy_property_values @@ -1220,8 +2095,6 @@ copy_property_values copy_property_values copy_property_values copy_property_values -compare -operator== > property_can_be_migrated_to_nullable property_has_changed __to_raw_pointer @@ -1229,10 +2102,9 @@ __destroy destroy substr begins_with -remove add_empty_row -bind get_or_add_table +InvalidLinkingObjectsPropertyException DuplicatePrimaryKeysException InvalidPrimaryKeyException ChangedPrimaryKeyException @@ -1246,6 +2118,15 @@ SchemaMismatchException SchemaValidationException DuplicatePrimaryKeyValueException InvalidSchemaVersionException +PropertyRenameTypeMismatchException +PropertyRenameOldStillExistsException +PropertyRenameMissingNewPropertyException +PropertyRenameMissingOldPropertyException +PropertyRenameMissingNewObjectTypeException +PropertyRenameMissingOldObjectTypeException +PropertyRenameMissingObjectTypeException +PropertyRenameException +rename_property delete_data_for_object validate_primary_column_uniqueness update_indexes @@ -1253,9 +2134,11 @@ schema_from_group update_realm_with_schema needs_update is_schema_at_version +remove_properties create_tables verify_object_schema verify_schema +verify_missing_renamed_properties table_for_object_type_create_if_needed table_for_object_type table_name_for_object_type @@ -1267,128 +2150,129 @@ get_schema_version create_metadata_tables has_metadata_tables Realm/ObjectStore/object_store.cpp -_ZN5realm5_impl20ChangesetInputStream10next_blockERPKcS4_ _ZNSt3__113unordered_mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_8weak_ptrIN5realm5_impl16RealmCoordinatorEEENS_4hashIS6_EENS_8equal_toIS6_EENS4_INS_4pairIKS6_SB_EEEEED1Ev _ZN5realm18RealmFileExceptionD1Ev _ZN5realm25MismatchedConfigExceptionD1Ev -_ZNK5realm5_impl15CachedRealmBase28is_cached_for_current_threadEv -_ZN5realm5_impl20ChangesetInputStreamD1Ev -_ZN5realm5_impl20ChangesetInputStreamD0Ev +_ZNK5realm5_impl21WeakRealmNotifierBase28is_cached_for_current_threadEv +_ZN12_GLOBAL__N_121IncrementalChangeInfoC1ERN5realm11SharedGroupERNSt3__16vectorINS4_10shared_ptrINS1_5_impl18CollectionNotifierEEENS4_9allocatorIS9_EEEE +_ZN12_GLOBAL__N_121IncrementalChangeInfo16advance_to_finalEN5realm11SharedGroup9VersionIDE _ZN5realm18RealmFileExceptionD0Ev _ZN5realm25MismatchedConfigExceptionD0Ev -_ZN5realm11SharedGroup15do_advance_readINS_5_impl23NullInstructionObserverEEEbPT_NS0_9VersionIDERNS2_7HistoryE -_ZN5realm5_impl17TransactLogParser10read_mixedEPNS_5MixedE -_ZN5realm4util6BufferImE7reserveEmm -_ZN5realm5_impl17TransactLogParser14BadTransactLogD1Ev -_ZN5realm4util6BufferImE6resizeEmmmm -_ZN5realm5_impl17TransactLogParser14BadTransactLogD0Ev -_ZNK5realm5_impl17TransactLogParser14BadTransactLog4whatEv +_ZNSt3__16__sortIRZN12_GLOBAL__N_121IncrementalChangeInfoC1ERN5realm11SharedGroupERNS_6vectorINS_10shared_ptrINS3_5_impl18CollectionNotifierEEENS_9allocatorISA_EEEEEUlOT_OT0_E_PSA_EEvSH_SH_SF_ +_ZNSt3__17__sort3IRZN12_GLOBAL__N_121IncrementalChangeInfoC1ERN5realm11SharedGroupERNS_6vectorINS_10shared_ptrINS3_5_impl18CollectionNotifierEEENS_9allocatorISA_EEEEEUlOT_OT0_E_PSA_EEjSH_SH_SH_SF_ +_ZNSt3__17__sort4IRZN12_GLOBAL__N_121IncrementalChangeInfoC1ERN5realm11SharedGroupERNS_6vectorINS_10shared_ptrINS3_5_impl18CollectionNotifierEEENS_9allocatorISA_EEEEEUlOT_OT0_E_PSA_EEjSH_SH_SH_SH_SF_ +_ZNSt3__17__sort5IRZN12_GLOBAL__N_121IncrementalChangeInfoC1ERN5realm11SharedGroupERNS_6vectorINS_10shared_ptrINS3_5_impl18CollectionNotifierEEENS_9allocatorISA_EEEEEUlOT_OT0_E_PSA_EEjSH_SH_SH_SH_SH_SF_ +_ZNSt3__127__insertion_sort_incompleteIRZN12_GLOBAL__N_121IncrementalChangeInfoC1ERN5realm11SharedGroupERNS_6vectorINS_10shared_ptrINS3_5_impl18CollectionNotifierEEENS_9allocatorISA_EEEEEUlOT_OT0_E_PSA_EEbSH_SH_SF_ +_ZN5realm5_impl23CollectionChangeBuilderaSERKS1_ +_ZN5realm5_impl23CollectionChangeBuilderC2ERKS1_ _ZNSt3__120__shared_ptr_emplaceIN5realm5_impl16RealmCoordinatorENS_9allocatorIS3_EEED1Ev _ZNSt3__120__shared_ptr_emplaceIN5realm5_impl16RealmCoordinatorENS_9allocatorIS3_EEED0Ev _ZNSt3__120__shared_ptr_emplaceIN5realm5RealmENS_9allocatorIS2_EEED1Ev _ZNSt3__120__shared_ptr_emplaceIN5realm5RealmENS_9allocatorIS2_EEED0Ev -_ZNSt3__16__sortIRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEvT0_SA_T_ -_ZNSt3__17__sort3IRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEjT0_SA_SA_T_ -_ZNSt3__17__sort4IRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEjT0_SA_SA_SA_T_ -_ZNSt3__17__sort5IRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEjT0_SA_SA_SA_SA_T_ -_ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEbT0_SA_T_ _GLOBAL__sub_I_realm_coordinator.cpp _ZL19s_coordinator_mutex _ZL23s_coordinators_per_path -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp -__push_back_slow_path &> -forward &> -construct, const std::__1::shared_ptr &> -__construct, const std::__1::shared_ptr &> -__insertion_sort_incomplete<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -__insertion_sort_3<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -__sort5<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -__sort4<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -__sort3<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -swap -operator(), std::__1::shared_ptr > -__sort<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -sort *, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &> -sort, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59)> -__unwrap_iter, std::__1::allocator > > > > -__unwrap_iter *> > -__move *>, std::__1::back_insert_iterator, std::__1::allocator > > > > -move *>, std::__1::back_insert_iterator, std::__1::allocator > > > > -addressof, std::__1::allocator > > > -back_insert_iterator -back_inserter, std::__1::allocator > > > -operator== *, std::__1::shared_ptr *> -operator!= *> -forward &> -construct, std::__1::shared_ptr &> -__construct, std::__1::shared_ptr &> -__construct_range_forward *, std::__1::shared_ptr *> -__construct_at_end *> -forward > > +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp +__push_back_slow_path &> +forward &> +construct, const std::__1::shared_ptr &> +__construct, const std::__1::shared_ptr &> +forward &> +construct, std::__1::shared_ptr &> +__construct, std::__1::shared_ptr &> +__construct_range_forward *, std::__1::shared_ptr *> +__construct_at_end *> +forward +inspect_all, std::__1::allocator >, unsigned long long> +inspect_value, std::__1::allocator >, unsigned long long> +inspect_all, std::__1::allocator >, unsigned long long, unsigned long long> +terminate +forward > > +move > &> +__unwrap_iter, std::__1::allocator > > > > +__unwrap_iter *> > +__move *>, std::__1::back_insert_iterator, std::__1::allocator > > > > +move *>, std::__1::back_insert_iterator, std::__1::allocator > > > > +addressof, std::__1::allocator > > > +back_inserter, std::__1::allocator > > > ~unique_lock -unique_lock -move *&> -swap *> -move_if_noexcept > -__construct_backward *> -forward > &> -__push_back_slow_path > -forward > -construct, std::__1::shared_ptr > -__construct, std::__1::shared_ptr > +operator== *, std::__1::shared_ptr *> +operator!= *> +move *&> +swap *> +move_if_noexcept > +__construct_backward *> +forward > &> +__push_back_slow_path > +forward > +construct, std::__1::shared_ptr > +__construct, std::__1::shared_ptr > +forward +inspect_all, std::__1::allocator >, realm::SharedGroup::TransactStage> +inspect_value, std::__1::allocator >, realm::SharedGroup::TransactStage> +inspect_all, std::__1::allocator >, realm::SharedGroup::TransactStage, realm::SharedGroup::TransactStage> +terminate +operator== *, std::__1::weak_ptr *> +operator!= *> +move *&> +swap *> +move &> +move_if_noexcept > +forward > +weak_ptr +construct, std::__1::weak_ptr > +__construct, std::__1::weak_ptr > +__construct_backward *> +forward > &> +__push_back_slow_path &> +forward &> +construct, const std::__1::weak_ptr &> +__construct, const std::__1::weak_ptr &> +forward *> operator== *, std::__1::weak_ptr *> operator!= *> -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__hash_table -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/unordered_map move *&> swap *> move_if_noexcept > __construct_backward *> forward > &> __push_back_slow_path > +move &> forward > construct, std::__1::weak_ptr > __construct, std::__1::weak_ptr > forward *> -pop_back -__hash_const_iterator forward, std::__1::weak_ptr >, void *> > > > move, std::__1::weak_ptr >, void *> > > &> -__hash_node_destructor expired -~enable_shared_from_this -forward *> +forward *> forward > -~Schema -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/schema.hpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/schema.hpp forward move Schema forward make_unique -move -swap -move_if_noexcept -forward -construct -__construct -__construct_backward -forward &> -forward +move +swap +move_if_noexcept +forward +construct +__construct +__construct_backward +forward &> +forward __emplace_back_slow_path &, bool &> -forward &> -construct &, bool &> -__construct &, bool &> +construct &, bool &> +__construct &, bool &> emplace_back &, bool &> +bad_weak_ptr shared_ptr +shared_from_this forward __enable_weak_this addressof > > allocator -__on_zero_shared_weak -~__shared_ptr_emplace -~__libcpp_compressed_pair_imp -~__compressed_pair get<0, realm::Realm::Config &&> forward get<0, std::__1::allocator &> @@ -1402,7 +2286,6 @@ tuple forward_as_tuple __tuple_leaf &, void> __tuple_impl<0, std::__1::allocator &, std::__1::allocator &> -tuple forward &> forward_as_tuple &> __shared_ptr_emplace @@ -1410,11 +2293,10 @@ allocator > > > > forward > *> move > > > &> -__allocator_destructor make_shared make_shared -operator== -operator!= +operator== +operator!= operator== operator!= equal, std::__1::__wrap_iter, std::__1::__equal_to > @@ -1436,7 +2318,6 @@ addressof forward > move &> -__shared_weak_count __shared_ptr_emplace allocator > > forward > > > > @@ -1448,28 +2329,11 @@ __destroy > destroy > __destroy > destroy > -forward -__hash_map_iterator pair, std::__1::weak_ptr >, void *> *>, bool> -forward forward, std::__1::weak_ptr >, void *> *> > pair, std::__1::weak_ptr >, void *> *>, bool &, void> -__hash_iterator addressof, std::__1::weak_ptr >, void *> *> > -ceil -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/cmath -__is_hash_power2 -__clz -__next_hash_pow2 reset, std::__1::weak_ptr >, void *> **> -__rehash -rehash -max_load_factor -key_eq -__constrain_hash -bucket_count -hash_function -__node_insert_unique addressof > construct> __construct> @@ -1480,172 +2344,167 @@ __construct, std::__1::basic_string > forward, std::__1::weak_ptr >, void *> > > > forward, std::__1::weak_ptr >, void *> *> move, std::__1::weak_ptr >, void *> > > &> -__hash_map_node_destructor -__construct_node_with_key -__unordered_map_equal -forward -__unordered_map_hasher -__hash_node_base -__bucket_list_deallocator forward, std::__1::weak_ptr >, void *> **> -__hash_table -unordered_map -Realm/ObjectStore/shared_realm.hpp -~ReadLockUnlockGuard -~Buffer -~StringBuffer -core/include/realm/util/string_buffer.hpp -~TransactLogParser -parse_complete -~BadTransactLog -BadTransactLog -optimize_table -move_group_level_table -rename_group_level_table -erase_group_level_table -insert_group_level_table -select_descriptor -move_column -rename_column -erase_link_column -erase_column -insert_link_column -insert_column -is_valid_data_type -set_link_type -is_valid_link_type -remove_search_index -add_search_index -select_link_list -link_list_clear -link_list_nullify -link_list_erase -link_list_swap -link_list_move -link_list_insert -link_list_set -clear_table -select_table -operator() -reset -unique_ptr -sub -int_subtract_with_overflow_detect -int_greater_than_or_equal -int_shift_left_with_overflow_detect -read_int -change_link_targets -insert_empty_rows -erase_substring -insert_substring -nullify_link -set_link -~Mixed -core/include/realm/mixed.hpp -set_mixed -Mixed -set_binary -get_datetime -core/include/realm/datetime.hpp -set_datetime -set_double -set_float -set_bool -set_int -read_mixed -set_table -DateTime -set_date_time -read_binary -set_string_unique -read_buffer -read_string -read_double -read_bytes -read_float -cast -cast_to_unsigned -int_subtract_with_overflow_detect -int_greater_than_or_equal -int_shift_left_with_overflow_detect -read_int -set_int_unique -int_subtract_with_overflow_detect -int_greater_than_or_equal -int_shift_left_with_overflow_detect -read_int -cast_to_unsigned -int_subtract_with_overflow_detect -int_shift_left_with_overflow_detect -read_int -read_char -parse_one -next_input_buffer -has_next -parse -NoCopyInputStream -ChangesetInputStream -Buffer -StringBuffer -TransactLogParser -ReadLockUnlockGuard -ReadLockInfo -do_advance_read -get_replication -core/include/realm/alloc_slab.hpp -get_history -advance_read -advance_read -core/include/realm/lang_bind_helper.hpp -move -swap -operator(), std::__1::allocator > > > -move &> -version +weak_ptr +~IncrementalChangeInfo +__tuple_leaf +__tuple_impl<0, 1, 2, const unsigned long &, const unsigned long &, const unsigned long &, const unsigned long &, const unsigned long &, const unsigned long &> +tie +operator() +get<2, const unsigned long &, const unsigned long &, const unsigned long &> +get<1, const unsigned long &, const unsigned long &, const unsigned long &> +get<0, const unsigned long &, const unsigned long &, const unsigned long &> +operator(), std::__1::tuple > +operator== +__push_back_slow_path +forward +construct +__construct +move +swap +move_if_noexcept +forward +construct +__construct +__construct_backward +forward &> +__hash_map_const_iterator +addressof > +forward &> +__hash_value_type &> +construct, const std::__1::pair &> +__construct, const std::__1::pair &> +__construct_node &> +__insert_unique &> +insert, void *> *> > > +forward, std::__1::hash, true> > +forward, void *> > > +move, void *> *> > &> +forward, void *> *> > +forward +construct +__construct +__construct_range_forward +__construct_at_end +__unwrap_iter +forward &> +__hash_value_type +construct, const std::__1::__hash_value_type &> +__construct, const std::__1::__hash_value_type &> +__construct_node &> +__insert_multi &> +__node_insert_multi +operator= &, void> +__detach +__assign_multi, void *> *> > +copy +__advance +advance +__distance +distance +assign +__copy +copy +__advance +advance +__distance +distance +assign +advance_to_final +current +move > &> +__push_back_slow_path +advance_incremental +TransactionChangeInfo +construct +__construct +__to_raw_pointer +__destroy +destroy +~TransactionChangeInfo +__destroy +destroy +move +swap +move +move_if_noexcept +forward +forward > +forward +move &> +forward > +move &> +construct +__construct +__construct_backward +__to_raw_pointer +forward &> +operator() &, std::__1::shared_ptr &> +__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp:329:20) &, std::__1::shared_ptr *> +__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp:329:20) &, std::__1::shared_ptr *> +__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp:329:20) &, std::__1::shared_ptr *> +__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp:329:20) &, std::__1::shared_ptr *> +__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp:329:20) &, std::__1::shared_ptr *> +swap +__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp:329:20) &, std::__1::shared_ptr *> +sort *, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp:329:20) &> +sort, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/realm_coordinator.cpp:329:20)> +forward +IncrementalChangeInfo +move, std::__1::allocator > > &> +VersionID +operator(), std::__1::allocator > > > operator< +get_transact_stage +__to_raw_pointer > +get, std::__1::weak_ptr > +get<1, const std::__1::basic_string, std::__1::weak_ptr > +forward &> +get<0, const std::__1::basic_string, std::__1::weak_ptr > +forward &> +pair, std::__1::weak_ptr > &, void> __to_raw_pointer > __destroy > destroy > +move is_for_realm +Realm/ObjectStore/impl/weak_realm_notifier_base.hpp __libcpp_relaxed_load use_count -__to_raw_pointer -__destroy -destroy -__to_raw_pointer > -__destroy > -destroy > +__to_raw_pointer +__destroy +destroy +__to_raw_pointer > +__destroy > +destroy > forward forward forward enable_shared_from_this move realm +__thread_id +get_id is_cached_for_current_thread ~MismatchedConfigException MismatchedConfigException ~RealmFileException RealmFileException code -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/system_error +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/system_error addressof, std::__1::weak_ptr > > -~__hash_value_type __destroy, std::__1::weak_ptr > > destroy, std::__1::weak_ptr > > -__node_alloc -~__hash_table -~unordered_map process_available_async advance_to_ready -advance_helper_shared_group_to_latest -move_new_queries_to_main open_helper_shared_group -run_async_queries +run_async_notifiers on_change -clean_up_dead_queries -register_query +clean_up_dead_notifiers +register_notifier pin_version send_commit_notifications +clear_all_caches clear_cache unregister_realm ~RealmCoordinator @@ -1655,140 +2514,257 @@ get_schema get_existing_coordinator __cxx_global_var_init.8 __cxx_global_var_init -_ZN5realm27InvalidTransactionExceptionD1Ev +_ZN5realm9TableViewD1Ev +_ZN5realm9TableViewD0Ev +_ZNK5realm9TableView5cloneEv +_ZNK5realm9TableView18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_18ConstSourcePayloadE +_ZN5realm9TableView18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_20MutableSourcePayloadE +_ZN5realm9TableView23apply_and_consume_patchERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEERNS_5GroupE +_ZN5realm13TableViewBaseC2Ev +_ZN5realm6ColumnIxE13CreateHandler11create_leafEm _ZN5realm13TableViewBaseC2EOS0_ -_ZN5realm27InvalidTransactionExceptionD0Ev -_ZN5realm13TableViewBaseC2ERKS0_ -_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl10AsyncQueryENS_9allocatorIS3_EEED1Ev -_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl10AsyncQueryENS_9allocatorIS3_EEED0Ev -atomic_store -atomic_exchange -atomic_load +_ZN5realm13TableViewBaseaSEOS0_ +_ZN5realm18QueryHandoverPatchD1Ev +_ZN5realm4util17BadOptionalAccessD1Ev +_ZN5realm4util17BadOptionalAccessD0Ev +_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl15ResultsNotifierENS_9allocatorIS3_EEED1Ev +_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl15ResultsNotifierENS_9allocatorIS3_EEED0Ev +_ZN5realm5_impl15ResultsNotifierD2Ev +_ZNSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EED1Ev +_ZNSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EED0Ev +_ZNKSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EE7__cloneEv +_ZNKSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EE7__cloneEPNS0_6__baseISC_EE +_ZNSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EE7destroyEv +_ZNSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EE18destroy_deallocateEv +_ZNSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EEclEOSB_OS5_ +_ZNKSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EE6targetERKSt9type_info +_ZNKSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EE11target_typeEv +.str.62 +.str.63 +_ZTVNSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EEE +_ZTSNSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EEE +_ZTINSt3__110__function6__funcIZN5realm7Results5asyncENS_8functionIFvSt13exception_ptrEEEE4$_16NS_9allocatorIS8_EEFvNS2_19CollectionChangeSetES5_EEE +_ZTSZN5realm7Results5asyncENSt3__18functionIFvSt13exception_ptrEEEE4$_16 +_ZTIZN5realm7Results5asyncENSt3__18functionIFvSt13exception_ptrEEEE4$_16 +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp +__invoke<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &, realm::CollectionChangeSet, std::exception_ptr> +__call<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &, realm::CollectionChangeSet, std::exception_ptr> +get<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> &> +__libcpp_compressed_pair_imp &, 0, 0> +move &> &> +__compressed_pair &> +__tuple_leaf &, void> +__tuple_impl<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> &, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> &> +forward &> +forward_as_tuple &> +get<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &> +__libcpp_compressed_pair_imp &&, 0, 0> +move &> +__compressed_pair &&> +__tuple_leaf +__tuple_impl<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &> +forward +forward_as_tuple +allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> +_ZZN5realm7Results5asyncENSt3__18functionIFvSt13exception_ptrEEEEN4$_16C2EOS6_ +_ZZN5realm7Results5asyncENSt3__18functionIFvSt13exception_ptrEEEEN4$_16C1EOS6_ +get<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &&> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &&> +get<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> &&> +forward &&> +__libcpp_compressed_pair_imp<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> &&, 0, 0> +move &&> &> +move &> +__compressed_pair<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> &&> +move &> +__tuple_leaf, void> +__tuple_impl<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> > +tuple , false> +forward > +forward_as_tuple > +__tuple_leaf<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17), void> +__tuple_impl<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &&, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> +tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17), false> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> +forward_as_tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> +allocator, void (realm::CollectionChangeSet, std::exception_ptr)> > +move<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17) &> +forward, void (realm::CollectionChangeSet, std::exception_ptr)> > > > +forward, void (realm::CollectionChangeSet, std::exception_ptr)> *> +move, void (realm::CollectionChangeSet, std::exception_ptr)> > > &> +__not_null<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> +function<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:458:17)> +forward > +default_delete +forward > +unique_ptr > +forward +move +forward +make_unique operator() -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp operator() -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:281:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:282:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:283:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:284:22)> -aggregate<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:281:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:282:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:283:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:284:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:272:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:273:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:274:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:275:22)> -aggregate<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:272:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:273:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:274:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:275:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:263:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:264:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:265:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:266:22)> -aggregate<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:263:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:264:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:265:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:266:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:254:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:255:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:256:22)> -OptionalStorage -core/include/realm/util/optional.hpp +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:343:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:344:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:345:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:346:22)> +aggregate<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:343:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:344:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:345:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:346:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:334:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:335:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:336:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:337:22)> +aggregate<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:334:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:335:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:336:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:337:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:325:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:326:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:327:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:328:22)> +aggregate<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:325:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:326:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:327:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:328:22)> +Mixed +core/include/realm/mixed.hpp +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:316:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:317:22)> +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:318:22)> +~Mixed constexpr_move -Optional -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:257:22)> -aggregate<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:254:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:255:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:256:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:257:22)> -impl_get_row_ndx -core/include/realm/row.hpp -row_ndx -get_index -table -impl_get_table +operator()<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:319:22)> +aggregate<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:316:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:317:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:318:22), (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.cpp:319:22)> +shared_ptr +move +swap +move &> forward -__enable_weak_this -addressof > > -allocator +addressof > > +allocator +~ResultsNotifier +Realm/ObjectStore/impl/results_notifier.hpp get<0, realm::Results &> -get<0, std::__1::allocator &> -__libcpp_compressed_pair_imp &, realm::Results &, 0, 0> +get<0, std::__1::allocator &> +__libcpp_compressed_pair_imp &, realm::Results &, 0, 0> move &> -move &> &> -__compressed_pair &, realm::Results &> +move &> &> +__compressed_pair &, realm::Results &> __tuple_leaf __tuple_impl<0, realm::Results &, realm::Results &> forward_as_tuple -__tuple_leaf &, void> -__tuple_impl<0, std::__1::allocator &, std::__1::allocator &> -forward &> -forward_as_tuple &> +__tuple_leaf &, void> +__tuple_impl<0, std::__1::allocator &, std::__1::allocator &> +forward &> +forward_as_tuple &> __shared_ptr_emplace -allocator > > -forward > > > > -forward > *> -move > > > &> +allocator > > +forward > > > > +forward > *> +move > > > &> make_shared -make_shared +make_shared +~BadOptionalAccess +BadOptionalAccess +value +produces_results_in_table_order +core/include/realm/query.hpp +~ +_ZZN5realm7Results5asyncENSt3__18functionIFvSt13exception_ptrEEEEN4$_16C2ERKS6_ +_ZZN5realm7Results5asyncENSt3__18functionIFvSt13exception_ptrEEEEN4$_16C1ERKS6_ config -get_hasrefs_from_header -~DeepArrayRefDestroyGuard -__destroy -destroy -move -swap -__construct_backward -forward &> -forward -__push_back_slow_path -__to_raw_pointer -construct -__construct -register_view -DeepArrayRefDestroyGuard -__construct_range_forward -__construct_at_end -__construct_range_forward -__construct_at_end -move -move > &> -where -get_query -find_first -find_first +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/results.hpp find_by_source_ndx -front +move +swap +move &> +move_assign forward > constexpr_move &> some > some, realm::BasicRowExpr > make_optional > -BasicRowExpr -~InvalidTransactionException -InvalidTransactionException -forward > -forward > +move &> +move &> +move move > &> +move &> forward > move &> -move -core/include/realm/query.hpp -AsyncQueryCancelationToken -~AsyncQueryCancelationToken +move +~CreateHandler +create +create_array +create_leaf +CreateHandler UnsupportedColumnTypeException set_table_view +is_in_table_order async -filter -sort +prepare_async get_object_type get_tableview average sum index_of update_tableview +update_linkview last validate_write validate_read ~Results Results Realm/ObjectStore/results.cpp +_ZN5realm5_impl15ResultsNotifierD1Ev +_ZN5realm5_impl15ResultsNotifierD0Ev +_ZNKSt3__114default_deleteIN5realm22TableViewHandoverPatchEEclEPS2_ +_ZN5realm11SharedGroup8HandoverINS_9TableViewEED2Ev +_ZNK5realm4util8OptionalIyE5valueEv +_ZN5realm11SharedGroup10BadVersionD1Ev +_ZN5realm11SharedGroup10BadVersionD0Ev +forward > +move > &> +import_from_handover +move > &> +~BadVersion +BadVersion +import_from_handover +forward > > +move *&> +Handover +export_for_handover +operator() +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/results_notifier.cpp +__advance > +advance > +__distance > +distance > +__lower_bound<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/results_notifier.cpp:112:39) &, std::__1::__wrap_iter, unsigned long> +lower_bound, unsigned long, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/results_notifier.cpp:112:39)> +operator== +operator!= +__push_back_slow_path +construct +__construct +__construct_backward +forward &> +operator== +forward > > +move *&> +forward +export_for_handover +move, std::__1::default_delete > > &> +move, std::__1::default_delete > > &> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_notifier.hpp +Realm/ObjectStore/collection_notifications.hpp +wants_background_updates +forward *> +forward +forward *> +get_sort +calculate_changes +need_to_run +ResultsNotifier ___Z25RLMReplaceClassNameMethodP10objc_classP8NSString_block_invoke __copy_helper_block_ __destroy_helper_block_ ___Z28RLMReplaceSharedSchemaMethodP10objc_classP15RLMObjectSchema_block_invoke -__copy_helper_block_.9 -__destroy_helper_block_.10 +__copy_helper_block_.12 +__destroy_helper_block_.13 _ZL22RLMCreateAccessorClassP10objc_classP15RLMObjectSchemaP8NSStringPFPFvvEP11RLMProperty15RLMAccessorCodeESB_ _ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode _ZL17RLMAccessorSetterP11RLMProperty15RLMAccessorCode @@ -1796,6 +2772,8 @@ _ZL27RLMAccessorStandaloneGetterP11RLMProperty15RLMAccessorCode _ZL27RLMAccessorStandaloneSetterP11RLMProperty15RLMAccessorCode _ZL14RLMCoerceToNilIU8__strongP11objc_objectET_S3_ _ZL19accessorCodeForTypec15RLMPropertyType +_ZL11RLMGetArrayP13RLMObjectBasejP8NSStringS2_ +_ZL20RLMGetLinkingObjectsP13RLMObjectBaseP11RLMProperty ___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke ___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_2 ___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_3 @@ -1808,161 +2786,163 @@ ___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_9 ___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_10 ___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_11 ___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_12 -__copy_helper_block_.133 -__destroy_helper_block_.134 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke.137 -__copy_helper_block_.138 -__destroy_helper_block_.139 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke.142 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_2.145 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_3.149 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_4.153 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_5.157 -___ZL13RLMMakeSetterIcxEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIcxEPFvvEP11RLMProperty_block_invoke_2 +__copy_helper_block_.137 +__destroy_helper_block_.138 +___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke.141 +__copy_helper_block_.142 +__destroy_helper_block_.143 +___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke.148 +___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_2.152 +___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_3.156 +___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_4.160 +___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_5.164 __copy_helper_block_.165 __destroy_helper_block_.166 +___ZL13RLMMakeSetterIcxEPFvvEP11RLMProperty_block_invoke +___ZL13RLMMakeSetterIcxEPFvvEP11RLMProperty_block_invoke_2 +__copy_helper_block_.173 +__destroy_helper_block_.174 ___ZL13RLMMakeSetterIsxEPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIsxEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.179 -__destroy_helper_block_.180 +__copy_helper_block_.187 +__destroy_helper_block_.188 ___ZL13RLMMakeSetterIixEPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIixEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.185 -__destroy_helper_block_.186 +__copy_helper_block_.193 +__destroy_helper_block_.194 ___ZL13RLMMakeSetterIlxEPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIlxEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.191 -__destroy_helper_block_.192 +__copy_helper_block_.199 +__destroy_helper_block_.200 ___ZL13RLMMakeSetterIxxEPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIxxEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.197 -__destroy_helper_block_.198 +__copy_helper_block_.205 +__destroy_helper_block_.206 ___ZL13RLMMakeSetterIffEPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIffEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.203 -__destroy_helper_block_.204 +__copy_helper_block_.211 +__destroy_helper_block_.212 ___ZL13RLMMakeSetterIddEPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIddEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.209 -__destroy_helper_block_.210 +__copy_helper_block_.217 +__destroy_helper_block_.218 ___ZL13RLMMakeSetterIaaEPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIaaEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.214 -__destroy_helper_block_.215 +__copy_helper_block_.222 +__destroy_helper_block_.223 ___ZL13RLMMakeSetterIU8__strongP8NSStringS2_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongP8NSStringS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.220 -__destroy_helper_block_.221 +__copy_helper_block_.228 +__destroy_helper_block_.229 _ZZZL13RLMMakeSetterIU8__strongP8NSStringS2_EPFvvEP11RLMPropertyEUb1_ENKUlvE_clEv ___ZL13RLMMakeSetterIU8__strongP6NSDateS2_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongP6NSDateS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.228 -__destroy_helper_block_.229 -___ZL13RLMMakeSetterIU8__strongP6NSDataS2_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongP6NSDataS2_EPFvvEP11RLMProperty_block_invoke_2 __copy_helper_block_.236 __destroy_helper_block_.237 +_ZL11RLMSetValueP13RLMObjectBasejP6NSDate +_ZN5realm9TimestampC2Exi +___ZL13RLMMakeSetterIU8__strongP6NSDataS2_EPFvvEP11RLMProperty_block_invoke +___ZL13RLMMakeSetterIU8__strongP6NSDataS2_EPFvvEP11RLMProperty_block_invoke_2 +__copy_helper_block_.254 +__destroy_helper_block_.255 _ZZZL13RLMMakeSetterIU8__strongP6NSDataS2_EPFvvEP11RLMPropertyEUb1_ENKUlvE_clEv ___ZL13RLMMakeSetterIU8__strongP13RLMObjectBaseS2_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongP13RLMObjectBaseS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.246 -__destroy_helper_block_.247 +__copy_helper_block_.264 +__destroy_helper_block_.265 _ZL11RLMSetValueP13RLMObjectBasejS0_ _ZL26RLMGetLinkedObjectForValueP8RLMRealmP8NSStringP11objc_objectj ___ZL13RLMMakeSetterIU8__strongP8RLMArrayS2_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongP8RLMArrayS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.264 -__destroy_helper_block_.265 +__copy_helper_block_.287 +__destroy_helper_block_.288 _ZL11RLMSetValueP13RLMObjectBasejPU28objcproto17NSFastEnumeration11objc_object ___ZL13RLMMakeSetterIU8__strongP11objc_objectS2_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongP11objc_objectS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.274 -__destroy_helper_block_.275 +__copy_helper_block_.295 +__destroy_helper_block_.296 +_ZZZL13RLMMakeSetterIU8__strongP11objc_objectS2_EPFvvEP11RLMPropertyEUb1_ENKUlvE_clEv _ZL11RLMSetValueP13RLMObjectBasejP11objc_object ___ZL13RLMMakeSetterIU8__strongPU16objcproto6RLMInt8NSNumberS3_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongPU16objcproto6RLMInt8NSNumberS3_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.295 -__destroy_helper_block_.296 +__copy_helper_block_.303 +__destroy_helper_block_.304 ___ZL13RLMMakeSetterIU8__strongPU18objcproto8RLMFloat8NSNumberS3_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongPU18objcproto8RLMFloat8NSNumberS3_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.301 -__destroy_helper_block_.302 +__copy_helper_block_.311 +__destroy_helper_block_.312 ___ZL13RLMMakeSetterIU8__strongPU19objcproto9RLMDouble8NSNumberS3_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongPU19objcproto9RLMDouble8NSNumberS3_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.307 -__destroy_helper_block_.308 +__copy_helper_block_.319 +__destroy_helper_block_.320 ___ZL13RLMMakeSetterIU8__strongPU17objcproto7RLMBool8NSNumberS3_EPFvvEP11RLMProperty_block_invoke ___ZL13RLMMakeSetterIU8__strongPU17objcproto7RLMBool8NSNumberS3_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.313 -__destroy_helper_block_.314 +__copy_helper_block_.327 +__destroy_helper_block_.328 ___ZL27RLMAccessorStandaloneGetterP11RLMProperty15RLMAccessorCode_block_invoke _ZL11RLMSuperSetP13RLMObjectBaseP8NSStringP11objc_object -__copy_helper_block_.321 -__destroy_helper_block_.322 +__copy_helper_block_.337 +__destroy_helper_block_.338 +___ZL27RLMAccessorStandaloneGetterP11RLMProperty15RLMAccessorCode_block_invoke.340 ___ZL27RLMAccessorStandaloneSetterP11RLMProperty15RLMAccessorCode_block_invoke -__copy_helper_block_.328 -__destroy_helper_block_.329 +__copy_helper_block_.351 +__destroy_helper_block_.352 +_ZN5realm7ResultsC2EOS0_ _ZZ13RLMDynamicSetENK3$_0clEv _GLOBAL__sub_I_RLMAccessor.mm __block_descriptor_tmp OBJC_METH_VAR_NAME_ OBJC_SELECTOR_REFERENCES_ OBJC_CLASSLIST_REFERENCES_$_ -OBJC_METH_VAR_NAME_.7 -OBJC_SELECTOR_REFERENCES_.8 +OBJC_METH_VAR_NAME_.10 +OBJC_SELECTOR_REFERENCES_.11 OBJC_CLASS_NAME_ -__block_descriptor_tmp.12 -OBJC_METH_VAR_NAME_.13 -OBJC_SELECTOR_REFERENCES_.14 -_ZL18s_generatedClasses -OBJC_CLASSLIST_REFERENCES_$_.15 +__block_descriptor_tmp.15 OBJC_METH_VAR_NAME_.16 OBJC_SELECTOR_REFERENCES_.17 -OBJC_METH_VAR_NAME_.18 -OBJC_SELECTOR_REFERENCES_.19 -_unnamed_cfstring_ +_ZL18s_generatedClasses +OBJC_CLASSLIST_REFERENCES_$_.18 +OBJC_METH_VAR_NAME_.19 +OBJC_SELECTOR_REFERENCES_.20 OBJC_METH_VAR_NAME_.21 OBJC_SELECTOR_REFERENCES_.22 -_unnamed_cfstring_.24 -OBJC_METH_VAR_NAME_.25 -OBJC_SELECTOR_REFERENCES_.26 -_unnamed_cfstring_.28 -_unnamed_cfstring_.30 -OBJC_METH_VAR_NAME_.31 -OBJC_SELECTOR_REFERENCES_.32 -OBJC_METH_VAR_NAME_.33 -OBJC_SELECTOR_REFERENCES_.34 -OBJC_METH_VAR_NAME_.35 -OBJC_SELECTOR_REFERENCES_.36 -OBJC_METH_VAR_NAME_.37 -OBJC_SELECTOR_REFERENCES_.38 -OBJC_CLASSLIST_REFERENCES_$_.39 +_unnamed_cfstring_ +OBJC_METH_VAR_NAME_.24 +OBJC_SELECTOR_REFERENCES_.25 +_unnamed_cfstring_.27 +OBJC_METH_VAR_NAME_.28 +OBJC_SELECTOR_REFERENCES_.29 +_unnamed_cfstring_.31 +_unnamed_cfstring_.33 +OBJC_METH_VAR_NAME_.34 +OBJC_SELECTOR_REFERENCES_.35 +OBJC_METH_VAR_NAME_.36 +OBJC_SELECTOR_REFERENCES_.37 +OBJC_METH_VAR_NAME_.38 +OBJC_SELECTOR_REFERENCES_.39 OBJC_METH_VAR_NAME_.40 OBJC_SELECTOR_REFERENCES_.41 -OBJC_METH_VAR_NAME_.42 -OBJC_SELECTOR_REFERENCES_.43 -OBJC_METH_VAR_NAME_.44 -OBJC_SELECTOR_REFERENCES_.45 -OBJC_METH_VAR_NAME_.46 -OBJC_SELECTOR_REFERENCES_.47 -OBJC_METH_VAR_NAME_.48 -OBJC_SELECTOR_REFERENCES_.49 -OBJC_METH_VAR_NAME_.50 -OBJC_SELECTOR_REFERENCES_.51 -OBJC_METH_VAR_NAME_.52 -OBJC_SELECTOR_REFERENCES_.53 -OBJC_METH_VAR_NAME_.54 -OBJC_SELECTOR_REFERENCES_.55 -OBJC_METH_VAR_NAME_.56 -OBJC_SELECTOR_REFERENCES_.57 -_unnamed_cfstring_.59 -OBJC_CLASSLIST_REFERENCES_$_.60 -OBJC_METH_VAR_NAME_.61 -OBJC_SELECTOR_REFERENCES_.62 +OBJC_CLASSLIST_REFERENCES_$_.42 +OBJC_METH_VAR_NAME_.43 +OBJC_SELECTOR_REFERENCES_.44 +OBJC_METH_VAR_NAME_.45 +OBJC_SELECTOR_REFERENCES_.46 +OBJC_METH_VAR_NAME_.47 +OBJC_SELECTOR_REFERENCES_.48 +OBJC_METH_VAR_NAME_.49 +OBJC_SELECTOR_REFERENCES_.50 +OBJC_METH_VAR_NAME_.51 +OBJC_SELECTOR_REFERENCES_.52 +OBJC_METH_VAR_NAME_.53 +OBJC_SELECTOR_REFERENCES_.54 +OBJC_METH_VAR_NAME_.55 +OBJC_SELECTOR_REFERENCES_.56 +OBJC_METH_VAR_NAME_.57 +OBJC_SELECTOR_REFERENCES_.58 +OBJC_METH_VAR_NAME_.59 +OBJC_SELECTOR_REFERENCES_.60 _unnamed_cfstring_.64 -OBJC_METH_VAR_NAME_.65 -OBJC_SELECTOR_REFERENCES_.66 +_unnamed_cfstring_.66 OBJC_METH_VAR_NAME_.67 OBJC_SELECTOR_REFERENCES_.68 OBJC_METH_VAR_NAME_.69 @@ -1975,111 +2955,107 @@ OBJC_METH_VAR_NAME_.75 OBJC_SELECTOR_REFERENCES_.76 OBJC_METH_VAR_NAME_.77 OBJC_SELECTOR_REFERENCES_.78 -.str.79 -.str.80 -.str.84 -.str.85 -.str.86 -_unnamed_cfstring_.88 +OBJC_METH_VAR_NAME_.79 +OBJC_SELECTOR_REFERENCES_.80 +OBJC_METH_VAR_NAME_.81 +OBJC_SELECTOR_REFERENCES_.82 +_unnamed_cfstring_.92 +.str.94 +.str.95 .str.96 .str.97 -OBJC_METH_VAR_NAME_.98 -OBJC_SELECTOR_REFERENCES_.99 -OBJC_CLASS_NAME_.101 -__block_descriptor_tmp.102 -OBJC_CLASS_NAME_.104 -__block_descriptor_tmp.105 -OBJC_CLASS_NAME_.107 -__block_descriptor_tmp.108 -.str.109 -OBJC_CLASS_NAME_.110 -__block_descriptor_tmp.111 -.str.112 -OBJC_CLASS_NAME_.113 -__block_descriptor_tmp.114 -.str.115 -OBJC_CLASS_NAME_.116 -__block_descriptor_tmp.117 -.str.118 -OBJC_CLASS_NAME_.119 -__block_descriptor_tmp.120 -.str.121 -OBJC_CLASS_NAME_.122 -__block_descriptor_tmp.123 -.str.124 -OBJC_CLASS_NAME_.125 -__block_descriptor_tmp.126 -.str.127 -OBJC_CLASS_NAME_.128 -__block_descriptor_tmp.129 -.str.130 -OBJC_CLASS_NAME_.131 -__block_descriptor_tmp.132 -.str.135 +.str.99 +.str.100 +OBJC_METH_VAR_NAME_.102 +OBJC_SELECTOR_REFERENCES_.103 +.str.104 +OBJC_CLASS_NAME_.105 +__block_descriptor_tmp.106 +OBJC_CLASS_NAME_.108 +__block_descriptor_tmp.109 +OBJC_CLASS_NAME_.111 +__block_descriptor_tmp.112 +OBJC_CLASS_NAME_.114 +__block_descriptor_tmp.115 +.str.116 +OBJC_CLASS_NAME_.117 +__block_descriptor_tmp.118 +.str.119 +OBJC_CLASS_NAME_.120 +__block_descriptor_tmp.121 +OBJC_CLASS_NAME_.123 +__block_descriptor_tmp.124 +OBJC_CLASS_NAME_.126 +__block_descriptor_tmp.127 +OBJC_CLASS_NAME_.129 +__block_descriptor_tmp.130 +.str.131 +OBJC_CLASS_NAME_.132 +__block_descriptor_tmp.133 +.str.134 +OBJC_CLASS_NAME_.135 __block_descriptor_tmp.136 -.str.140 -__block_descriptor_tmp.141 -OBJC_CLASS_NAME_.143 -__block_descriptor_tmp.144 +.str.139 +__block_descriptor_tmp.140 +.str.144 +__block_descriptor_tmp.145 .str.146 -OBJC_CLASS_NAME_.147 -__block_descriptor_tmp.148 -.str.150 -OBJC_CLASS_NAME_.151 -__block_descriptor_tmp.152 -.str.154 -OBJC_CLASS_NAME_.155 -__block_descriptor_tmp.156 -.str.158 -OBJC_CLASS_NAME_.159 -__block_descriptor_tmp.160 +_unnamed_cfstring_.147 +.str.149 +OBJC_CLASS_NAME_.150 +__block_descriptor_tmp.151 +.str.153 +OBJC_CLASS_NAME_.154 +__block_descriptor_tmp.155 +.str.157 +OBJC_CLASS_NAME_.158 +__block_descriptor_tmp.159 .str.161 -_unnamed_cfstring_.162 -.str.163 -__block_descriptor_tmp.164 +OBJC_CLASS_NAME_.162 +__block_descriptor_tmp.163 +.str.167 +__block_descriptor_tmp.168 +.str.169 +_unnamed_cfstring_.170 +.str.171 +__block_descriptor_tmp.172 __block_literal_global -__block_descriptor_tmp.167 -OBJC_METH_VAR_NAME_.168 -OBJC_SELECTOR_REFERENCES_.169 -.str.170 -_unnamed_cfstring_.171 -.str.172 -_unnamed_cfstring_.173 -OBJC_METH_VAR_NAME_.174 -OBJC_SELECTOR_REFERENCES_.175 -.str.176 -__block_descriptor_tmp.177 -__block_literal_global.178 -__block_descriptor_tmp.181 -.str.182 -__block_descriptor_tmp.183 -__block_literal_global.184 -__block_descriptor_tmp.187 -.str.188 +__block_descriptor_tmp.175 +OBJC_METH_VAR_NAME_.176 +OBJC_SELECTOR_REFERENCES_.177 +.str.178 +_unnamed_cfstring_.179 +.str.180 +_unnamed_cfstring_.181 +OBJC_METH_VAR_NAME_.182 +OBJC_SELECTOR_REFERENCES_.183 +.str.184 +__block_descriptor_tmp.185 +__block_literal_global.186 __block_descriptor_tmp.189 -__block_literal_global.190 -__block_descriptor_tmp.193 -.str.194 +.str.190 +__block_descriptor_tmp.191 +__block_literal_global.192 __block_descriptor_tmp.195 -__block_literal_global.196 -__block_descriptor_tmp.199 -.str.200 +.str.196 +__block_descriptor_tmp.197 +__block_literal_global.198 __block_descriptor_tmp.201 -__block_literal_global.202 -__block_descriptor_tmp.205 -.str.206 +.str.202 +__block_descriptor_tmp.203 +__block_literal_global.204 __block_descriptor_tmp.207 -__block_literal_global.208 -__block_descriptor_tmp.211 -__block_descriptor_tmp.212 -__block_literal_global.213 -__block_descriptor_tmp.216 -.str.217 -__block_descriptor_tmp.218 -__block_literal_global.219 -__block_descriptor_tmp.222 -OBJC_METH_VAR_NAME_.223 -OBJC_SELECTOR_REFERENCES_.224 +.str.208 +__block_descriptor_tmp.209 +__block_literal_global.210 +__block_descriptor_tmp.213 +.str.214 +__block_descriptor_tmp.215 +__block_literal_global.216 +__block_descriptor_tmp.219 +__block_descriptor_tmp.220 +__block_literal_global.221 +__block_descriptor_tmp.224 .str.225 __block_descriptor_tmp.226 __block_literal_global.227 @@ -2092,22 +3068,22 @@ __block_literal_global.235 __block_descriptor_tmp.238 OBJC_METH_VAR_NAME_.239 OBJC_SELECTOR_REFERENCES_.240 -OBJC_METH_VAR_NAME_.241 -OBJC_SELECTOR_REFERENCES_.242 +.str.241 +.str.242 .str.243 -__block_descriptor_tmp.244 -__block_literal_global.245 -__block_descriptor_tmp.248 -OBJC_METH_VAR_NAME_.249 -OBJC_SELECTOR_REFERENCES_.250 +.str.244 +.str.245 +.str.246 +.str.247 +.str.248 +.str.249 +.str.250 .str.251 -_unnamed_cfstring_.252 -OBJC_METH_VAR_NAME_.253 -OBJC_SELECTOR_REFERENCES_.254 -.str.255 -_unnamed_cfstring_.256 -.str.257 -_unnamed_cfstring_.258 +__block_descriptor_tmp.252 +__block_literal_global.253 +__block_descriptor_tmp.256 +OBJC_METH_VAR_NAME_.257 +OBJC_SELECTOR_REFERENCES_.258 OBJC_METH_VAR_NAME_.259 OBJC_SELECTOR_REFERENCES_.260 .str.261 @@ -2116,94 +3092,155 @@ __block_literal_global.263 __block_descriptor_tmp.266 OBJC_METH_VAR_NAME_.267 OBJC_SELECTOR_REFERENCES_.268 -.str.269 -.str.270 +OBJC_METH_VAR_NAME_.269 +OBJC_SELECTOR_REFERENCES_.270 .str.271 -__block_descriptor_tmp.272 -__block_literal_global.273 -__block_descriptor_tmp.276 -OBJC_METH_VAR_NAME_.277 -OBJC_SELECTOR_REFERENCES_.278 -OBJC_METH_VAR_NAME_.279 -OBJC_SELECTOR_REFERENCES_.280 -OBJC_METH_VAR_NAME_.281 -OBJC_SELECTOR_REFERENCES_.282 -OBJC_METH_VAR_NAME_.283 -OBJC_SELECTOR_REFERENCES_.284 -OBJC_METH_VAR_NAME_.285 -OBJC_SELECTOR_REFERENCES_.286 -.str.287 -_unnamed_cfstring_.288 -OBJC_CLASSLIST_REFERENCES_$_.289 -OBJC_CLASSLIST_REFERENCES_$_.290 -OBJC_CLASSLIST_REFERENCES_$_.291 +_unnamed_cfstring_.272 +OBJC_METH_VAR_NAME_.273 +OBJC_SELECTOR_REFERENCES_.274 +.str.275 +_unnamed_cfstring_.276 +.str.277 +_unnamed_cfstring_.278 +OBJC_CLASSLIST_REFERENCES_$_.279 +OBJC_METH_VAR_NAME_.280 +OBJC_SELECTOR_REFERENCES_.281 +OBJC_METH_VAR_NAME_.282 +OBJC_SELECTOR_REFERENCES_.283 +.str.284 +__block_descriptor_tmp.285 +__block_literal_global.286 +__block_descriptor_tmp.289 +.str.290 +.str.291 .str.292 __block_descriptor_tmp.293 __block_literal_global.294 __block_descriptor_tmp.297 .str.298 -__block_descriptor_tmp.299 -__block_literal_global.300 -__block_descriptor_tmp.303 -.str.304 +_unnamed_cfstring_.299 +.str.300 +__block_descriptor_tmp.301 +__block_literal_global.302 __block_descriptor_tmp.305 -__block_literal_global.306 +OBJC_METH_VAR_NAME_.306 +OBJC_SELECTOR_REFERENCES_.307 +.str.308 __block_descriptor_tmp.309 -.str.310 -__block_descriptor_tmp.311 -__block_literal_global.312 -__block_descriptor_tmp.315 -OBJC_CLASSLIST_REFERENCES_$_.316 -OBJC_METH_VAR_NAME_.317 -OBJC_SELECTOR_REFERENCES_.318 -OBJC_METH_VAR_NAME_.319 -OBJC_SELECTOR_REFERENCES_.320 -__block_descriptor_tmp.323 -OBJC_METH_VAR_NAME_.324 -OBJC_SELECTOR_REFERENCES_.325 -OBJC_METH_VAR_NAME_.326 -OBJC_SELECTOR_REFERENCES_.327 -.str.330 -__block_descriptor_tmp.331 -.str.332 -_unnamed_cfstring_.333 -OBJC_METH_VAR_NAME_.334 -OBJC_SELECTOR_REFERENCES_.335 -OBJC_METH_VAR_NAME_.336 -OBJC_SELECTOR_REFERENCES_.337 -OBJC_METH_VAR_NAME_.338 -OBJC_SELECTOR_REFERENCES_.339 -OBJC_METH_VAR_NAME_.340 -OBJC_SELECTOR_REFERENCES_.341 -OBJC_CLASSLIST_REFERENCES_$_.342 -OBJC_METH_VAR_NAME_.343 -OBJC_SELECTOR_REFERENCES_.344 -OBJC_CLASSLIST_REFERENCES_$_.373 +__block_literal_global.310 +__block_descriptor_tmp.313 +OBJC_METH_VAR_NAME_.314 +OBJC_SELECTOR_REFERENCES_.315 +.str.316 +__block_descriptor_tmp.317 +__block_literal_global.318 +__block_descriptor_tmp.321 +OBJC_METH_VAR_NAME_.322 +OBJC_SELECTOR_REFERENCES_.323 +.str.324 +__block_descriptor_tmp.325 +__block_literal_global.326 +__block_descriptor_tmp.329 +OBJC_METH_VAR_NAME_.330 +OBJC_SELECTOR_REFERENCES_.331 +OBJC_CLASSLIST_REFERENCES_$_.332 +OBJC_METH_VAR_NAME_.333 +OBJC_SELECTOR_REFERENCES_.334 +OBJC_METH_VAR_NAME_.335 +OBJC_SELECTOR_REFERENCES_.336 +__block_descriptor_tmp.339 +OBJC_CLASSLIST_REFERENCES_$_.341 +OBJC_METH_VAR_NAME_.342 +OBJC_SELECTOR_REFERENCES_.343 +.str.344 +__block_descriptor_tmp.345 +__block_literal_global.346 +OBJC_METH_VAR_NAME_.347 +OBJC_SELECTOR_REFERENCES_.348 +OBJC_METH_VAR_NAME_.349 +OBJC_SELECTOR_REFERENCES_.350 +.str.353 +__block_descriptor_tmp.354 +.str.355 +_unnamed_cfstring_.356 +.str.357 +_unnamed_cfstring_.358 +OBJC_CLASSLIST_REFERENCES_$_.359 +OBJC_METH_VAR_NAME_.360 +OBJC_SELECTOR_REFERENCES_.361 +OBJC_CLASSLIST_REFERENCES_$_.362 +OBJC_METH_VAR_NAME_.363 +OBJC_SELECTOR_REFERENCES_.364 +OBJC_CLASSLIST_REFERENCES_$_.366 +OBJC_METH_VAR_NAME_.367 +OBJC_SELECTOR_REFERENCES_.368 +OBJC_METH_VAR_NAME_.369 +OBJC_SELECTOR_REFERENCES_.370 +OBJC_CLASSLIST_REFERENCES_$_.371 +OBJC_METH_VAR_NAME_.372 +OBJC_SELECTOR_REFERENCES_.373 OBJC_METH_VAR_NAME_.374 OBJC_SELECTOR_REFERENCES_.375 OBJC_METH_VAR_NAME_.376 OBJC_SELECTOR_REFERENCES_.377 OBJC_CLASSLIST_REFERENCES_$_.378 -OBJC_CLASSLIST_REFERENCES_$_.379 -OBJC_METH_VAR_NAME_.380 -OBJC_SELECTOR_REFERENCES_.381 +OBJC_METH_VAR_NAME_.379 +OBJC_SELECTOR_REFERENCES_.380 +.str.381 .str.382 -_unnamed_cfstring_.383 +.str.383 .str.384 -_unnamed_cfstring_.385 -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMAccessor.mm +.str.385 +.str.386 +.str.387 +.str.388 +.str.389 +.str.390 +.str.391 +.str.392 +.str.398 +.str.401 +.str.402 +.str.403 +OBJC_CLASSLIST_REFERENCES_$_.411 +OBJC_METH_VAR_NAME_.412 +OBJC_SELECTOR_REFERENCES_.413 +OBJC_METH_VAR_NAME_.414 +OBJC_SELECTOR_REFERENCES_.415 +OBJC_CLASSLIST_REFERENCES_$_.416 +OBJC_CLASSLIST_REFERENCES_$_.417 +OBJC_METH_VAR_NAME_.418 +OBJC_SELECTOR_REFERENCES_.419 +.str.420 +_unnamed_cfstring_.421 +.str.422 +_unnamed_cfstring_.423 +.str.424 +_unnamed_cfstring_.425 +.str.426 +.str.427 +.str.428 +.str.429 +.str.430 +.str.431 +.str.432 +.str.433 +.str.434 +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMAccessor.mm RLMSetValueUnique -RLMWrapSetter<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMAccessor.mm:796:35)> +RLMWrapSetter<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMAccessor.mm:776:35)> RLMDynamicCast -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMUtil.hpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMUtil.hpp RLMCoerceToNil did_change -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/binding_context.hpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/binding_context.hpp forward get_observed_rows changes_available can_deliver_notifications ~BindingContext +move +RLMGetLinkingObjects RLMGetBoolObject RLMGetDoubleObject RLMGetFloatObject @@ -2212,12 +3249,15 @@ get_mixed RLMGetAnyProperty RLMGetArray get_link -is_null_link RLMGetLink RLMBinaryDataToNSData get_binary RLMGetData -RLMDateTimeToNSDate +get_timestamp +get_nanoseconds +core/include/realm/timestamp.hpp +get_seconds +RLMTimestampToNSDate RLMGetDate get_string RLMStringDataToNSString @@ -2236,36 +3276,53 @@ RLMSuperSet RLMSuperGet RLMAccessorStandaloneGetter RLMSetValue -RLMWrapSetter<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMAccessor.mm:531:34)> +RLMWrapSetter<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMAccessor.mm:503:34)> RLMMakeSetter *, NSNumber *> RLMMakeSetter *, NSNumber *> RLMMakeSetter *, NSNumber *> -RLMMakeSetter *, NSNumber *> -RLMDynamicCast -RLMDynamicCast -RLMDynamicCast -RLMDynamicCast +RLMMakeSetter *, NSNumber *> RLMMakeSetter get_linklist RLMMakeSetter +set_link RLMDynamicCast RLMGetLinkedObjectForValue +nullify_link RLMMakeSetter RLMBinaryDataForNSData +set_binary RLMMakeSetter -RLMDateTimeForNSDate +forward +inspect_all, std::__1::allocator >, const bool &> +inspect_value, std::__1::allocator >, bool> +inspect_all, std::__1::allocator >, const bool &, const bool &> +terminate_with_info +forward +inspect_all, std::__1::allocator >, int &> +terminate_with_info +Timestamp +__inline_isnand +/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/usr/include/math.h +__libcpp_isnan +isnan +RLMTimestampForNSDate +set_timestamp RLMMakeSetter RLMStringDataWithNSString RLMMakeSetter +set_bool RLMMakeSetter +set_double RLMMakeSetter +set_float RLMMakeSetter RLMMakeSetter RLMMakeSetter RLMMakeSetter RLMMakeSetter +set_int RLMVerifyAttached -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObject_Private.hpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObject_Private.hpp RLMVerifyInWriteTransaction RLMMakeSetter RLMAccessorSetter @@ -2273,7 +3330,6 @@ RLMAccessorGetter RLMMarkClassAsGenerated setterTypeStringForObjcCode getterTypeStringForObjcCode -RLMIsKindOfClass RLMCreateAccessorClass RLMDynamicGet RLMValidatedGetProperty @@ -2290,28 +3346,40 @@ _ZL9RLMSysCtlPijPm OBJC_CLASSLIST_REFERENCES_$_.6 OBJC_METH_VAR_NAME_.8 OBJC_SELECTOR_REFERENCES_.9 -OBJC_METH_VAR_NAME_.10 -OBJC_SELECTOR_REFERENCES_.11 OBJC_CLASSLIST_REFERENCES_$_.12 +OBJC_METH_VAR_NAME_.13 +OBJC_SELECTOR_REFERENCES_.14 +OBJC_CLASSLIST_REFERENCES_$_.15 +OBJC_METH_VAR_NAME_.18 +OBJC_SELECTOR_REFERENCES_.19 OBJC_METH_VAR_NAME_.20 OBJC_SELECTOR_REFERENCES_.21 OBJC_CLASSLIST_REFERENCES_$_.22 OBJC_METH_VAR_NAME_.23 OBJC_SELECTOR_REFERENCES_.24 +OBJC_METH_VAR_NAME_.25 +OBJC_SELECTOR_REFERENCES_.26 OBJC_METH_VAR_NAME_.27 OBJC_SELECTOR_REFERENCES_.28 OBJC_METH_VAR_NAME_.29 OBJC_SELECTOR_REFERENCES_.30 +OBJC_METH_VAR_NAME_.31 +OBJC_SELECTOR_REFERENCES_.32 +OBJC_METH_VAR_NAME_.33 +OBJC_SELECTOR_REFERENCES_.34 +OBJC_METH_VAR_NAME_.35 +OBJC_SELECTOR_REFERENCES_.36 OBJC_CLASSLIST_REFERENCES_$_.37 -OBJC_METH_VAR_NAME_.38 -OBJC_SELECTOR_REFERENCES_.39 _unnamed_cfstring_.43 +OBJC_METH_VAR_NAME_.44 +OBJC_SELECTOR_REFERENCES_.45 _unnamed_cfstring_.47 _unnamed_cfstring_.49 _unnamed_cfstring_.51 _unnamed_cfstring_.53 _unnamed_cfstring_.55 _unnamed_cfstring_.57 +_unnamed_cfstring_.59 _unnamed_cfstring_.61 _unnamed_cfstring_.63 _unnamed_cfstring_.65 @@ -2319,9 +3387,7 @@ _unnamed_cfstring_.67 _unnamed_cfstring_.69 _unnamed_cfstring_.71 _unnamed_cfstring_.73 -.str.74 _unnamed_cfstring_.75 -.str.76 _unnamed_cfstring_.77 _unnamed_cfstring_.79 _unnamed_cfstring_.81 @@ -2335,21 +3401,20 @@ _unnamed_cfstring_.93 OBJC_METH_VAR_NAME_.94 OBJC_SELECTOR_REFERENCES_.95 _unnamed_cfstring_.97 -.str.98 _unnamed_cfstring_.99 _unnamed_cfstring_.101 OBJC_CLASSLIST_REFERENCES_$_.102 OBJC_METH_VAR_NAME_.103 OBJC_SELECTOR_REFERENCES_.104 +.str.105 OBJC_METH_VAR_NAME_.106 OBJC_SELECTOR_REFERENCES_.107 OBJC_METH_VAR_NAME_.108 OBJC_SELECTOR_REFERENCES_.109 -.str.110 OBJC_METH_VAR_NAME_.111 OBJC_SELECTOR_REFERENCES_.112 RLMOSVersion -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMAnalytics.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMAnalytics.mm forward forward move @@ -2446,6 +3511,7 @@ OBJC_METH_VAR_TYPE_ OBJC_METH_VAR_NAME_.5 OBJC_METH_VAR_TYPE_.6 l_OBJC_$_INSTANCE_METHODS_RLMArrayHolder +OBJC_METH_VAR_NAME_.7 OBJC_METH_VAR_TYPE_.8 l_OBJC_$_INSTANCE_VARIABLES_RLMArrayHolder l_OBJC_CLASS_RO_$_RLMArrayHolder @@ -2457,18 +3523,14 @@ OBJC_METH_VAR_NAME_.14 OBJC_SELECTOR_REFERENCES_.15 OBJC_METH_VAR_NAME_.22 OBJC_SELECTOR_REFERENCES_.23 -OBJC_METH_VAR_NAME_.24 -OBJC_SELECTOR_REFERENCES_.25 OBJC_CLASSLIST_REFERENCES_$_.26 __block_descriptor_tmp.34 +OBJC_METH_VAR_NAME_.37 +OBJC_SELECTOR_REFERENCES_.38 __block_descriptor_tmp.41 __block_descriptor_tmp.44 -OBJC_METH_VAR_NAME_.45 -OBJC_SELECTOR_REFERENCES_.46 __block_descriptor_tmp.49 __block_descriptor_tmp.52 -OBJC_METH_VAR_NAME_.53 -OBJC_SELECTOR_REFERENCES_.54 __block_descriptor_tmp.57 OBJC_METH_VAR_NAME_.58 OBJC_SELECTOR_REFERENCES_.59 @@ -2493,8 +3555,11 @@ OBJC_SELECTOR_REFERENCES_.92 OBJC_CLASSLIST_REFERENCES_$_.93 OBJC_METH_VAR_NAME_.96 OBJC_SELECTOR_REFERENCES_.97 +OBJC_METH_VAR_NAME_.98 +OBJC_SELECTOR_REFERENCES_.99 OBJC_METH_VAR_NAME_.100 OBJC_SELECTOR_REFERENCES_.101 +__block_descriptor_tmp.105 OBJC_METH_VAR_NAME_.110 OBJC_SELECTOR_REFERENCES_.111 _unnamed_cfstring_.113 @@ -2509,73 +3574,42 @@ OBJC_METH_VAR_NAME_.121 OBJC_SELECTOR_REFERENCES_.122 OBJC_METH_VAR_NAME_.123 OBJC_SELECTOR_REFERENCES_.124 -.str.125 _unnamed_cfstring_.126 -OBJC_CLASSLIST_REFERENCES_$_.127 -.str.128 -_unnamed_cfstring_.129 +OBJC_CLASS_NAME_.127 +OBJC_METH_VAR_TYPE_.128 +OBJC_METH_VAR_NAME_.129 OBJC_METH_VAR_NAME_.130 -OBJC_SELECTOR_REFERENCES_.131 -OBJC_METH_VAR_NAME_.132 -OBJC_SELECTOR_REFERENCES_.133 +OBJC_METH_VAR_NAME_.131 +OBJC_METH_VAR_TYPE_.132 +OBJC_METH_VAR_TYPE_.133 OBJC_METH_VAR_NAME_.134 -OBJC_SELECTOR_REFERENCES_.135 -.str.136 -_unnamed_cfstring_.137 -.str.138 -_unnamed_cfstring_.139 -OBJC_METH_VAR_NAME_.140 -OBJC_SELECTOR_REFERENCES_.141 -.str.142 -_unnamed_cfstring_.143 -OBJC_METH_VAR_NAME_.144 -OBJC_SELECTOR_REFERENCES_.145 -OBJC_METH_VAR_NAME_.146 -OBJC_SELECTOR_REFERENCES_.147 -OBJC_METH_VAR_NAME_.148 -OBJC_SELECTOR_REFERENCES_.149 -_unnamed_cfstring_.151 -.str.152 -_unnamed_cfstring_.153 -OBJC_CLASSLIST_REFERENCES_$_.154 -OBJC_METH_VAR_NAME_.155 -OBJC_SELECTOR_REFERENCES_.156 -OBJC_CLASS_NAME_.157 -OBJC_METH_VAR_TYPE_.158 -OBJC_METH_VAR_NAME_.159 -OBJC_METH_VAR_NAME_.160 -OBJC_METH_VAR_NAME_.161 -OBJC_METH_VAR_TYPE_.162 -OBJC_METH_VAR_TYPE_.163 -OBJC_METH_VAR_NAME_.164 -OBJC_METH_VAR_TYPE_.165 -OBJC_METH_VAR_TYPE_.166 -OBJC_METH_VAR_TYPE_.167 -OBJC_METH_VAR_TYPE_.168 -OBJC_METH_VAR_NAME_.169 -OBJC_METH_VAR_TYPE_.170 -OBJC_METH_VAR_TYPE_.171 -OBJC_METH_VAR_TYPE_.172 -OBJC_METH_VAR_TYPE_.173 -OBJC_METH_VAR_TYPE_.174 -OBJC_METH_VAR_NAME_.175 -OBJC_METH_VAR_TYPE_.176 -OBJC_METH_VAR_TYPE_.177 -OBJC_METH_VAR_TYPE_.178 -OBJC_METH_VAR_TYPE_.179 -OBJC_METH_VAR_TYPE_.180 -OBJC_METH_VAR_TYPE_.181 -OBJC_METH_VAR_NAME_.182 -OBJC_METH_VAR_TYPE_.183 -OBJC_METH_VAR_TYPE_.184 -OBJC_METH_VAR_TYPE_.185 -OBJC_METH_VAR_NAME_.186 -OBJC_METH_VAR_TYPE_.187 -OBJC_METH_VAR_NAME_.188 -OBJC_METH_VAR_TYPE_.189 -OBJC_CLASS_NAME_.190 -OBJC_METH_VAR_TYPE_.191 -OBJC_CLASS_NAME_.192 +OBJC_METH_VAR_TYPE_.135 +OBJC_METH_VAR_TYPE_.136 +OBJC_METH_VAR_TYPE_.137 +OBJC_METH_VAR_TYPE_.138 +OBJC_METH_VAR_NAME_.139 +OBJC_METH_VAR_TYPE_.140 +OBJC_METH_VAR_TYPE_.141 +OBJC_METH_VAR_TYPE_.142 +OBJC_METH_VAR_TYPE_.143 +OBJC_METH_VAR_TYPE_.144 +OBJC_METH_VAR_NAME_.145 +OBJC_METH_VAR_TYPE_.146 +OBJC_METH_VAR_TYPE_.147 +OBJC_METH_VAR_TYPE_.148 +OBJC_METH_VAR_TYPE_.149 +OBJC_METH_VAR_TYPE_.150 +OBJC_METH_VAR_TYPE_.151 +OBJC_METH_VAR_NAME_.152 +OBJC_METH_VAR_TYPE_.153 +OBJC_METH_VAR_TYPE_.154 +OBJC_METH_VAR_TYPE_.155 +OBJC_METH_VAR_NAME_.156 +OBJC_METH_VAR_TYPE_.157 +OBJC_METH_VAR_NAME_.158 +OBJC_METH_VAR_TYPE_.159 +OBJC_CLASS_NAME_.160 +OBJC_METH_VAR_TYPE_.161 l_OBJC_$_PROTOCOL_INSTANCE_METHODS_NSFastEnumeration l_OBJC_$_PROTOCOL_METHOD_TYPES_NSFastEnumeration l_OBJC_PROTOCOL_$_NSFastEnumeration @@ -2583,93 +3617,99 @@ OBJC_CLASS_NAME_.192 l_OBJC_$_PROTOCOL_REFS_RLMCollection l_OBJC_$_PROTOCOL_INSTANCE_METHODS_RLMCollection OBJC_PROP_NAME_ATTR_ -OBJC_PROP_NAME_ATTR_.193 -OBJC_PROP_NAME_ATTR_.194 -OBJC_PROP_NAME_ATTR_.195 -OBJC_PROP_NAME_ATTR_.196 -OBJC_PROP_NAME_ATTR_.197 +OBJC_PROP_NAME_ATTR_.163 +OBJC_PROP_NAME_ATTR_.164 +OBJC_PROP_NAME_ATTR_.165 +OBJC_PROP_NAME_ATTR_.166 +OBJC_PROP_NAME_ATTR_.167 l_OBJC_$_PROP_LIST_RLMCollection l_OBJC_$_PROTOCOL_METHOD_TYPES_RLMCollection l_OBJC_PROTOCOL_$_RLMCollection l_OBJC_LABEL_PROTOCOL_$_RLMCollection l_OBJC_CLASS_PROTOCOLS_$_RLMArray l_OBJC_METACLASS_RO_$_RLMArray +OBJC_CLASS_NAME_.168 +OBJC_METH_VAR_NAME_.169 +OBJC_METH_VAR_NAME_.170 +OBJC_METH_VAR_TYPE_.171 +OBJC_METH_VAR_NAME_.172 +OBJC_METH_VAR_NAME_.173 +OBJC_METH_VAR_TYPE_.174 +OBJC_METH_VAR_NAME_.175 +OBJC_METH_VAR_TYPE_.176 +OBJC_METH_VAR_NAME_.177 +OBJC_METH_VAR_TYPE_.178 +OBJC_METH_VAR_TYPE_.179 +OBJC_METH_VAR_NAME_.180 +OBJC_METH_VAR_TYPE_.181 +OBJC_METH_VAR_TYPE_.182 +OBJC_METH_VAR_NAME_.183 +l_OBJC_$_INSTANCE_METHODS_RLMArray +OBJC_METH_VAR_NAME_.184 +OBJC_METH_VAR_TYPE_.185 +OBJC_METH_VAR_NAME_.186 +OBJC_METH_VAR_NAME_.187 +OBJC_METH_VAR_TYPE_.188 +OBJC_METH_VAR_NAME_.189 +OBJC_METH_VAR_TYPE_.190 +l_OBJC_$_INSTANCE_VARIABLES_RLMArray +OBJC_CLASS_NAME_.191 +OBJC_PROP_NAME_ATTR_.192 +OBJC_PROP_NAME_ATTR_.193 +OBJC_PROP_NAME_ATTR_.194 +l_OBJC_$_PROP_LIST_RLMArray +l_OBJC_CLASS_RO_$_RLMArray +OBJC_IVAR_$_RLMSortDescriptor._property +OBJC_IVAR_$_RLMSortDescriptor._ascending +OBJC_METH_VAR_NAME_.195 +OBJC_SELECTOR_REFERENCES_.196 +OBJC_CLASS_NAME_.197 +l_OBJC_$_CLASS_METHODS_RLMSortDescriptor +l_OBJC_METACLASS_RO_$_RLMSortDescriptor OBJC_CLASS_NAME_.198 OBJC_METH_VAR_NAME_.199 OBJC_METH_VAR_NAME_.200 -OBJC_METH_VAR_TYPE_.201 +OBJC_METH_VAR_NAME_.201 OBJC_METH_VAR_NAME_.202 OBJC_METH_VAR_NAME_.203 OBJC_METH_VAR_TYPE_.204 +l_OBJC_$_INSTANCE_METHODS_RLMSortDescriptor OBJC_METH_VAR_NAME_.205 OBJC_METH_VAR_TYPE_.206 OBJC_METH_VAR_NAME_.207 -OBJC_METH_VAR_TYPE_.208 -OBJC_METH_VAR_TYPE_.209 -OBJC_METH_VAR_NAME_.210 -OBJC_METH_VAR_TYPE_.211 -OBJC_METH_VAR_TYPE_.212 -l_OBJC_$_INSTANCE_METHODS_RLMArray -OBJC_METH_VAR_NAME_.213 -OBJC_METH_VAR_TYPE_.214 -OBJC_METH_VAR_NAME_.215 -OBJC_METH_VAR_NAME_.216 -OBJC_METH_VAR_TYPE_.217 +l_OBJC_$_INSTANCE_VARIABLES_RLMSortDescriptor +OBJC_PROP_NAME_ATTR_.208 +OBJC_PROP_NAME_ATTR_.209 +OBJC_PROP_NAME_ATTR_.210 +OBJC_PROP_NAME_ATTR_.211 +l_OBJC_$_PROP_LIST_RLMSortDescriptor +l_OBJC_CLASS_RO_$_RLMSortDescriptor +.str.212 +_unnamed_cfstring_.213 +_unnamed_cfstring_.215 +.str.216 +_unnamed_cfstring_.217 OBJC_METH_VAR_NAME_.218 -OBJC_METH_VAR_TYPE_.219 -l_OBJC_$_INSTANCE_VARIABLES_RLMArray -OBJC_CLASS_NAME_.220 -OBJC_PROP_NAME_ATTR_.221 -OBJC_PROP_NAME_ATTR_.222 -OBJC_PROP_NAME_ATTR_.223 -l_OBJC_$_PROP_LIST_RLMArray -l_OBJC_CLASS_RO_$_RLMArray -OBJC_IVAR_$_RLMSortDescriptor._property -OBJC_IVAR_$_RLMSortDescriptor._ascending +OBJC_SELECTOR_REFERENCES_.219 +.str.220 +_unnamed_cfstring_.221 +OBJC_METH_VAR_NAME_.222 +OBJC_SELECTOR_REFERENCES_.223 OBJC_METH_VAR_NAME_.224 OBJC_SELECTOR_REFERENCES_.225 -OBJC_CLASS_NAME_.226 -l_OBJC_$_CLASS_METHODS_RLMSortDescriptor -l_OBJC_METACLASS_RO_$_RLMSortDescriptor -OBJC_CLASS_NAME_.227 -OBJC_METH_VAR_NAME_.228 +OBJC_CLASSLIST_REFERENCES_$_.226 +OBJC_METH_VAR_NAME_.227 +OBJC_SELECTOR_REFERENCES_.228 OBJC_METH_VAR_NAME_.229 -OBJC_METH_VAR_NAME_.230 -OBJC_METH_VAR_NAME_.232 -OBJC_METH_VAR_TYPE_.233 -l_OBJC_$_INSTANCE_METHODS_RLMSortDescriptor -OBJC_METH_VAR_NAME_.234 -OBJC_METH_VAR_TYPE_.235 -OBJC_METH_VAR_NAME_.236 -l_OBJC_$_INSTANCE_VARIABLES_RLMSortDescriptor -OBJC_PROP_NAME_ATTR_.237 -OBJC_PROP_NAME_ATTR_.238 -OBJC_PROP_NAME_ATTR_.239 -OBJC_PROP_NAME_ATTR_.240 -l_OBJC_$_PROP_LIST_RLMSortDescriptor -l_OBJC_CLASS_RO_$_RLMSortDescriptor -.str.241 -_unnamed_cfstring_.242 -_unnamed_cfstring_.244 -OBJC_METH_VAR_NAME_.245 -OBJC_SELECTOR_REFERENCES_.246 -.str.247 -_unnamed_cfstring_.248 -OBJC_METH_VAR_NAME_.251 -OBJC_SELECTOR_REFERENCES_.252 -OBJC_CLASSLIST_REFERENCES_$_.253 -OBJC_METH_VAR_NAME_.254 -OBJC_SELECTOR_REFERENCES_.255 -OBJC_METH_VAR_NAME_.256 -OBJC_SELECTOR_REFERENCES_.257 -OBJC_CLASSLIST_REFERENCES_$_.273 -OBJC_METH_VAR_NAME_.274 -OBJC_SELECTOR_REFERENCES_.275 -OBJC_METH_VAR_NAME_.276 -OBJC_SELECTOR_REFERENCES_.277 +OBJC_SELECTOR_REFERENCES_.230 +OBJC_CLASSLIST_REFERENCES_$_.259 +OBJC_METH_VAR_NAME_.260 +OBJC_SELECTOR_REFERENCES_.261 +OBJC_METH_VAR_NAME_.262 +OBJC_SELECTOR_REFERENCES_.263 OBJC_LABEL_CLASS_$ -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm:265:8)> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArray.mm +changeArray<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArray.mm:270:8)> forward > reset<__strong id *> unique_ptr<__strong id *> @@ -2679,26 +3719,26 @@ max > max min > min -~ -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm:71:30)> +changeArray<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArray.mm:72:30)> changeArray -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm:63:30)> +changeArray<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArray.mm:64:30)> NSMakeRange -/Applications/Xcode-7.3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm:67:30)> +/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h +changeArray<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArray.mm:68:30)> RLMValidateMatchingObjectType RLMValidateArrayBounds forward<__strong id *> -[RLMSortDescriptor .cxx_destruct] -[RLMSortDescriptor setAscending:] -[RLMSortDescriptor ascending] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.h -[RLMSortDescriptor setProperty:] -[RLMSortDescriptor property] -[RLMSortDescriptor reversedSortDescriptor] +[RLMSortDescriptor sortDescriptorWithProperty:ascending:] -[RLMArray .cxx_destruct] -[RLMArray objectClassName] +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArray.h -[RLMArray descriptionWithMaxDepth:] -[RLMArray description] -[RLMArray indexOfObjectWhere:args:] @@ -2741,7 +3781,6 @@ forward<__strong id *> -[RLMArrayHolder .cxx_construct] -[RLMArrayHolder .cxx_destruct] +[RLMArrayLinkView arrayWithObjectClassName:view:realm:key:parentSchema:] -_ZN5realm4util8bind_ptrINS_8LinkViewEEaSERKS3_ -[RLMArrayLinkView realm] -[RLMArrayLinkView count] -[RLMArrayLinkView isInvalidated] @@ -2749,49 +3788,52 @@ _ZN5realm4util8bind_ptrINS_8LinkViewEEaSERKS3_ -[RLMArrayLinkView hash] -[RLMArrayLinkView countByEnumeratingWithState:objects:count:] -[RLMArrayLinkView objectAtIndex:] -_ZL22RLMValidateArrayBoundsP16RLMArrayLinkViewjb -[RLMArrayLinkView addObject:] _ZL15RLMInsertObjectP16RLMArrayLinkViewP9RLMObjectj -[RLMArrayLinkView insertObject:atIndex:] -[RLMArrayLinkView insertObjects:atIndexes:] _ZL11changeArrayP16RLMArrayLinkView16NSKeyValueChangeP10NSIndexSetU13block_pointerFvvE __44-[RLMArrayLinkView insertObjects:atIndexes:]_block_invoke +_ZL19validateObjectToAddP16RLMArrayLinkViewP9RLMObject -[RLMArrayLinkView removeObjectAtIndex:] _ZL11changeArrayP16RLMArrayLinkView16NSKeyValueChangejU13block_pointerFvvE __40-[RLMArrayLinkView removeObjectAtIndex:]_block_invoke +__copy_helper_block_.33 +__destroy_helper_block_.34 -[RLMArrayLinkView removeObjectsAtIndexes:] __43-[RLMArrayLinkView removeObjectsAtIndexes:]_block_invoke -__copy_helper_block_.48 -__destroy_helper_block_.49 +__43-[RLMArrayLinkView removeObjectsAtIndexes:]_block_invoke_2 +__copy_helper_block_.36 +__destroy_helper_block_.37 -[RLMArrayLinkView addObjectsFromArray:] _ZL11changeArrayP16RLMArrayLinkView16NSKeyValueChange8_NSRangeU13block_pointerFvvE __40-[RLMArrayLinkView addObjectsFromArray:]_block_invoke -__copy_helper_block_.51 -__destroy_helper_block_.52 +__copy_helper_block_.45 +__destroy_helper_block_.46 -[RLMArrayLinkView removeAllObjects] __36-[RLMArrayLinkView removeAllObjects]_block_invoke -__copy_helper_block_.54 -__destroy_helper_block_.55 +__copy_helper_block_.48 +__destroy_helper_block_.49 -[RLMArrayLinkView replaceObjectAtIndex:withObject:] __52-[RLMArrayLinkView replaceObjectAtIndex:withObject:]_block_invoke -__copy_helper_block_.61 -__destroy_helper_block_.62 +__copy_helper_block_.51 +__destroy_helper_block_.52 -[RLMArrayLinkView moveObjectAtIndex:toIndex:] __46-[RLMArrayLinkView moveObjectAtIndex:toIndex:]_block_invoke -__copy_helper_block_.64 -__destroy_helper_block_.65 +__copy_helper_block_.54 +__destroy_helper_block_.55 -[RLMArrayLinkView exchangeObjectAtIndex:withObjectAtIndex:] __60-[RLMArrayLinkView exchangeObjectAtIndex:withObjectAtIndex:]_block_invoke -__copy_helper_block_.67 -__destroy_helper_block_.68 +__copy_helper_block_.57 +__destroy_helper_block_.58 -[RLMArrayLinkView indexOfObject:] -[RLMArrayLinkView valueForKeyPath:] -[RLMArrayLinkView valueForKey:] -[RLMArrayLinkView setValue:forKey:] -[RLMArrayLinkView deleteObjectsFromRealm] __42-[RLMArrayLinkView deleteObjectsFromRealm]_block_invoke -__copy_helper_block_.88 -__destroy_helper_block_.89 +__copy_helper_block_.80 +__destroy_helper_block_.81 -[RLMArrayLinkView sortedResultsUsingDescriptors:] -[RLMArrayLinkView objectsWithPredicate:] -[RLMArrayLinkView indexOfObjectWithPredicate:] @@ -2800,84 +3842,79 @@ __destroy_helper_block_.89 -[RLMArrayLinkView indexInSource:] -[RLMArrayLinkView tableView] -[RLMArrayLinkView addNotificationBlock:] -__41-[RLMArrayLinkView addNotificationBlock:]_block_invoke -__copy_helper_block_.95 -__destroy_helper_block_.96 -__41-[RLMArrayLinkView addNotificationBlock:]_block_invoke.99 -__copy_helper_block_.100 -__destroy_helper_block_.101 -[RLMArrayLinkView objectSchema] -[RLMArrayLinkView setObjectSchema:] -[RLMArrayLinkView .cxx_destruct] -[RLMArrayLinkView .cxx_construct] +_ZL10throwErrorv ___ZL15RLMInsertObjectP16RLMArrayLinkViewP9RLMObjectj_block_invoke -__copy_helper_block_.187 -__destroy_helper_block_.188 -_ZN5realm7ResultsC2EOS0_ OBJC_IVAR_$_RLMArrayLinkView._objectSchema OBJC_METH_VAR_NAME_.17 OBJC_SELECTOR_REFERENCES_.18 OBJC_CLASSLIST_REFERENCES_$_.19 OBJC_METH_VAR_NAME_.26 OBJC_SELECTOR_REFERENCES_.27 -OBJC_METH_VAR_NAME_.28 -OBJC_SELECTOR_REFERENCES_.29 -_unnamed_cfstring_.31 -OBJC_METH_VAR_NAME_.32 -OBJC_SELECTOR_REFERENCES_.33 -_unnamed_cfstring_.35 -OBJC_METH_VAR_NAME_.36 -OBJC_SELECTOR_REFERENCES_.37 -_unnamed_cfstring_.45 +OBJC_METH_VAR_NAME_.30 +OBJC_SELECTOR_REFERENCES_.31 +__block_descriptor_tmp.35 +__block_descriptor_tmp.39 +__block_descriptor_tmp.47 __block_descriptor_tmp.50 __block_descriptor_tmp.53 __block_descriptor_tmp.56 -OBJC_METH_VAR_NAME_.57 -OBJC_SELECTOR_REFERENCES_.58 -OBJC_METH_VAR_NAME_.59 -OBJC_SELECTOR_REFERENCES_.60 -__block_descriptor_tmp.63 -__block_descriptor_tmp.66 -__block_descriptor_tmp.69 -OBJC_METH_VAR_NAME_.72 -OBJC_SELECTOR_REFERENCES_.73 +__block_descriptor_tmp.59 +OBJC_METH_VAR_NAME_.60 +OBJC_SELECTOR_REFERENCES_.61 +OBJC_METH_VAR_NAME_.64 +OBJC_SELECTOR_REFERENCES_.65 +OBJC_METH_VAR_NAME_.70 +OBJC_SELECTOR_REFERENCES_.71 +OBJC_CLASSLIST_REFERENCES_$_.72 +OBJC_CLASSLIST_REFERENCES_$_.77 OBJC_METH_VAR_NAME_.78 OBJC_SELECTOR_REFERENCES_.79 -OBJC_CLASSLIST_REFERENCES_$_.80 -OBJC_METH_VAR_NAME_.81 -OBJC_SELECTOR_REFERENCES_.82 +__block_descriptor_tmp.82 OBJC_METH_VAR_NAME_.83 OBJC_SELECTOR_REFERENCES_.84 -OBJC_CLASSLIST_REFERENCES_$_.85 -OBJC_METH_VAR_NAME_.86 -OBJC_SELECTOR_REFERENCES_.87 -__block_descriptor_tmp.90 -OBJC_METH_VAR_NAME_.93 -OBJC_SELECTOR_REFERENCES_.94 -__block_descriptor_tmp.98 -OBJC_METH_VAR_NAME_.105 +OBJC_METH_VAR_NAME_.85 +OBJC_SELECTOR_REFERENCES_.86 +OBJC_METH_VAR_NAME_.87 l_OBJC_$_CLASS_METHODS_RLMArrayLinkView -OBJC_METH_VAR_TYPE_.107 -OBJC_METH_VAR_TYPE_.109 -OBJC_METH_VAR_TYPE_.110 -OBJC_METH_VAR_TYPE_.111 -OBJC_METH_VAR_NAME_.112 -OBJC_METH_VAR_TYPE_.113 -OBJC_METH_VAR_TYPE_.114 -OBJC_CLASS_NAME_.115 +OBJC_METH_VAR_TYPE_.89 +OBJC_METH_VAR_TYPE_.91 +OBJC_METH_VAR_NAME_.92 +OBJC_METH_VAR_TYPE_.93 +OBJC_METH_VAR_TYPE_.94 +OBJC_METH_VAR_NAME_.95 +OBJC_METH_VAR_TYPE_.96 +OBJC_METH_VAR_TYPE_.97 +OBJC_CLASS_NAME_.98 l_OBJC_$_PROTOCOL_INSTANCE_METHODS_RLMFastEnumerable -OBJC_PROP_NAME_ATTR_.116 -OBJC_PROP_NAME_ATTR_.117 -OBJC_PROP_NAME_ATTR_.118 -OBJC_PROP_NAME_ATTR_.119 -OBJC_PROP_NAME_ATTR_.120 +OBJC_PROP_NAME_ATTR_.99 +OBJC_PROP_NAME_ATTR_.100 +OBJC_PROP_NAME_ATTR_.101 +OBJC_PROP_NAME_ATTR_.102 +OBJC_PROP_NAME_ATTR_.103 l_OBJC_$_PROP_LIST_RLMFastEnumerable l_OBJC_$_PROTOCOL_METHOD_TYPES_RLMFastEnumerable l_OBJC_PROTOCOL_$_RLMFastEnumerable l_OBJC_LABEL_PROTOCOL_$_RLMFastEnumerable l_OBJC_CLASS_PROTOCOLS_$_RLMArrayLinkView l_OBJC_METACLASS_RO_$_RLMArrayLinkView -OBJC_CLASS_NAME_.121 +OBJC_CLASS_NAME_.104 +OBJC_METH_VAR_TYPE_.105 +OBJC_METH_VAR_TYPE_.107 +OBJC_METH_VAR_TYPE_.109 +OBJC_METH_VAR_TYPE_.111 +OBJC_METH_VAR_NAME_.112 +OBJC_METH_VAR_TYPE_.113 +OBJC_METH_VAR_NAME_.114 +OBJC_METH_VAR_TYPE_.115 +OBJC_METH_VAR_NAME_.116 +OBJC_METH_VAR_TYPE_.117 +OBJC_METH_VAR_NAME_.118 +OBJC_METH_VAR_TYPE_.119 +OBJC_METH_VAR_NAME_.120 OBJC_METH_VAR_NAME_.122 OBJC_METH_VAR_TYPE_.123 OBJC_METH_VAR_NAME_.124 @@ -2885,125 +3922,115 @@ OBJC_METH_VAR_TYPE_.125 OBJC_METH_VAR_NAME_.126 OBJC_METH_VAR_TYPE_.127 OBJC_METH_VAR_NAME_.128 -OBJC_METH_VAR_TYPE_.129 OBJC_METH_VAR_TYPE_.130 -OBJC_METH_VAR_NAME_.131 -OBJC_METH_VAR_TYPE_.132 +OBJC_METH_VAR_TYPE_.131 +OBJC_METH_VAR_NAME_.132 OBJC_METH_VAR_NAME_.133 -OBJC_METH_VAR_TYPE_.134 OBJC_METH_VAR_NAME_.135 -OBJC_METH_VAR_TYPE_.136 +OBJC_METH_VAR_NAME_.136 OBJC_METH_VAR_NAME_.137 OBJC_METH_VAR_NAME_.138 -OBJC_METH_VAR_NAME_.139 -OBJC_METH_VAR_TYPE_.140 -OBJC_METH_VAR_NAME_.141 -OBJC_METH_VAR_TYPE_.142 +OBJC_METH_VAR_TYPE_.139 +OBJC_METH_VAR_NAME_.140 +OBJC_METH_VAR_NAME_.142 OBJC_METH_VAR_NAME_.143 -OBJC_METH_VAR_TYPE_.144 -OBJC_METH_VAR_NAME_.145 -OBJC_METH_VAR_TYPE_.147 -OBJC_METH_VAR_TYPE_.148 +OBJC_METH_VAR_NAME_.144 +l_OBJC_$_INSTANCE_METHODS_RLMArrayLinkView +OBJC_METH_VAR_NAME_.147 OBJC_METH_VAR_NAME_.149 -OBJC_METH_VAR_NAME_.150 OBJC_METH_VAR_NAME_.151 -OBJC_METH_VAR_NAME_.152 +OBJC_METH_VAR_TYPE_.152 OBJC_METH_VAR_NAME_.153 -OBJC_METH_VAR_NAME_.154 -OBJC_METH_VAR_TYPE_.156 -OBJC_METH_VAR_TYPE_.157 -OBJC_METH_VAR_NAME_.158 -l_OBJC_$_INSTANCE_METHODS_RLMArrayLinkView -OBJC_METH_VAR_NAME_.163 -OBJC_METH_VAR_TYPE_.164 -OBJC_METH_VAR_NAME_.165 -OBJC_METH_VAR_NAME_.167 l_OBJC_$_INSTANCE_VARIABLES_RLMArrayLinkView -OBJC_PROP_NAME_ATTR_.170 +OBJC_PROP_NAME_ATTR_.154 l_OBJC_$_PROP_LIST_RLMArrayLinkView l_OBJC_CLASS_RO_$_RLMArrayLinkView -.str.171 -.str.173 -_unnamed_cfstring_.174 -OBJC_SELECTOR_REFERENCES_.176 -.str.177 -_unnamed_cfstring_.178 -.str.179 -.str.180 +_unnamed_cfstring_.158 +.str.159 +_unnamed_cfstring_.160 +_unnamed_cfstring_.162 +.str.163 +_unnamed_cfstring_.164 +__block_descriptor_tmp.167 +.str.168 +_unnamed_cfstring_.169 +.str.170 +_unnamed_cfstring_.171 +OBJC_SELECTOR_REFERENCES_.172 +OBJC_SELECTOR_REFERENCES_.173 +.str.174 +_unnamed_cfstring_.175 +OBJC_CLASSLIST_REFERENCES_$_.176 +OBJC_SELECTOR_REFERENCES_.178 +OBJC_METH_VAR_NAME_.179 +OBJC_SELECTOR_REFERENCES_.180 .str.181 +.str.182 .str.183 -.str.184 .str.185 .str.186 -OBJC_METH_VAR_NAME_.190 -OBJC_SELECTOR_REFERENCES_.191 +.str.187 +.str.188 +.str.189 +.str.191 .str.192 -_unnamed_cfstring_.193 -OBJC_CLASSLIST_REFERENCES_$_.194 -OBJC_METH_VAR_NAME_.195 -OBJC_SELECTOR_REFERENCES_.196 -OBJC_METH_VAR_NAME_.197 -OBJC_SELECTOR_REFERENCES_.198 -.str.199 -_unnamed_cfstring_.200 -.str.201 -_unnamed_cfstring_.202 +.str.193 +.str.194 +.str.200 .str.203 +.str.204 .str.205 -.str.207 -.str.208 -.str.209 -.str.210 -.str.211 -.str.212 -.str.213 -.str.214 -.str.215 -.str.216 +OBJC_METH_VAR_NAME_.213 +OBJC_SELECTOR_REFERENCES_.214 +OBJC_CLASSLIST_REFERENCES_$_.215 +OBJC_METH_VAR_NAME_.216 +OBJC_SELECTOR_REFERENCES_.217 +.str.221 .str.222 +.str.223 +.str.224 .str.226 .str.227 -OBJC_METH_VAR_NAME_.235 -OBJC_SELECTOR_REFERENCES_.236 -OBJC_CLASSLIST_REFERENCES_$_.237 -OBJC_METH_VAR_NAME_.238 -OBJC_SELECTOR_REFERENCES_.239 -OBJC_METH_VAR_NAME_.240 -OBJC_SELECTOR_REFERENCES_.241 -.str.242 -.str.244 -.str.245 -.str.246 -.str.248 -.str.249 -.str.250 +.str.228 +.str.229 forward > move forward forward make_unique -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm:333:8)> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:160:25)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:143:21)> +changeArray<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:303:8)> RLMDynamicCast -move -swap forward -get_version_counter -get_origin_table -move +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:400:28)> RLMConvertNotFound -RLMValidateObjectClass -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm:131:30)> -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm:127:30)> -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm:135:30)> -RLMLinkViewArrayValidateInWriteTransaction +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:376:34)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:369:34)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:364:36)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:358:25)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:351:21)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:346:21)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:327:38)> +BasicRow +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:321:28)> +changeArray<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:169:30)> +changeArray<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:165:30)> +validateObjectToAdd +changeArray<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:173:30)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:227:33)> RLMInsertObject -RLMLinkViewArrayValidateAttached -get_origin_row_index +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:222:52)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:207:25)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:188:28)> +throwError +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArrayLinkView.mm:184:28)> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/list.hpp -[RLMArrayLinkView .cxx_construct] -[RLMArrayLinkView .cxx_destruct] -[RLMArrayLinkView setObjectSchema:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray_Private.hpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMArray_Private.hpp -[RLMArrayLinkView objectSchema] -[RLMArrayLinkView addNotificationBlock:] -[RLMArrayLinkView tableView] @@ -3038,16 +4065,230 @@ get_origin_row_index RLMEnsureArrayObservationInfo RLMValidateArrayObservationKey +[RLMArrayLinkView arrayWithObjectClassName:view:realm:key:parentSchema:] -.str -.str.1 +-[RLMFastEnumerator initWithCollection:objectSchema:] +-[RLMFastEnumerator dealloc] +-[RLMFastEnumerator detach] +-[RLMFastEnumerator countByEnumeratingWithState:count:] +-[RLMFastEnumerator .cxx_destruct] +-[RLMFastEnumerator .cxx_construct] +-[RLMCancellationToken initWithToken:] +-[RLMCancellationToken stop] +-[RLMCancellationToken .cxx_destruct] +-[RLMCancellationToken .cxx_construct] +-[RLMCollectionChange initWithChanges:] +-[RLMCollectionChange insertions] +_ZL7toArrayRKN5realm8IndexSetE +-[RLMCollectionChange deletions] +-[RLMCollectionChange modifications] +-[RLMCollectionChange deletionsInSection:] +_ZL16toIndexPathArrayRKN5realm8IndexSetEj +-[RLMCollectionChange insertionsInSection:] +-[RLMCollectionChange modificationsInSection:] +-[RLMCollectionChange .cxx_destruct] +-[RLMCollectionChange .cxx_construct] +_ZNSt3__110__function6__funcIZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS8_P19RLMCollectionChangeP7NSErrorEbEUlRKNS3_19CollectionChangeSetESt13exception_ptrE_NS_9allocatorISL_EEFvSH_SK_EED1Ev +_ZNSt3__110__function6__funcIZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS8_P19RLMCollectionChangeP7NSErrorEbEUlRKNS3_19CollectionChangeSetESt13exception_ptrE_NS_9allocatorISL_EEFvSH_SK_EED0Ev +_ZNSt3__128__invoke_void_return_wrapperIvE6__callIJRZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS9_P19RLMCollectionChangeP7NSErrorEbEUlRKNS4_19CollectionChangeSetESt13exception_ptrE_SI_SL_EEEvDpOT_ +_ZZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_clESG_SH_ +_ZNSt3__110__function6__funcIZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS8_P19RLMCollectionChangeP7NSErrorEbEUlRKNS3_19CollectionChangeSetESt13exception_ptrE_NS_9allocatorISL_EEFvSH_SK_EED1Ev +_ZNSt3__110__function6__funcIZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS8_P19RLMCollectionChangeP7NSErrorEbEUlRKNS3_19CollectionChangeSetESt13exception_ptrE_NS_9allocatorISL_EEFvSH_SK_EED0Ev +_ZNSt3__128__invoke_void_return_wrapperIvE6__callIJRZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS9_P19RLMCollectionChangeP7NSErrorEbEUlRKNS4_19CollectionChangeSetESt13exception_ptrE_SI_SL_EEEvDpOT_ +_ZZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_clESG_SH_ +OBJC_IVAR_$_RLMFastEnumerator._realm +OBJC_IVAR_$_RLMFastEnumerator._objectSchema +OBJC_IVAR_$_RLMFastEnumerator._tableView +OBJC_IVAR_$_RLMFastEnumerator._collection +OBJC_IVAR_$_RLMFastEnumerator._strongBuffer +l_OBJC_METACLASS_RO_$_RLMFastEnumerator +OBJC_CLASS_NAME_.33 +OBJC_METH_VAR_TYPE_.35 +OBJC_METH_VAR_TYPE_.38 +OBJC_METH_VAR_NAME_.39 +OBJC_METH_VAR_TYPE_.41 +l_OBJC_$_INSTANCE_METHODS_RLMFastEnumerator +OBJC_METH_VAR_NAME_.42 +OBJC_METH_VAR_TYPE_.43 +OBJC_METH_VAR_TYPE_.45 +OBJC_METH_VAR_NAME_.46 +OBJC_METH_VAR_TYPE_.47 +OBJC_METH_VAR_NAME_.48 +OBJC_METH_VAR_TYPE_.49 +OBJC_METH_VAR_NAME_.50 +OBJC_METH_VAR_TYPE_.51 +l_OBJC_$_INSTANCE_VARIABLES_RLMFastEnumerator +l_OBJC_CLASS_RO_$_RLMFastEnumerator +OBJC_METH_VAR_NAME_.52 +OBJC_SELECTOR_REFERENCES_.53 +OBJC_METH_VAR_NAME_.54 +OBJC_SELECTOR_REFERENCES_.55 +OBJC_METH_VAR_NAME_.56 +OBJC_SELECTOR_REFERENCES_.57 +OBJC_CLASSLIST_REFERENCES_$_.58 +_unnamed_cfstring_.62 +OBJC_CLASSLIST_REFERENCES_$_.65 +OBJC_METH_VAR_NAME_.66 +OBJC_SELECTOR_REFERENCES_.67 +OBJC_METH_VAR_NAME_.72 +OBJC_SELECTOR_REFERENCES_.73 +OBJC_CLASSLIST_REFERENCES_$_.76 +_unnamed_cfstring_.78 +OBJC_SELECTOR_REFERENCES_.88 +_unnamed_cfstring_.90 +OBJC_METH_VAR_NAME_.93 +OBJC_SELECTOR_REFERENCES_.94 +_unnamed_cfstring_.96 +OBJC_METH_VAR_NAME_.97 +OBJC_SELECTOR_REFERENCES_.98 +OBJC_METH_VAR_NAME_.99 +OBJC_SELECTOR_REFERENCES_.100 +OBJC_METH_VAR_NAME_.101 +OBJC_SELECTOR_REFERENCES_.102 +_unnamed_cfstring_.104 +_unnamed_cfstring_.106 +OBJC_CLASSLIST_SUP_REFS_$_.107 +OBJC_IVAR_$_RLMCancellationToken._token +l_OBJC_METACLASS_RO_$_RLMCancellationToken +OBJC_METH_VAR_NAME_.109 +OBJC_METH_VAR_TYPE_.110 +l_OBJC_$_INSTANCE_METHODS_RLMCancellationToken +l_OBJC_$_INSTANCE_VARIABLES_RLMCancellationToken +l_OBJC_CLASS_RO_$_RLMCancellationToken +OBJC_CLASSLIST_SUP_REFS_$_.114 +OBJC_IVAR_$_RLMCollectionChange._indices +OBJC_CLASS_NAME_.115 +l_OBJC_METACLASS_RO_$_RLMCollectionChange +OBJC_METH_VAR_TYPE_.122 +l_OBJC_$_INSTANCE_METHODS_RLMCollectionChange +OBJC_METH_VAR_NAME_.125 +OBJC_METH_VAR_TYPE_.126 +l_OBJC_$_INSTANCE_VARIABLES_RLMCollectionChange +OBJC_PROP_NAME_ATTR_.127 +OBJC_PROP_NAME_ATTR_.128 +OBJC_PROP_NAME_ATTR_.129 +l_OBJC_$_PROP_LIST_RLMCollectionChange +l_OBJC_CLASS_RO_$_RLMCollectionChange +OBJC_CLASSLIST_REFERENCES_$_.130 +OBJC_SELECTOR_REFERENCES_.131 +.str.135 +.str.136 +.str.137 +.str.138 +.str.140 +.str.141 +.str.142 +.str.143 +.str.145 +.str.147 +.str.148 +.str.150 +.str.151 +.str.152 +OBJC_METH_VAR_NAME_.154 +OBJC_SELECTOR_REFERENCES_.155 +OBJC_CLASSLIST_REFERENCES_$_.156 +OBJC_METH_VAR_NAME_.157 +OBJC_SELECTOR_REFERENCES_.158 +OBJC_CLASSLIST_REFERENCES_$_.159 +OBJC_METH_VAR_NAME_.160 +OBJC_SELECTOR_REFERENCES_.161 +.str.172 +OBJC_CLASSLIST_REFERENCES_$_.180 +OBJC_SELECTOR_REFERENCES_.181 +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &> +call +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm +__invoke<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &, realm::CollectionChangeSet, std::exception_ptr> +__call<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &, realm::CollectionChangeSet, std::exception_ptr> +get<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> &> +__libcpp_compressed_pair_imp &, 0, 0> +move &> &> +__compressed_pair &> +__tuple_leaf &, void> +__tuple_impl<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> &, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> &> +forward &> +forward_as_tuple &> +get<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &> +__libcpp_compressed_pair_imp &&, 0, 0> +move &> +__compressed_pair &&> +__tuple_leaf +__tuple_impl<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &> +forward +forward_as_tuple +allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> +_ZZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_C2EOSI_ +_ZZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_C1EOSI_ +get<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &&> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &&> +get<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> &&> +forward &&> +__libcpp_compressed_pair_imp<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> &&, 0, 0> +move &&> &> +move &> +__compressed_pair<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> &&> +move &> +__tuple_leaf, void> +__tuple_impl<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> > +tuple , false> +forward > +forward_as_tuple > +__tuple_leaf<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15), void> +__tuple_impl<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &&, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> +tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15), false> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> +forward_as_tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> +allocator, void (realm::CollectionChangeSet, std::exception_ptr)> > +move<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15) &> +forward, void (realm::CollectionChangeSet, std::exception_ptr)> > > > +forward, void (realm::CollectionChangeSet, std::exception_ptr)> *> +move, void (realm::CollectionChangeSet, std::exception_ptr)> > > &> +__not_null<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> +function<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMCollection.mm:307:15)> +_ZZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_C2EOSI_ +_ZZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_C1EOSI_ +operator= +_ZZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_C2ERKSI_ +_ZZ23RLMAddNotificationBlockIN5realm7ResultsEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_C1ERKSI_ +_ZZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_C2ERKSI_ +_ZZ23RLMAddNotificationBlockIN5realm4ListEEP20RLMNotificationTokenP11objc_objectRT_U13block_pointerFvS5_P19RLMCollectionChangeP7NSErrorEbENUlRKNS0_19CollectionChangeSetESt13exception_ptrE_C1ERKSI_ +toIndexPathArray +toArray +move +move +get_source_ndx +is_row_attached +RLMAddNotificationBlock +RLMAddNotificationBlock +-[RLMCollectionChange .cxx_construct] +-[RLMCollectionChange .cxx_destruct] +-[RLMCollectionChange modificationsInSection:] +-[RLMCollectionChange insertionsInSection:] +-[RLMCollectionChange deletionsInSection:] +-[RLMCollectionChange modifications] +-[RLMCollectionChange deletions] +-[RLMCollectionChange insertions] +-[RLMCollectionChange initWithChanges:] +-[RLMCancellationToken .cxx_construct] +-[RLMCancellationToken .cxx_destruct] +-[RLMCancellationToken stop] +-[RLMCancellationToken initWithToken:] +RLMDescriptionWithMaxDepth +RLMCollectionSetValueForKey +RLMCollectionValueForKey +-[RLMFastEnumerator .cxx_construct] +-[RLMFastEnumerator .cxx_destruct] +-[RLMFastEnumerator countByEnumeratingWithState:count:] +-[RLMFastEnumerator detach] +-[RLMFastEnumerator dealloc] +-[RLMFastEnumerator initWithCollection:objectSchema:] _unnamed_cfstring_.2 -.str.3 _unnamed_cfstring_.4 _unnamed_cfstring_.6 _unnamed_cfstring_.8 _unnamed_cfstring_.10 _unnamed_cfstring_.12 -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMConstants.m +_unnamed_cfstring_.14 +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMConstants.m -[RLMListBase initWithArray:] -[RLMListBase valueForKey:] -[RLMListBase countByEnumeratingWithState:objects:count:] @@ -3059,6 +4300,7 @@ _unnamed_cfstring_.12 -[RLMListBase .cxx_construct] OBJC_IVAR_$_RLMListBase.__rlmArray OBJC_SELECTOR_REFERENCES_.6 +OBJC_SELECTOR_REFERENCES_.8 OBJC_SELECTOR_REFERENCES_.10 OBJC_IVAR_$_RLMListBase._observationInfo OBJC_METH_VAR_NAME_.11 @@ -3081,10 +4323,10 @@ OBJC_PROP_NAME_ATTR_.29 l_OBJC_$_PROP_LIST_RLMListBase l_OBJC_CLASS_RO_$_RLMListBase -[RLMListBase .cxx_construct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMListBase.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMListBase.mm -[RLMListBase .cxx_destruct] -[RLMListBase set_rlmArray:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMListBase.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMListBase.h -[RLMListBase _rlmArray] -[RLMListBase addObserver:forKeyPath:options:context:] -[RLMListBase objectsAtIndexes:] @@ -3102,6 +4344,7 @@ OBJC_PROP_NAME_ATTR_.29 -[RLMMigration createObject:withObject:] -[RLMMigration deleteObject:] -[RLMMigration deleteDataForClassName:] +-[RLMMigration renamePropertyForClass:oldName:newName:] -[RLMMigration oldRealm] -[RLMMigration setOldRealm:] -[RLMMigration realm] @@ -3113,41 +4356,46 @@ OBJC_METH_VAR_TYPE_.7 l_OBJC_$_INSTANCE_METHODS_RLMMigrationRealm l_OBJC_CLASS_RO_$_RLMMigrationRealm OBJC_IVAR_$_RLMMigration._realm -OBJC_IVAR_$_RLMMigration._oldRealm -OBJC_SELECTOR_REFERENCES_.16 -OBJC_METH_VAR_NAME_.19 -OBJC_SELECTOR_REFERENCES_.20 -OBJC_METH_VAR_NAME_.39 +OBJC_IVAR_$_RLMMigration._oldRealm +OBJC_SELECTOR_REFERENCES_.16 OBJC_SELECTOR_REFERENCES_.40 -OBJC_CLASS_NAME_.41 +OBJC_CLASSLIST_REFERENCES_$_.41 +OBJC_SELECTOR_REFERENCES_.43 +OBJC_CLASSLIST_REFERENCES_$_.44 +OBJC_METH_VAR_NAME_.61 +OBJC_SELECTOR_REFERENCES_.62 +OBJC_CLASS_NAME_.65 l_OBJC_METACLASS_RO_$_RLMMigration -OBJC_CLASS_NAME_.42 -OBJC_METH_VAR_NAME_.43 -OBJC_METH_VAR_TYPE_.44 -OBJC_METH_VAR_TYPE_.46 -OBJC_METH_VAR_NAME_.47 -OBJC_METH_VAR_TYPE_.49 -OBJC_METH_VAR_TYPE_.51 -OBJC_METH_VAR_TYPE_.53 -OBJC_METH_VAR_TYPE_.55 +OBJC_CLASS_NAME_.66 +OBJC_METH_VAR_TYPE_.68 +OBJC_METH_VAR_TYPE_.70 +OBJC_METH_VAR_TYPE_.73 +OBJC_METH_VAR_NAME_.74 +OBJC_METH_VAR_TYPE_.75 +OBJC_METH_VAR_NAME_.76 +OBJC_METH_VAR_TYPE_.77 +OBJC_METH_VAR_TYPE_.79 +OBJC_METH_VAR_TYPE_.81 l_OBJC_$_INSTANCE_METHODS_RLMMigration -OBJC_METH_VAR_TYPE_.60 +OBJC_METH_VAR_TYPE_.85 +OBJC_METH_VAR_NAME_.86 l_OBJC_$_INSTANCE_VARIABLES_RLMMigration -OBJC_PROP_NAME_ATTR_.62 -OBJC_PROP_NAME_ATTR_.63 -OBJC_PROP_NAME_ATTR_.64 -OBJC_PROP_NAME_ATTR_.65 -OBJC_PROP_NAME_ATTR_.66 -OBJC_PROP_NAME_ATTR_.67 +OBJC_PROP_NAME_ATTR_.87 +OBJC_PROP_NAME_ATTR_.88 +OBJC_PROP_NAME_ATTR_.89 +OBJC_PROP_NAME_ATTR_.90 +OBJC_PROP_NAME_ATTR_.91 +OBJC_PROP_NAME_ATTR_.92 l_OBJC_$_PROP_LIST_RLMMigration l_OBJC_CLASS_RO_$_RLMMigration -[RLMMigration .cxx_destruct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMMigration.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMMigration.mm -[RLMMigration setRealm:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMMigration_Private.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMMigration_Private.h -[RLMMigration realm] -[RLMMigration setOldRealm:] -[RLMMigration oldRealm] +-[RLMMigration renamePropertyForClass:oldName:newName:] -[RLMMigration deleteDataForClassName:] -[RLMMigration deleteObject:] -[RLMMigration createObject:withObject:] @@ -3160,6 +4408,8 @@ OBJC_PROP_NAME_ATTR_.67 -[RLMMigrationRealm beginWriteTransaction] -[RLMMigrationRealm readonly] -[RLMObject init] +-[RLMObject initWithValue:schema:] +-[RLMObject initWithRealm:schema:] -[RLMObject initWithValue:] -[RLMObject initWithObject:] +[RLMObject createInDefaultRealmWithValue:] @@ -3182,10 +4432,10 @@ OBJC_PROP_NAME_ATTR_.67 +[RLMObject objectsInRealm:withPredicate:] +[RLMObject objectForPrimaryKey:] +[RLMObject objectInRealm:forPrimaryKey:] --[RLMObject linkingObjectsOfClass:forProperty:] -[RLMObject isEqualToObject:] +[RLMObject className] +[RLMObject indexedProperties] ++[RLMObject linkingObjectsProperties] +[RLMObject defaultPropertyValues] +[RLMObject primaryKey] +[RLMObject ignoredProperties] @@ -3193,59 +4443,77 @@ OBJC_PROP_NAME_ATTR_.67 +[RLMDynamicObject shouldIncludeInDefaultSchema] -[RLMDynamicObject valueForUndefinedKey:] -[RLMDynamicObject setValue:forUndefinedKey:] -OBJC_CLASSLIST_REFERENCES_$_.30 -OBJC_CLASSLIST_REFERENCES_$_.34 -_unnamed_cfstring_.36 -OBJC_CLASSLIST_REFERENCES_$_.41 -OBJC_CLASSLIST_REFERENCES_$_.50 -OBJC_METH_VAR_NAME_.51 -OBJC_SELECTOR_REFERENCES_.52 -OBJC_CLASSLIST_SUP_REFS_$_.53 -OBJC_CLASSLIST_REFERENCES_$_.54 -OBJC_METH_VAR_NAME_.55 -OBJC_SELECTOR_REFERENCES_.56 -OBJC_METH_VAR_TYPE_.58 -OBJC_METH_VAR_NAME_.60 +-[RLMWeakObjectHandle initWithObject:] +-[RLMWeakObjectHandle object] +-[RLMWeakObjectHandle .cxx_destruct] +-[RLMWeakObjectHandle .cxx_construct] +OBJC_CLASSLIST_REFERENCES_$_.17 +OBJC_CLASSLIST_REFERENCES_$_.32 +OBJC_CLASSLIST_REFERENCES_$_.36 +_unnamed_cfstring_.38 +OBJC_METH_VAR_NAME_.41 +OBJC_SELECTOR_REFERENCES_.42 +OBJC_CLASSLIST_REFERENCES_$_.43 +OBJC_SELECTOR_REFERENCES_.47 +OBJC_SELECTOR_REFERENCES_.49 +OBJC_SELECTOR_REFERENCES_.51 +OBJC_CLASSLIST_REFERENCES_$_.52 +OBJC_CLASSLIST_SUP_REFS_$_.55 +OBJC_CLASSLIST_REFERENCES_$_.56 +OBJC_CLASSLIST_REFERENCES_$_.59 OBJC_METH_VAR_NAME_.62 OBJC_METH_VAR_TYPE_.63 -OBJC_METH_VAR_NAME_.64 -OBJC_METH_VAR_TYPE_.66 -OBJC_METH_VAR_TYPE_.68 -OBJC_METH_VAR_NAME_.70 -OBJC_METH_VAR_NAME_.74 +OBJC_METH_VAR_NAME_.65 +OBJC_METH_VAR_TYPE_.71 l_OBJC_$_CLASS_METHODS_RLMObject l_OBJC_METACLASS_RO_$_RLMObject -OBJC_METH_VAR_NAME_.76 -OBJC_METH_VAR_TYPE_.79 -OBJC_METH_VAR_TYPE_.82 +OBJC_METH_VAR_TYPE_.87 l_OBJC_$_INSTANCE_METHODS_RLMObject -OBJC_PROP_NAME_ATTR_.83 -OBJC_PROP_NAME_ATTR_.84 -OBJC_PROP_NAME_ATTR_.85 -OBJC_PROP_NAME_ATTR_.86 -OBJC_PROP_NAME_ATTR_.87 l_OBJC_$_PROP_LIST_RLMObject l_OBJC_CLASS_RO_$_RLMObject -OBJC_CLASS_NAME_.88 -OBJC_METH_VAR_NAME_.89 -OBJC_METH_VAR_TYPE_.90 +OBJC_CLASS_NAME_.93 +OBJC_METH_VAR_TYPE_.95 l_OBJC_$_CLASS_METHODS_RLMDynamicObject l_OBJC_METACLASS_RO_$_RLMDynamicObject -OBJC_METH_VAR_NAME_.92 l_OBJC_$_INSTANCE_METHODS_RLMDynamicObject l_OBJC_CLASS_RO_$_RLMDynamicObject +OBJC_CLASSLIST_SUP_REFS_$_.98 +OBJC_IVAR_$_RLMWeakObjectHandle._row +OBJC_IVAR_$_RLMWeakObjectHandle._realm +OBJC_IVAR_$_RLMWeakObjectHandle._objectSchema +OBJC_IVAR_$_RLMWeakObjectHandle._objectClass +OBJC_CLASS_NAME_.101 +l_OBJC_METACLASS_RO_$_RLMWeakObjectHandle +OBJC_CLASS_NAME_.102 +OBJC_METH_VAR_NAME_.104 +l_OBJC_$_INSTANCE_METHODS_RLMWeakObjectHandle +OBJC_METH_VAR_NAME_.107 +OBJC_METH_VAR_TYPE_.108 +OBJC_METH_VAR_TYPE_.112 +OBJC_METH_VAR_NAME_.113 +OBJC_METH_VAR_TYPE_.114 +l_OBJC_$_INSTANCE_VARIABLES_RLMWeakObjectHandle +OBJC_PROP_NAME_ATTR_.115 +OBJC_PROP_NAME_ATTR_.116 +l_OBJC_$_PROP_LIST_RLMWeakObjectHandle +l_OBJC_CLASS_RO_$_RLMWeakObjectHandle +move &> +-[RLMWeakObjectHandle .cxx_construct] +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObject.mm +-[RLMWeakObjectHandle .cxx_destruct] +-[RLMWeakObjectHandle object] +-[RLMWeakObjectHandle initWithObject:] -[RLMDynamicObject setValue:forUndefinedKey:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObject.mm -[RLMDynamicObject valueForUndefinedKey:] +[RLMDynamicObject shouldIncludeInDefaultSchema] +[RLMObject requiredProperties] +[RLMObject ignoredProperties] +[RLMObject primaryKey] +[RLMObject defaultPropertyValues] ++[RLMObject linkingObjectsProperties] +[RLMObject indexedProperties] +[RLMObject className] -[RLMObject isEqualToObject:] --[RLMObject linkingObjectsOfClass:forProperty:] +[RLMObject objectInRealm:forPrimaryKey:] +[RLMObject objectForPrimaryKey:] +[RLMObject objectsInRealm:withPredicate:] @@ -3268,9 +4536,12 @@ OBJC_METH_VAR_NAME_.92 +[RLMObject createInDefaultRealmWithValue:] -[RLMObject initWithObject:] -[RLMObject initWithValue:] +-[RLMObject initWithRealm:schema:] +-[RLMObject initWithValue:schema:] -[RLMObject init] -[RLMObjectBase init] _ZL26RLMInitializedObjectSchemaP13RLMObjectBase +-[RLMObjectBase dealloc] -[RLMObjectBase initWithValue:schema:] _ZL29RLMValidatedObjectForPropertyP11objc_objectP11RLMPropertyP9RLMSchema -[RLMObjectBase initWithRealm:schema:] @@ -3291,153 +4562,104 @@ _ZL29RLMValidatedObjectForPropertyP11objc_objectP11RLMPropertyP9RLMSchema -[RLMObjectBase mutableArrayValueForKey:] -[RLMObjectBase addObserver:forKeyPath:options:context:] -[RLMObjectBase removeObserver:forKeyPath:] --[RLMObjectBase observationInfo] --[RLMObjectBase setObservationInfo:] +[RLMObjectBase automaticallyNotifiesObserversForKey:] -[RLMObjectBase .cxx_destruct] -[RLMObjectBase .cxx_construct] +[RLMObjectUtil ignoredPropertiesForClass:] +[RLMObjectUtil indexedPropertiesForClass:] ++[RLMObjectUtil linkingObjectsPropertiesForClass:] ++[RLMObjectUtil linkingObjectProperties:] +[RLMObjectUtil getGenericListPropertyNames:] ++[RLMObjectUtil getLinkingObjectsProperties:] +[RLMObjectUtil initializeListProperty:property:array:] +[RLMObjectUtil initializeOptionalProperty:property:] ++[RLMObjectUtil initializeLinkingObjectsProperty:property:] +[RLMObjectUtil getOptionalProperties:] +[RLMObjectUtil requiredPropertiesForClass:] -_ZN5realm8BasicRowINS_5TableEED2Ev l_OBJC_PROTOCOL_REFERENCE_$_NSFastEnumeration -OBJC_METH_VAR_NAME_.30 -OBJC_SELECTOR_REFERENCES_.31 -OBJC_METH_VAR_NAME_.34 -OBJC_SELECTOR_REFERENCES_.35 -OBJC_CLASSLIST_REFERENCES_$_.48 -OBJC_METH_VAR_NAME_.49 -OBJC_SELECTOR_REFERENCES_.50 -_unnamed_cfstring_.56 -_unnamed_cfstring_.60 -OBJC_CLASSLIST_REFERENCES_$_.61 -OBJC_SELECTOR_REFERENCES_.65 -OBJC_METH_VAR_NAME_.66 -OBJC_SELECTOR_REFERENCES_.67 -OBJC_CLASSLIST_REFERENCES_$_.77 -OBJC_METH_VAR_NAME_.102 -OBJC_SELECTOR_REFERENCES_.103 -OBJC_METH_VAR_NAME_.104 +OBJC_METH_VAR_NAME_.32 +OBJC_SELECTOR_REFERENCES_.33 +OBJC_CLASSLIST_REFERENCES_$_.50 +_unnamed_cfstring_.58 +OBJC_CLASSLIST_REFERENCES_$_.63 +OBJC_CLASSLIST_REFERENCES_$_.79 +OBJC_SELECTOR_REFERENCES_.93 +_unnamed_cfstring_.95 OBJC_SELECTOR_REFERENCES_.105 -OBJC_CLASSLIST_REFERENCES_$_.106 -OBJC_METH_VAR_NAME_.107 -OBJC_SELECTOR_REFERENCES_.108 -OBJC_METH_VAR_NAME_.109 +OBJC_CLASSLIST_REFERENCES_$_.108 OBJC_SELECTOR_REFERENCES_.110 -OBJC_METH_VAR_NAME_.113 OBJC_SELECTOR_REFERENCES_.114 _ZZ54+[RLMObjectBase automaticallyNotifiesObserversForKey:]E19accessorClassPrefix -OBJC_CLASSLIST_SUP_REFS_$_.117 -OBJC_METH_VAR_NAME_.118 -OBJC_SELECTOR_REFERENCES_.119 -OBJC_CLASS_NAME_.120 -OBJC_METH_VAR_TYPE_.121 -OBJC_METH_VAR_TYPE_.126 +OBJC_CLASSLIST_SUP_REFS_$_.119 +OBJC_SELECTOR_REFERENCES_.121 +OBJC_CLASS_NAME_.122 l_OBJC_$_CLASS_METHODS_RLMObjectBase l_OBJC_METACLASS_RO_$_RLMObjectBase -OBJC_CLASS_NAME_.127 -OBJC_METH_VAR_TYPE_.131 -OBJC_METH_VAR_TYPE_.133 -OBJC_METH_VAR_TYPE_.137 -OBJC_METH_VAR_TYPE_.139 -OBJC_METH_VAR_TYPE_.141 -OBJC_METH_VAR_NAME_.142 -OBJC_METH_VAR_TYPE_.143 +OBJC_METH_VAR_TYPE_.134 +OBJC_METH_VAR_NAME_.141 l_OBJC_$_INSTANCE_METHODS_RLMObjectBase -OBJC_METH_VAR_TYPE_.146 -OBJC_METH_VAR_NAME_.147 -OBJC_METH_VAR_TYPE_.150 -OBJC_METH_VAR_TYPE_.152 l_OBJC_$_INSTANCE_VARIABLES_RLMObjectBase -OBJC_PROP_NAME_ATTR_.153 +OBJC_PROP_NAME_ATTR_.151 l_OBJC_$_PROP_LIST_RLMObjectBase l_OBJC_CLASS_RO_$_RLMObjectBase -_unnamed_cfstring_.155 -OBJC_METH_VAR_NAME_.156 -OBJC_SELECTOR_REFERENCES_.157 -_unnamed_cfstring_.159 -OBJC_SELECTOR_REFERENCES_.161 +OBJC_SELECTOR_REFERENCES_.153 +OBJC_CLASSLIST_REFERENCES_$_.154 +.str.155 +_unnamed_cfstring_.156 +_ZZ18RLMObjectUtilClassE14objectUtilObjc +_ZGVZ18RLMObjectUtilClassE14objectUtilObjc +OBJC_CLASSLIST_REFERENCES_$_.161 +_ZZ18RLMObjectUtilClassE15objectUtilSwift +_ZGVZ18RLMObjectUtilClassE15objectUtilSwift .str.162 _unnamed_cfstring_.163 +OBJC_METH_VAR_NAME_.164 OBJC_SELECTOR_REFERENCES_.165 OBJC_METH_VAR_NAME_.166 OBJC_SELECTOR_REFERENCES_.167 -.str.168 -_unnamed_cfstring_.169 -OBJC_METH_VAR_NAME_.170 +OBJC_METH_VAR_NAME_.168 +OBJC_SELECTOR_REFERENCES_.169 OBJC_SELECTOR_REFERENCES_.171 -OBJC_CLASSLIST_REFERENCES_$_.172 -OBJC_METH_VAR_NAME_.173 -OBJC_SELECTOR_REFERENCES_.174 -OBJC_CLASSLIST_REFERENCES_$_.177 +OBJC_CLASS_NAME_.172 OBJC_METH_VAR_NAME_.178 -OBJC_SELECTOR_REFERENCES_.179 -OBJC_METH_VAR_NAME_.180 -OBJC_SELECTOR_REFERENCES_.181 -OBJC_SELECTOR_REFERENCES_.183 -OBJC_METH_VAR_NAME_.184 -OBJC_SELECTOR_REFERENCES_.185 -OBJC_CLASSLIST_REFERENCES_$_.186 -.str.187 -_unnamed_cfstring_.188 -.str.189 -_unnamed_cfstring_.190 -_ZZ18RLMObjectUtilClassE14objectUtilObjc -_ZGVZ18RLMObjectUtilClassE14objectUtilObjc -OBJC_CLASSLIST_REFERENCES_$_.191 -_ZZ18RLMObjectUtilClassE15objectUtilSwift -_ZGVZ18RLMObjectUtilClassE15objectUtilSwift -OBJC_METH_VAR_NAME_.194 -OBJC_SELECTOR_REFERENCES_.195 -OBJC_METH_VAR_NAME_.196 -OBJC_SELECTOR_REFERENCES_.197 -OBJC_METH_VAR_NAME_.198 -OBJC_SELECTOR_REFERENCES_.199 -OBJC_CLASS_NAME_.200 -OBJC_METH_VAR_NAME_.201 -OBJC_METH_VAR_TYPE_.202 -OBJC_METH_VAR_NAME_.204 -OBJC_METH_VAR_NAME_.208 -OBJC_METH_VAR_NAME_.209 +OBJC_METH_VAR_NAME_.185 l_OBJC_$_CLASS_METHODS_RLMObjectUtil l_OBJC_METACLASS_RO_$_RLMObjectUtil l_OBJC_CLASS_RO_$_RLMObjectUtil -OBJC_SELECTOR_REFERENCES_.211 -OBJC_METH_VAR_NAME_.212 -OBJC_SELECTOR_REFERENCES_.213 -OBJC_METH_VAR_NAME_.214 -OBJC_SELECTOR_REFERENCES_.215 -OBJC_SELECTOR_REFERENCES_.217 -OBJC_SELECTOR_REFERENCES_.218 -OBJC_METH_VAR_NAME_.219 -OBJC_SELECTOR_REFERENCES_.220 -.str.221 -_unnamed_cfstring_.222 -OBJC_CLASSLIST_REFERENCES_$_.251 -OBJC_METH_VAR_NAME_.252 -OBJC_SELECTOR_REFERENCES_.253 -OBJC_CLASSLIST_REFERENCES_$_.256 -get_backlink -get_backlink_count -~RowBase -~BasicRow -RowBase -BasicRow -forward -make_unique +OBJC_SELECTOR_REFERENCES_.187 +OBJC_METH_VAR_NAME_.188 +OBJC_SELECTOR_REFERENCES_.189 +OBJC_METH_VAR_NAME_.190 +OBJC_SELECTOR_REFERENCES_.191 +OBJC_METH_VAR_NAME_.192 +OBJC_SELECTOR_REFERENCES_.193 +OBJC_METH_VAR_NAME_.194 +OBJC_SELECTOR_REFERENCES_.195 +OBJC_METH_VAR_NAME_.197 +OBJC_SELECTOR_REFERENCES_.198 +OBJC_SELECTOR_REFERENCES_.200 +.str.201 +_unnamed_cfstring_.202 +OBJC_CLASSLIST_REFERENCES_$_.231 +OBJC_CLASSLIST_REFERENCES_$_.232 +OBJC_METH_VAR_NAME_.233 +OBJC_SELECTOR_REFERENCES_.234 +OBJC_METH_VAR_NAME_.235 +OBJC_SELECTOR_REFERENCES_.236 +OBJC_CLASSLIST_REFERENCES_$_.237 RLMDynamicCast RLMValidatedObjectForProperty -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectBase.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObjectBase.mm RLMInitializedObjectSchema +[RLMObjectUtil requiredPropertiesForClass:] +[RLMObjectUtil getOptionalProperties:] ++[RLMObjectUtil initializeLinkingObjectsProperty:property:] +[RLMObjectUtil initializeOptionalProperty:property:] +[RLMObjectUtil initializeListProperty:property:array:] ++[RLMObjectUtil getLinkingObjectsProperties:] +[RLMObjectUtil getGenericListPropertyNames:] ++[RLMObjectUtil linkingObjectProperties:] ++[RLMObjectUtil linkingObjectsPropertiesForClass:] +[RLMObjectUtil indexedPropertiesForClass:] +[RLMObjectUtil ignoredPropertiesForClass:] RLMObjectUtilClass @@ -3445,7 +4667,6 @@ RLMValidatedValueForProperty RLMObjectBaseAreEqual RLMObjectBaseSetObjectForKeyedSubscript RLMObjectBaseObjectForKeyedSubscript -RLMObjectBaseLinkingObjectsOfClass RLMObjectBaseObjectSchema RLMObjectBaseSetObjectSchema RLMObjectBaseRealm @@ -3453,8 +4674,6 @@ RLMObjectBaseSetRealm -[RLMObjectBase .cxx_construct] -[RLMObjectBase .cxx_destruct] +[RLMObjectBase automaticallyNotifiesObserversForKey:] --[RLMObjectBase setObservationInfo:] --[RLMObjectBase observationInfo] -[RLMObjectBase removeObserver:forKeyPath:] -[RLMObjectBase addObserver:forKeyPath:options:context:] -[RLMObjectBase mutableArrayValueForKey:] @@ -3474,23 +4693,31 @@ RLMObjectBaseSetRealm -[RLMObjectBase valueForKey:] -[RLMObjectBase initWithRealm:schema:] -[RLMObjectBase initWithValue:schema:] +-[RLMObjectBase dealloc] -[RLMObjectBase init] -[RLMObjectSchema initWithClassName:objectClass:properties:] -[RLMObjectSchema objectForKeyedSubscript:] -[RLMObjectSchema setProperties:] +-[RLMObjectSchema setComputedProperties:] +-[RLMObjectSchema _propertiesDidChange] -[RLMObjectSchema setPrimaryKeyProperty:] +[RLMObjectSchema schemaForObjectClass:] __40+[RLMObjectSchema schemaForObjectClass:]_block_invoke +__40+[RLMObjectSchema schemaForObjectClass:]_block_invoke_2 +__40+[RLMObjectSchema schemaForObjectClass:]_block_invoke_3 +[RLMObjectSchema propertiesForClass:isSwift:] __46+[RLMObjectSchema propertiesForClass:isSwift:]_block_invoke -__copy_helper_block_.144 -__destroy_helper_block_.145 -__46+[RLMObjectSchema propertiesForClass:isSwift:]_block_invoke.158 +__copy_helper_block_.148 +__destroy_helper_block_.149 +__46+[RLMObjectSchema propertiesForClass:isSwift:]_block_invoke.160 +__copy_helper_block_.161 +__destroy_helper_block_.162 +__46+[RLMObjectSchema propertiesForClass:isSwift:]_block_invoke.174 __46+[RLMObjectSchema propertiesForClass:isSwift:]_block_invoke_2 -__copy_helper_block_.159 -__destroy_helper_block_.160 -__copy_helper_block_.170 -__destroy_helper_block_.171 +__copy_helper_block_.175 +__destroy_helper_block_.176 +__copy_helper_block_.186 +__destroy_helper_block_.187 -[RLMObjectSchema copyWithZone:] -[RLMObjectSchema shallowCopy] -[RLMObjectSchema isEqualToObjectSchema:] @@ -3503,12 +4730,13 @@ __destroy_helper_block_.171 __41-[RLMObjectSchema sortPropertiesByColumn]_block_invoke -[RLMObjectSchema propertiesInDeclaredOrder] __44-[RLMObjectSchema propertiesInDeclaredOrder]_block_invoke +-[RLMObjectSchema swiftGenericProperties] -[RLMObjectSchema properties] -[RLMObjectSchema className] -[RLMObjectSchema setClassName:] -[RLMObjectSchema primaryKeyProperty] --[RLMObjectSchema propertiesByName] --[RLMObjectSchema setPropertiesByName:] +-[RLMObjectSchema allPropertiesByName] +-[RLMObjectSchema setAllPropertiesByName:] -[RLMObjectSchema isSwiftClass] -[RLMObjectSchema setIsSwiftClass:] -[RLMObjectSchema objectClass] @@ -3517,204 +4745,232 @@ __44-[RLMObjectSchema propertiesInDeclaredOrder]_block_invoke -[RLMObjectSchema setAccessorClass:] -[RLMObjectSchema standaloneClass] -[RLMObjectSchema setStandaloneClass:] +-[RLMObjectSchema computedProperties] -[RLMObjectSchema realm] -[RLMObjectSchema setRealm:] -[RLMObjectSchema .cxx_destruct] -[RLMObjectSchema .cxx_construct] -OBJC_IVAR_$_RLMObjectSchema._propertiesByName +OBJC_IVAR_$_RLMObjectSchema._allPropertiesByName OBJC_IVAR_$_RLMObjectSchema._properties OBJC_IVAR_$_RLMObjectSchema._propertiesInDeclaredOrder +OBJC_IVAR_$_RLMObjectSchema._computedProperties OBJC_IVAR_$_RLMObjectSchema._primaryKeyProperty -OBJC_CLASSLIST_REFERENCES_$_.33 -OBJC_CLASSLIST_REFERENCES_$_.36 -OBJC_CLASSLIST_REFERENCES_$_.46 -OBJC_SELECTOR_REFERENCES_.48 -OBJC_CLASSLIST_REFERENCES_$_.49 -OBJC_CLASSLIST_REFERENCES_$_.56 -OBJC_SELECTOR_REFERENCES_.61 -OBJC_CLASSLIST_REFERENCES_$_.62 -OBJC_CLASSLIST_REFERENCES_$_.63 -_unnamed_cfstring_.72 -_unnamed_cfstring_.78 -_unnamed_cfstring_.80 -OBJC_METH_VAR_NAME_.85 -OBJC_SELECTOR_REFERENCES_.86 -OBJC_METH_VAR_NAME_.87 -OBJC_SELECTOR_REFERENCES_.88 -OBJC_SELECTOR_REFERENCES_.90 -_unnamed_cfstring_.94 -OBJC_METH_VAR_NAME_.95 +OBJC_CLASSLIST_REFERENCES_$_.35 +OBJC_CLASSLIST_REFERENCES_$_.38 +OBJC_CLASSLIST_REFERENCES_$_.48 +OBJC_CLASSLIST_REFERENCES_$_.51 +OBJC_SELECTOR_REFERENCES_.63 +__block_descriptor_tmp.66 +__block_literal_global.67 +.str.71 +OBJC_SELECTOR_REFERENCES_.75 +__block_descriptor_tmp.80 +_unnamed_cfstring_.84 OBJC_SELECTOR_REFERENCES_.96 -_unnamed_cfstring_.98 -OBJC_METH_VAR_NAME_.99 -OBJC_SELECTOR_REFERENCES_.100 -OBJC_CLASSLIST_REFERENCES_$_.101 -_unnamed_cfstring_.103 -_unnamed_cfstring_.107 -_unnamed_cfstring_.111 -OBJC_SELECTOR_REFERENCES_.113 -OBJC_METH_VAR_NAME_.114 -OBJC_SELECTOR_REFERENCES_.115 -OBJC_METH_VAR_NAME_.116 -OBJC_SELECTOR_REFERENCES_.117 -OBJC_CLASSLIST_REFERENCES_$_.118 -OBJC_METH_VAR_NAME_.125 -OBJC_SELECTOR_REFERENCES_.126 -OBJC_METH_VAR_NAME_.127 -OBJC_SELECTOR_REFERENCES_.128 -OBJC_CLASSLIST_REFERENCES_$_.129 -OBJC_METH_VAR_NAME_.136 +_unnamed_cfstring_.108 +_unnamed_cfstring_.112 +OBJC_CLASSLIST_REFERENCES_$_.121 +OBJC_SELECTOR_REFERENCES_.123 +OBJC_SELECTOR_REFERENCES_.125 +OBJC_SELECTOR_REFERENCES_.127 +OBJC_CLASSLIST_REFERENCES_$_.128 +OBJC_SELECTOR_REFERENCES_.130 +OBJC_SELECTOR_REFERENCES_.132 +OBJC_CLASSLIST_REFERENCES_$_.133 +OBJC_SELECTOR_REFERENCES_.135 OBJC_SELECTOR_REFERENCES_.137 OBJC_SELECTOR_REFERENCES_.139 +OBJC_SELECTOR_REFERENCES_.141 OBJC_SELECTOR_REFERENCES_.143 -__block_descriptor_tmp.147 -OBJC_SELECTOR_REFERENCES_.151 -OBJC_SELECTOR_REFERENCES_.153 -OBJC_SELECTOR_REFERENCES_.155 -__block_descriptor_tmp.161 -OBJC_METH_VAR_NAME_.162 -OBJC_SELECTOR_REFERENCES_.163 -__block_descriptor_tmp.173 -OBJC_METH_VAR_NAME_.176 -OBJC_SELECTOR_REFERENCES_.177 -.str.178 -_unnamed_cfstring_.179 -_unnamed_cfstring_.181 +OBJC_SELECTOR_REFERENCES_.145 +OBJC_METH_VAR_NAME_.146 +OBJC_SELECTOR_REFERENCES_.147 +OBJC_SELECTOR_REFERENCES_.157 +OBJC_SELECTOR_REFERENCES_.159 +.str.164 +_unnamed_cfstring_.165 +.str.166 +_unnamed_cfstring_.167 +__block_descriptor_tmp.177 +OBJC_SELECTOR_REFERENCES_.179 +OBJC_SELECTOR_REFERENCES_.185 +_unnamed_cfstring_.195 +_unnamed_cfstring_.197 +OBJC_METH_VAR_NAME_.198 +OBJC_SELECTOR_REFERENCES_.199 +OBJC_SELECTOR_REFERENCES_.201 OBJC_IVAR_$_RLMObjectSchema._objectClass OBJC_IVAR_$_RLMObjectSchema._className OBJC_IVAR_$_RLMObjectSchema._accessorClass OBJC_IVAR_$_RLMObjectSchema._standaloneClass -OBJC_IVAR_$_RLMObjectSchema._isSwiftClass -OBJC_SELECTOR_REFERENCES_.187 -OBJC_SELECTOR_REFERENCES_.189 -OBJC_CLASSLIST_REFERENCES_$_.190 -OBJC_METH_VAR_NAME_.191 -OBJC_SELECTOR_REFERENCES_.192 -.str.193 -_unnamed_cfstring_.194 -.str.197 -_unnamed_cfstring_.198 -OBJC_SELECTOR_REFERENCES_.202 -OBJC_SELECTOR_REFERENCES_.204 -_unnamed_cfstring_.206 -OBJC_IVAR_$_RLMObjectSchema._table -OBJC_IVAR_$_RLMObjectSchema._realm -OBJC_SELECTOR_REFERENCES_.208 -_unnamed_cfstring_.215 -OBJC_CLASSLIST_REFERENCES_$_.216 +OBJC_SELECTOR_REFERENCES_.203 +OBJC_IVAR_$_RLMObjectSchema._swiftGenericProperties +OBJC_METH_VAR_NAME_.204 +OBJC_SELECTOR_REFERENCES_.205 +OBJC_METH_VAR_NAME_.206 +OBJC_SELECTOR_REFERENCES_.207 +OBJC_CLASSLIST_REFERENCES_$_.208 +OBJC_METH_VAR_NAME_.209 +OBJC_SELECTOR_REFERENCES_.210 +.str.211 +_unnamed_cfstring_.212 +.str.215 +_unnamed_cfstring_.216 +.str.217 +_unnamed_cfstring_.218 +OBJC_METH_VAR_NAME_.219 +OBJC_SELECTOR_REFERENCES_.220 OBJC_METH_VAR_NAME_.221 OBJC_SELECTOR_REFERENCES_.222 -__block_descriptor_tmp.223 -__block_literal_global.224 -OBJC_CLASS_NAME_.225 -OBJC_METH_VAR_NAME_.226 -OBJC_METH_VAR_TYPE_.227 -OBJC_METH_VAR_TYPE_.229 +_unnamed_cfstring_.224 +OBJC_METH_VAR_NAME_.225 +OBJC_SELECTOR_REFERENCES_.226 +OBJC_IVAR_$_RLMObjectSchema._table +OBJC_IVAR_$_RLMObjectSchema._realm +OBJC_METH_VAR_NAME_.230 +OBJC_SELECTOR_REFERENCES_.231 +OBJC_METH_VAR_NAME_.232 +OBJC_SELECTOR_REFERENCES_.233 +.str.234 +_unnamed_cfstring_.235 +OBJC_CLASSLIST_REFERENCES_$_.236 +OBJC_METH_VAR_NAME_.237 +OBJC_SELECTOR_REFERENCES_.238 +.str.239 +__block_descriptor_tmp.240 +__block_literal_global.241 +OBJC_METH_VAR_NAME_.242 +OBJC_SELECTOR_REFERENCES_.243 +OBJC_METH_VAR_NAME_.244 +OBJC_SELECTOR_REFERENCES_.245 +__block_descriptor_tmp.246 +__block_literal_global.247 +_ZZ41-[RLMObjectSchema swiftGenericProperties]E18s_swiftObjectClass +_ZGVZ41-[RLMObjectSchema swiftGenericProperties]E18s_swiftObjectClass +_unnamed_cfstring_.249 +OBJC_METH_VAR_NAME_.250 +OBJC_SELECTOR_REFERENCES_.251 +OBJC_METH_VAR_NAME_.252 +OBJC_SELECTOR_REFERENCES_.253 +OBJC_CLASS_NAME_.254 +OBJC_METH_VAR_NAME_.255 +OBJC_METH_VAR_TYPE_.256 +OBJC_METH_VAR_TYPE_.258 l_OBJC_$_CLASS_METHODS_RLMObjectSchema -OBJC_METH_VAR_TYPE_.231 -OBJC_CLASS_NAME_.232 +OBJC_METH_VAR_TYPE_.260 +OBJC_CLASS_NAME_.261 l_OBJC_$_PROTOCOL_INSTANCE_METHODS_NSCopying l_OBJC_$_PROTOCOL_METHOD_TYPES_NSCopying l_OBJC_PROTOCOL_$_NSCopying l_OBJC_LABEL_PROTOCOL_$_NSCopying l_OBJC_CLASS_PROTOCOLS_$_RLMObjectSchema l_OBJC_METACLASS_RO_$_RLMObjectSchema -OBJC_CLASS_NAME_.233 -OBJC_METH_VAR_TYPE_.236 -OBJC_METH_VAR_TYPE_.237 -OBJC_METH_VAR_TYPE_.239 -OBJC_METH_VAR_TYPE_.241 -OBJC_METH_VAR_NAME_.242 -OBJC_METH_VAR_TYPE_.243 -OBJC_METH_VAR_NAME_.244 -OBJC_METH_VAR_TYPE_.245 -OBJC_METH_VAR_NAME_.246 -OBJC_METH_VAR_TYPE_.247 -OBJC_METH_VAR_NAME_.248 -OBJC_METH_VAR_TYPE_.249 -OBJC_METH_VAR_NAME_.250 -OBJC_METH_VAR_NAME_.255 -OBJC_METH_VAR_TYPE_.256 -OBJC_METH_VAR_TYPE_.257 -OBJC_METH_VAR_NAME_.258 -OBJC_METH_VAR_TYPE_.259 -OBJC_METH_VAR_TYPE_.260 -OBJC_METH_VAR_NAME_.261 -OBJC_METH_VAR_NAME_.262 +OBJC_CLASS_NAME_.262 OBJC_METH_VAR_NAME_.263 -OBJC_METH_VAR_NAME_.264 -l_OBJC_$_INSTANCE_METHODS_RLMObjectSchema -OBJC_METH_VAR_NAME_.265 +OBJC_METH_VAR_TYPE_.264 +OBJC_METH_VAR_TYPE_.265 OBJC_METH_VAR_TYPE_.266 -OBJC_METH_VAR_TYPE_.268 -OBJC_METH_VAR_NAME_.269 -OBJC_METH_VAR_TYPE_.270 -OBJC_METH_VAR_NAME_.271 -OBJC_METH_VAR_TYPE_.272 -OBJC_METH_VAR_NAME_.273 +OBJC_METH_VAR_TYPE_.267 +OBJC_METH_VAR_NAME_.268 +OBJC_METH_VAR_TYPE_.269 +OBJC_METH_VAR_NAME_.270 +OBJC_METH_VAR_TYPE_.271 +OBJC_METH_VAR_NAME_.272 +OBJC_METH_VAR_TYPE_.273 +OBJC_METH_VAR_NAME_.274 OBJC_METH_VAR_TYPE_.275 -OBJC_METH_VAR_TYPE_.277 +OBJC_METH_VAR_TYPE_.276 +OBJC_METH_VAR_NAME_.277 OBJC_METH_VAR_NAME_.278 -OBJC_METH_VAR_TYPE_.279 -OBJC_METH_VAR_NAME_.280 -OBJC_METH_VAR_TYPE_.281 -OBJC_METH_VAR_NAME_.282 +OBJC_METH_VAR_NAME_.279 +OBJC_METH_VAR_NAME_.281 +OBJC_METH_VAR_NAME_.283 OBJC_METH_VAR_NAME_.284 OBJC_METH_VAR_TYPE_.285 +OBJC_METH_VAR_TYPE_.286 +OBJC_METH_VAR_NAME_.287 +OBJC_METH_VAR_TYPE_.288 +OBJC_METH_VAR_TYPE_.289 +OBJC_METH_VAR_NAME_.290 +OBJC_METH_VAR_NAME_.291 +OBJC_METH_VAR_NAME_.292 +OBJC_METH_VAR_NAME_.293 +l_OBJC_$_INSTANCE_METHODS_RLMObjectSchema +OBJC_METH_VAR_NAME_.294 +OBJC_METH_VAR_TYPE_.295 +OBJC_METH_VAR_NAME_.296 +OBJC_METH_VAR_TYPE_.297 +OBJC_METH_VAR_NAME_.298 +OBJC_METH_VAR_TYPE_.299 +OBJC_METH_VAR_NAME_.300 +OBJC_METH_VAR_TYPE_.301 +OBJC_METH_VAR_NAME_.302 +OBJC_METH_VAR_NAME_.303 +OBJC_METH_VAR_NAME_.304 +OBJC_METH_VAR_TYPE_.305 +OBJC_METH_VAR_TYPE_.307 +OBJC_METH_VAR_NAME_.308 +OBJC_METH_VAR_TYPE_.309 +OBJC_METH_VAR_NAME_.310 +OBJC_METH_VAR_TYPE_.311 +OBJC_METH_VAR_NAME_.312 +OBJC_METH_VAR_NAME_.313 +OBJC_METH_VAR_NAME_.315 +OBJC_METH_VAR_TYPE_.316 l_OBJC_$_INSTANCE_VARIABLES_RLMObjectSchema -OBJC_PROP_NAME_ATTR_.286 -OBJC_PROP_NAME_ATTR_.287 -OBJC_PROP_NAME_ATTR_.288 -OBJC_PROP_NAME_ATTR_.289 -OBJC_PROP_NAME_ATTR_.290 -OBJC_PROP_NAME_ATTR_.291 -OBJC_PROP_NAME_ATTR_.292 -OBJC_PROP_NAME_ATTR_.293 -OBJC_PROP_NAME_ATTR_.294 -OBJC_PROP_NAME_ATTR_.295 -OBJC_PROP_NAME_ATTR_.296 -OBJC_PROP_NAME_ATTR_.297 -OBJC_PROP_NAME_ATTR_.298 -OBJC_PROP_NAME_ATTR_.299 -OBJC_PROP_NAME_ATTR_.300 -OBJC_PROP_NAME_ATTR_.301 -OBJC_PROP_NAME_ATTR_.302 -OBJC_PROP_NAME_ATTR_.303 -OBJC_PROP_NAME_ATTR_.304 -OBJC_PROP_NAME_ATTR_.305 -OBJC_PROP_NAME_ATTR_.306 +OBJC_PROP_NAME_ATTR_.317 +OBJC_PROP_NAME_ATTR_.318 +OBJC_PROP_NAME_ATTR_.319 +OBJC_PROP_NAME_ATTR_.320 +OBJC_PROP_NAME_ATTR_.321 +OBJC_PROP_NAME_ATTR_.322 +OBJC_PROP_NAME_ATTR_.323 +OBJC_PROP_NAME_ATTR_.324 +OBJC_PROP_NAME_ATTR_.325 +OBJC_PROP_NAME_ATTR_.326 +OBJC_PROP_NAME_ATTR_.327 +OBJC_PROP_NAME_ATTR_.328 +OBJC_PROP_NAME_ATTR_.329 +OBJC_PROP_NAME_ATTR_.330 +OBJC_PROP_NAME_ATTR_.331 +OBJC_PROP_NAME_ATTR_.332 +OBJC_PROP_NAME_ATTR_.333 +OBJC_PROP_NAME_ATTR_.334 +OBJC_PROP_NAME_ATTR_.335 +OBJC_PROP_NAME_ATTR_.336 +OBJC_PROP_NAME_ATTR_.337 +OBJC_PROP_NAME_ATTR_.338 +OBJC_PROP_NAME_ATTR_.339 +OBJC_PROP_NAME_ATTR_.340 l_OBJC_$_PROP_LIST_RLMObjectSchema l_OBJC_CLASS_RO_$_RLMObjectSchema -.str.307 -_unnamed_cfstring_.308 -.str.309 -_unnamed_cfstring_.310 -.str.311 -_unnamed_cfstring_.312 -.str.313 -_unnamed_cfstring_.314 -.str.315 -_unnamed_cfstring_.316 -.str.317 -_unnamed_cfstring_.318 -.str.319 -_unnamed_cfstring_.320 -.str.321 -_unnamed_cfstring_.322 -.str.323 -_unnamed_cfstring_.324 -.str.325 -_unnamed_cfstring_.326 -.str.327 -_unnamed_cfstring_.328 -OBJC_CLASSLIST_REFERENCES_$_.356 -OBJC_METH_VAR_NAME_.357 -OBJC_SELECTOR_REFERENCES_.358 -OBJC_METH_VAR_NAME_.359 -OBJC_SELECTOR_REFERENCES_.360 -OBJC_CLASSLIST_REFERENCES_$_.361 -OBJC_METH_VAR_NAME_.362 -OBJC_SELECTOR_REFERENCES_.363 +.str.341 +_unnamed_cfstring_.342 +.str.343 +_unnamed_cfstring_.344 +.str.345 +_unnamed_cfstring_.346 +.str.347 +_unnamed_cfstring_.348 +.str.349 +_unnamed_cfstring_.350 +.str.351 +_unnamed_cfstring_.352 +_unnamed_cfstring_.354 +.str.359 +_unnamed_cfstring_.360 +.str.361 +_unnamed_cfstring_.362 +.str.363 +_unnamed_cfstring_.364 +OBJC_CLASSLIST_REFERENCES_$_.392 +OBJC_METH_VAR_NAME_.393 +OBJC_SELECTOR_REFERENCES_.394 +OBJC_METH_VAR_NAME_.395 +OBJC_SELECTOR_REFERENCES_.396 +OBJC_CLASSLIST_REFERENCES_$_.397 +OBJC_METH_VAR_NAME_.398 +OBJC_SELECTOR_REFERENCES_.399 forward RLMCoerceToNil __to_raw_pointer @@ -3722,11 +4978,12 @@ __destroy destroy RLMTypeToString -[RLMObjectSchema .cxx_construct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectSchema.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObjectSchema.mm -[RLMObjectSchema .cxx_destruct] -[RLMObjectSchema setRealm:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectSchema_Private.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObjectSchema_Private.h -[RLMObjectSchema realm] +-[RLMObjectSchema computedProperties] -[RLMObjectSchema setStandaloneClass:] -[RLMObjectSchema standaloneClass] -[RLMObjectSchema setAccessorClass:] @@ -3735,13 +4992,14 @@ RLMTypeToString -[RLMObjectSchema objectClass] -[RLMObjectSchema setIsSwiftClass:] -[RLMObjectSchema isSwiftClass] --[RLMObjectSchema setPropertiesByName:] --[RLMObjectSchema propertiesByName] +-[RLMObjectSchema setAllPropertiesByName:] +-[RLMObjectSchema allPropertiesByName] -[RLMObjectSchema primaryKeyProperty] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectSchema.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObjectSchema.h -[RLMObjectSchema setClassName:] -[RLMObjectSchema className] -[RLMObjectSchema properties] +-[RLMObjectSchema swiftGenericProperties] -[RLMObjectSchema propertiesInDeclaredOrder] -[RLMObjectSchema sortPropertiesByColumn] +[RLMObjectSchema objectSchemaForObjectStoreSchema:] @@ -3755,6 +5013,8 @@ RLMTypeToString +[RLMObjectSchema propertiesForClass:isSwift:] +[RLMObjectSchema schemaForObjectClass:] -[RLMObjectSchema setPrimaryKeyProperty:] +-[RLMObjectSchema _propertiesDidChange] +-[RLMObjectSchema setComputedProperties:] -[RLMObjectSchema setProperties:] -[RLMObjectSchema objectForKeyedSubscript:] -[RLMObjectSchema initWithClassName:objectClass:properties:] @@ -3764,59 +5024,51 @@ _ZN5realm7ResultsC2Ev _GLOBAL__sub_I_RLMObjectStore.mm _ZL16s_accessorSchema OBJC_CLASSLIST_REFERENCES_$_.24 -_ZZ34RLMInitializeSwiftAccessorGenericsE18s_swiftObjectClass -_ZGVZ34RLMInitializeSwiftAccessorGenericsE18s_swiftObjectClass -_unnamed_cfstring_.39 -_unnamed_cfstring_.66 +_unnamed_cfstring_.60 +OBJC_SELECTOR_REFERENCES_.66 _unnamed_cfstring_.68 -.str.73 -_unnamed_cfstring_.74 -OBJC_METH_VAR_NAME_.79 -OBJC_SELECTOR_REFERENCES_.80 -_unnamed_cfstring_.90 -OBJC_METH_VAR_NAME_.97 -OBJC_SELECTOR_REFERENCES_.98 -OBJC_METH_VAR_NAME_.101 -OBJC_SELECTOR_REFERENCES_.102 -OBJC_SELECTOR_REFERENCES_.106 -OBJC_CLASSLIST_REFERENCES_$_.107 -.str.114 -OBJC_CLASSLIST_REFERENCES_$_.115 -.str.120 +_unnamed_cfstring_.88 +OBJC_METH_VAR_NAME_.89 +OBJC_SELECTOR_REFERENCES_.90 +OBJC_CLASSLIST_REFERENCES_$_.105 +_unnamed_cfstring_.109 +_unnamed_cfstring_.111 +OBJC_CLASSLIST_REFERENCES_$_.113 +OBJC_SELECTOR_REFERENCES_.115 +OBJC_SELECTOR_REFERENCES_.117 +.str.118 +_unnamed_cfstring_.119 _unnamed_cfstring_.121 -.str.122 -_unnamed_cfstring_.123 -OBJC_SELECTOR_REFERENCES_.125 -OBJC_SELECTOR_REFERENCES_.127 -.str.131 +_unnamed_cfstring_.129 +.str.130 .str.132 .str.133 -.str.134 +_unnamed_cfstring_.137 OBJC_CLASS_NAME_.138 OBJC_SELECTOR_REFERENCES_.140 -.str.141 _unnamed_cfstring_.142 OBJC_CLASSLIST_REFERENCES_$_.143 -_unnamed_cfstring_.147 -.str.151 -.str.153 -.str.155 +_unnamed_cfstring_.149 +OBJC_METH_VAR_NAME_.150 +OBJC_SELECTOR_REFERENCES_.151 +.str.154 .str.156 -.str.157 -.str.159 -.str.169 -.str.174 -OBJC_CLASSLIST_REFERENCES_$_.182 -OBJC_CLASSLIST_REFERENCES_$_.183 +.str.158 +.str.160 +OBJC_METH_VAR_NAME_.162 +OBJC_SELECTOR_REFERENCES_.163 +.str.175 +.str.176 OBJC_CLASSLIST_REFERENCES_$_.184 -.str.190 -.str.191 +OBJC_CLASSLIST_REFERENCES_$_.185 +OBJC_CLASSLIST_REFERENCES_$_.186 .str.195 -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectStore.mm -RLMCreateOrGetRowForObject<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectStore.mm:395:30)> -RLMCreateOrGetRowForObject<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectStore.mm:377:30)> -operator= -RLMCreateOrGetRowForObject<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectStore.mm:186:26)> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObjectStore.mm +RLMDynamicCast +RLMDynamicCast +RLMCreateOrGetRowForObject<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObjectStore.mm:395:30)> +RLMCreateOrGetRowForObject<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObjectStore.mm:377:30)> +RLMCreateOrGetRowForObject<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObjectStore.mm:185:26)> RLMVerifyRealmRead _ZZ31RLMCreateObjectInRealmWithValueEN3$_2C2ERKS_ _ZZ31RLMCreateObjectInRealmWithValueEN3$_2C1ERKS_ @@ -3826,7 +5078,7 @@ RLMValidateValueForProperty _ZZ31RLMCreateObjectInRealmWithValueEN3$_1C2ERKS_ _ZZ31RLMCreateObjectInRealmWithValueEN3$_1C1ERKS_ hasObservers -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.hpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.hpp RLMCreateObjectAccessor RLMGetObject RLMGetObjects @@ -3851,32 +5103,26 @@ _ZL7convertRKN5realm8IndexSetEP17NSMutableIndexSet OBJC_CLASSLIST_REFERENCES_$_.31 _ZZN18RLMObservationInfo11valueForKeyEP8NSStringE16superValueForKey _ZGVZN18RLMObservationInfo11valueForKeyEP8NSStringE16superValueForKey -OBJC_CLASSLIST_REFERENCES_$_.59 -OBJC_CLASSLIST_REFERENCES_$_.103 +OBJC_CLASSLIST_REFERENCES_$_.34 +OBJC_CLASSLIST_REFERENCES_$_.39 +OBJC_CLASSLIST_REFERENCES_$_.104 _ZTVNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEEE _ZTSNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEEE _ZTINSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEEE -.str.116 -.str.117 -.str.119 +OBJC_SELECTOR_REFERENCES_.113 _ZTSZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5 _ZTIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5 -OBJC_SELECTOR_REFERENCES_.123 -operator-- operator!=, std::__1::__wrap_iter > end > > -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm begin > > operator() -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:476:20)> +forEach<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:485:24)> operator!=, std::__1::__wrap_iter > end > > begin > > -operator== *, const std::__1::pair *> -operator!= *> -Realm/ObjectStore/index_set.hpp convert -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:461:20)> +forEach<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:468:24)> operator== operator!= operator== @@ -3887,8 +5133,6 @@ __sort5 &, realm::BindingContext::ObserverState *> __sort3 &, realm::BindingContext::ObserverState *> swap -__tuple_leaf -forward __tuple_impl<0, 1, const unsigned long &, const unsigned long &, const unsigned long &, const unsigned long &> tie operator(), std::__1::tuple > @@ -3920,10 +5164,8 @@ operator!= operator!=, std::__1::__wrap_iter > end > > begin > > -target_type -target forward -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &> operator!= __push_back_slow_path forward @@ -3938,7 +5180,7 @@ operator== end > > begin > > operator() -find_if, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:342:64)> +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:342:64)> move swap move_if_noexcept @@ -3953,68 +5195,58 @@ __construct getObjectSchema operator== operator!= -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &, const realm::Group::CascadeNotification &> -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &, const realm::Group::CascadeNotification &> -destroy_deallocate -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &> -forward &> -forward_as_tuple &> -__func -__clone -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &&> -forward &&> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &> -forward -forward_as_tuple -allocator, void (const realm::Group::CascadeNotification &)> > -forward, void (const realm::Group::CascadeNotification &)> > > > -forward, void (const realm::Group::CascadeNotification &)> *> -move, void (const realm::Group::CascadeNotification &)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -~__func -~__base -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&, 0> -move &> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&> -forward_as_tuple<> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51), false> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -__base -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> +__invoke<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &, const realm::Group::CascadeNotification &> +__call<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &, const realm::Group::CascadeNotification &> +get<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> &> +__libcpp_compressed_pair_imp &, 0, 0> +move &> &> +__compressed_pair &> +__tuple_leaf &, void> +__tuple_impl<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> &, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> &> +forward &> +forward_as_tuple &> +get<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &> +get<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> &&> +forward &&> +__libcpp_compressed_pair_imp &&, 0, 0> +move &&> &> +move &> +__compressed_pair &&> +move &> +__tuple_leaf, void> +__tuple_impl<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> > +tuple , false> +forward > +forward_as_tuple > +__tuple_leaf +__tuple_impl<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &> +forward +forward_as_tuple +allocator, void (const realm::Group::CascadeNotification &)> > +forward, void (const realm::Group::CascadeNotification &)> > > > +forward, void (const realm::Group::CascadeNotification &)> *> +move, void (const realm::Group::CascadeNotification &)> > > &> +allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> +get<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &&> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &&> +__libcpp_compressed_pair_imp<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &&, 0> +move &> +__compressed_pair<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &&> +__tuple_leaf<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51), void> +__tuple_impl<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &&, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> +tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51), false> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> +forward_as_tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> +move<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51) &> +__not_null<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> +function<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:322:51)> forward move > **&> swap > **> __construct_backward > *> -__construct_at_end forward > *> &> construct > *> __construct > *> -__append forward > **> operator== operator!= @@ -4028,10 +5260,10 @@ forward &> __push_back_slow_path construct __construct -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:124:17)> -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:119:17)> -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:111:17)> -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:106:17)> +forEach<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:124:17)> +forEach<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:119:17)> +forEach<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:111:17)> +forEach<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMObservation.mm:106:17)> swap iter_swap, std::__1::__wrap_iter > __advance > @@ -4049,7 +5281,6 @@ __to_raw_pointer __destroy destroy __to_raw_pointer -~IndexSet ~ColumnInfo __destroy destroy @@ -4108,8 +5339,9 @@ OBJC_METH_VAR_TYPE_.31 OBJC_METH_VAR_TYPE_.32 OBJC_METH_VAR_TYPE_.34 l_OBJC_$_INSTANCE_METHODS_RLMOptionalBase -OBJC_METH_VAR_NAME_.41 OBJC_METH_VAR_TYPE_.42 +OBJC_METH_VAR_TYPE_.44 +OBJC_METH_VAR_TYPE_.46 l_OBJC_$_INSTANCE_VARIABLES_RLMOptionalBase OBJC_CLASS_NAME_.47 OBJC_PROP_NAME_ATTR_.48 @@ -4121,12 +5353,13 @@ OBJC_PROP_NAME_ATTR_.53 OBJC_PROP_NAME_ATTR_.54 l_OBJC_$_PROP_LIST_RLMOptionalBase l_OBJC_CLASS_RO_$_RLMOptionalBase +RLMIsKindOfClass -[RLMOptionalBase .cxx_destruct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMOptionalBase.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMOptionalBase.mm -[RLMOptionalBase setStandaloneValue:] -[RLMOptionalBase standaloneValue] -[RLMOptionalBase setProperty:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMOptionalBase.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMOptionalBase.h -[RLMOptionalBase property] -[RLMOptionalBase setObject:] -[RLMOptionalBase object] @@ -4139,19 +5372,37 @@ OBJC_PROP_NAME_ATTR_.54 -[RLMOptionalBase setUnderlyingValue:] -[RLMOptionalBase underlyingValue] -[RLMOptionalBase init] --[RLMProperty initWithName:type:objectClassName:indexed:optional:] +_ZNK12_GLOBAL__N_130PredicateExpressionTransformer5visitEP11NSPredicate +_ZNK12_GLOBAL__N_130PredicateExpressionTransformer5visitEP12NSExpression +OBJC_METH_VAR_NAME_.1 +OBJC_SELECTOR_REFERENCES_.2 +OBJC_CLASSLIST_REFERENCES_$_.3 +OBJC_METH_VAR_NAME_.4 +OBJC_SELECTOR_REFERENCES_.5 +OBJC_SELECTOR_REFERENCES_.7 +visit +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMPredicateUtil.mm +PredicateExpressionTransformer +transformPredicate ++[RLMProperty propertyForObjectStoreProperty:] +-[RLMProperty initWithName:type:objectClassName:linkOriginPropertyName:indexed:optional:] +-[RLMProperty setName:] -[RLMProperty updateAccessors] -[RLMProperty setObjcCodeFromType] -[RLMProperty setTypeFromRawType] -[RLMProperty parseObjcProperty:] --[RLMProperty initSwiftPropertyWithName:indexed:property:instance:] -__67-[RLMProperty initSwiftPropertyWithName:indexed:property:instance:]_block_invoke --[RLMProperty initWithName:indexed:property:] +-[RLMProperty initSwiftPropertyWithName:indexed:linkPropertyDescriptor:property:instance:] +__90-[RLMProperty initSwiftPropertyWithName:indexed:linkPropertyDescriptor:property:instance:]_block_invoke +-[RLMProperty initWithName:indexed:linkPropertyDescriptor:property:] -[RLMProperty initSwiftListPropertyWithName:ivar:objectClassName:] -[RLMProperty initSwiftOptionalPropertyWithName:indexed:ivar:propertyType:] +-[RLMProperty initSwiftLinkingObjectsPropertyWithName:ivar:objectClassName:linkOriginPropertyName:] -[RLMProperty copyWithZone:] +-[RLMProperty copyWithNewName:] +-[RLMProperty isEqual:] -[RLMProperty isEqualToProperty:] -[RLMProperty description] +-[RLMProperty objectStoreCopy] -[RLMProperty name] -[RLMProperty type] -[RLMProperty setType:] @@ -4159,6 +5410,7 @@ __67-[RLMProperty initSwiftPropertyWithName:indexed:property:instance:]_block_in -[RLMProperty setIndexed:] -[RLMProperty objectClassName] -[RLMProperty setObjectClassName:] +-[RLMProperty linkOriginPropertyName] -[RLMProperty optional] -[RLMProperty setOptional:] -[RLMProperty column] @@ -4182,9 +5434,14 @@ __67-[RLMProperty initSwiftPropertyWithName:indexed:property:instance:]_block_in -[RLMProperty setterSel] -[RLMProperty setSetterSel:] -[RLMProperty .cxx_destruct] ++[RLMPropertyDescriptor descriptorWithClass:propertyName:] +-[RLMPropertyDescriptor objectClass] +-[RLMPropertyDescriptor propertyName] +-[RLMPropertyDescriptor .cxx_destruct] +OBJC_CLASSLIST_REFERENCES_$_.5 OBJC_IVAR_$_RLMProperty._name -OBJC_IVAR_$_RLMProperty._type OBJC_IVAR_$_RLMProperty._objectClassName +OBJC_IVAR_$_RLMProperty._linkOriginPropertyName OBJC_IVAR_$_RLMProperty._indexed OBJC_IVAR_$_RLMProperty._optional OBJC_IVAR_$_RLMProperty._getterName @@ -4195,86 +5452,168 @@ OBJC_IVAR_$_RLMProperty._objcType OBJC_IVAR_$_RLMProperty._objcRawType _ZZ33-[RLMProperty setTypeFromRawType]E11arrayPrefix _ZZ33-[RLMProperty setTypeFromRawType]E12numberPrefix +_ZZ33-[RLMProperty setTypeFromRawType]E20linkingObjectsPrefix +_unnamed_cfstring_.40 +_unnamed_cfstring_.42 +_unnamed_cfstring_.46 +_unnamed_cfstring_.48 +_unnamed_cfstring_.50 _unnamed_cfstring_.52 -OBJC_SELECTOR_REFERENCES_.63 -OBJC_SELECTOR_REFERENCES_.77 -OBJC_CLASSLIST_REFERENCES_$_.99 -OBJC_CLASSLIST_REFERENCES_$_.100 -_unnamed_cfstring_.109 -OBJC_IVAR_$_RLMProperty._swiftIvar -OBJC_CLASSLIST_REFERENCES_$_.110 +_unnamed_cfstring_.54 +_unnamed_cfstring_.56 +_unnamed_cfstring_.70 +_unnamed_cfstring_.82 +_unnamed_cfstring_.94 +_unnamed_cfstring_.98 +_unnamed_cfstring_.100 +_unnamed_cfstring_.102 +_unnamed_cfstring_.116 +.str.117 +_unnamed_cfstring_.118 OBJC_IVAR_$_RLMProperty._isPrimary OBJC_IVAR_$_RLMProperty._declarationIndex -.str.113 -_unnamed_cfstring_.114 -_unnamed_cfstring_.120 -_unnamed_cfstring_.122 +OBJC_SELECTOR_REFERENCES_.126 +OBJC_METH_VAR_NAME_.127 +OBJC_SELECTOR_REFERENCES_.128 OBJC_IVAR_$_RLMProperty._column +_unnamed_cfstring_.132 +OBJC_SELECTOR_REFERENCES_.134 +OBJC_SELECTOR_REFERENCES_.136 +OBJC_SELECTOR_REFERENCES_.138 +_unnamed_cfstring_.140 +OBJC_SELECTOR_REFERENCES_.144 +OBJC_SELECTOR_REFERENCES_.146 +OBJC_METH_VAR_NAME_.148 +l_OBJC_$_CLASS_METHODS_RLMProperty l_OBJC_METACLASS_RO_$_RLMProperty -OBJC_METH_VAR_TYPE_.135 -OBJC_METH_VAR_TYPE_.145 -OBJC_METH_VAR_TYPE_.149 -OBJC_METH_VAR_TYPE_.151 -OBJC_METH_VAR_TYPE_.153 -OBJC_METH_VAR_NAME_.157 +OBJC_CLASS_NAME_.149 +OBJC_METH_VAR_NAME_.155 +OBJC_METH_VAR_TYPE_.156 +OBJC_METH_VAR_TYPE_.158 +OBJC_METH_VAR_NAME_.159 +OBJC_METH_VAR_TYPE_.160 +OBJC_METH_VAR_NAME_.161 +OBJC_METH_VAR_TYPE_.162 +OBJC_METH_VAR_NAME_.163 +OBJC_METH_VAR_TYPE_.164 +OBJC_METH_VAR_NAME_.165 +OBJC_METH_VAR_TYPE_.166 +OBJC_METH_VAR_NAME_.167 +OBJC_METH_VAR_TYPE_.168 +OBJC_METH_VAR_TYPE_.170 OBJC_METH_VAR_NAME_.171 -OBJC_METH_VAR_NAME_.172 -OBJC_METH_VAR_NAME_.177 -l_OBJC_$_INSTANCE_METHODS_RLMProperty -OBJC_METH_VAR_NAME_.179 +OBJC_METH_VAR_TYPE_.172 +OBJC_METH_VAR_TYPE_.180 OBJC_METH_VAR_NAME_.181 -OBJC_METH_VAR_NAME_.183 -OBJC_METH_VAR_NAME_.189 -OBJC_METH_VAR_TYPE_.190 -OBJC_METH_VAR_NAME_.192 -OBJC_METH_VAR_TYPE_.193 -OBJC_METH_VAR_TYPE_.198 +OBJC_METH_VAR_TYPE_.184 +OBJC_METH_VAR_TYPE_.186 +OBJC_METH_VAR_NAME_.191 +OBJC_METH_VAR_TYPE_.192 +OBJC_METH_VAR_NAME_.193 +OBJC_METH_VAR_TYPE_.194 +OBJC_METH_VAR_NAME_.196 +OBJC_METH_VAR_TYPE_.202 +l_OBJC_$_INSTANCE_METHODS_RLMProperty +OBJC_METH_VAR_TYPE_.208 +OBJC_METH_VAR_TYPE_.210 +OBJC_METH_VAR_NAME_.211 +OBJC_METH_VAR_TYPE_.212 +OBJC_METH_VAR_NAME_.214 +OBJC_METH_VAR_NAME_.215 +OBJC_METH_VAR_TYPE_.217 +OBJC_METH_VAR_NAME_.220 +OBJC_METH_VAR_TYPE_.221 +OBJC_METH_VAR_NAME_.223 +OBJC_METH_VAR_NAME_.226 +OBJC_METH_VAR_TYPE_.227 +OBJC_METH_VAR_NAME_.228 l_OBJC_$_INSTANCE_VARIABLES_RLMProperty -OBJC_PROP_NAME_ATTR_.200 -OBJC_PROP_NAME_ATTR_.201 -OBJC_PROP_NAME_ATTR_.202 -OBJC_PROP_NAME_ATTR_.203 -OBJC_PROP_NAME_ATTR_.204 -OBJC_PROP_NAME_ATTR_.205 -OBJC_PROP_NAME_ATTR_.206 -OBJC_PROP_NAME_ATTR_.207 -OBJC_PROP_NAME_ATTR_.208 -OBJC_PROP_NAME_ATTR_.209 -OBJC_PROP_NAME_ATTR_.210 -OBJC_PROP_NAME_ATTR_.211 -OBJC_PROP_NAME_ATTR_.212 -OBJC_PROP_NAME_ATTR_.213 -OBJC_PROP_NAME_ATTR_.214 -OBJC_PROP_NAME_ATTR_.215 -OBJC_PROP_NAME_ATTR_.216 -OBJC_PROP_NAME_ATTR_.217 -OBJC_PROP_NAME_ATTR_.218 -OBJC_PROP_NAME_ATTR_.219 -OBJC_PROP_NAME_ATTR_.220 -OBJC_PROP_NAME_ATTR_.224 -OBJC_PROP_NAME_ATTR_.225 -OBJC_PROP_NAME_ATTR_.226 -OBJC_PROP_NAME_ATTR_.227 -OBJC_PROP_NAME_ATTR_.228 +OBJC_PROP_NAME_ATTR_.229 +OBJC_PROP_NAME_ATTR_.230 +OBJC_PROP_NAME_ATTR_.231 +OBJC_PROP_NAME_ATTR_.232 +OBJC_PROP_NAME_ATTR_.233 +OBJC_PROP_NAME_ATTR_.234 +OBJC_PROP_NAME_ATTR_.235 +OBJC_PROP_NAME_ATTR_.236 +OBJC_PROP_NAME_ATTR_.237 +OBJC_PROP_NAME_ATTR_.238 +OBJC_PROP_NAME_ATTR_.239 +OBJC_PROP_NAME_ATTR_.240 +OBJC_PROP_NAME_ATTR_.241 +OBJC_PROP_NAME_ATTR_.242 +OBJC_PROP_NAME_ATTR_.243 +OBJC_PROP_NAME_ATTR_.244 +OBJC_PROP_NAME_ATTR_.245 +OBJC_PROP_NAME_ATTR_.246 +OBJC_PROP_NAME_ATTR_.247 +OBJC_PROP_NAME_ATTR_.248 +OBJC_PROP_NAME_ATTR_.249 +OBJC_PROP_NAME_ATTR_.250 +OBJC_PROP_NAME_ATTR_.251 +OBJC_PROP_NAME_ATTR_.252 +OBJC_PROP_NAME_ATTR_.253 +OBJC_PROP_NAME_ATTR_.254 +OBJC_PROP_NAME_ATTR_.255 +OBJC_PROP_NAME_ATTR_.256 +OBJC_PROP_NAME_ATTR_.257 +OBJC_PROP_NAME_ATTR_.258 +OBJC_PROP_NAME_ATTR_.259 l_OBJC_$_PROP_LIST_RLMProperty l_OBJC_CLASS_RO_$_RLMProperty -.str.229 -_unnamed_cfstring_.230 -.str.231 -_unnamed_cfstring_.232 -_unnamed_cfstring_.234 -.str.235 -_unnamed_cfstring_.236 -.str.237 -_unnamed_cfstring_.238 -.str.239 -_unnamed_cfstring_.240 -_unnamed_cfstring_.246 -_unnamed_cfstring_.250 +OBJC_CLASSLIST_REFERENCES_$_.260 +OBJC_IVAR_$_RLMPropertyDescriptor._objectClass +OBJC_IVAR_$_RLMPropertyDescriptor._propertyName +OBJC_METH_VAR_TYPE_.263 +l_OBJC_$_CLASS_METHODS_RLMPropertyDescriptor +l_OBJC_METACLASS_RO_$_RLMPropertyDescriptor +OBJC_CLASS_NAME_.264 +l_OBJC_$_INSTANCE_METHODS_RLMPropertyDescriptor +OBJC_METH_VAR_NAME_.266 +l_OBJC_$_INSTANCE_VARIABLES_RLMPropertyDescriptor +OBJC_PROP_NAME_ATTR_.269 +OBJC_PROP_NAME_ATTR_.270 +OBJC_PROP_NAME_ATTR_.271 +OBJC_PROP_NAME_ATTR_.272 +l_OBJC_$_PROP_LIST_RLMPropertyDescriptor +l_OBJC_CLASS_RO_$_RLMPropertyDescriptor +.str.273 +_unnamed_cfstring_.274 +OBJC_SELECTOR_REFERENCES_.278 +.str.279 +_unnamed_cfstring_.280 +.str.281 +_unnamed_cfstring_.282 +.str.283 +_unnamed_cfstring_.284 +.str.285 +_unnamed_cfstring_.286 +.str.287 +_unnamed_cfstring_.288 +.str.289 +_unnamed_cfstring_.290 +_unnamed_cfstring_.292 +.str.293 +_unnamed_cfstring_.294 +.str.295 +_unnamed_cfstring_.296 +.str.297 +_unnamed_cfstring_.298 +.str.299 +_unnamed_cfstring_.300 +.str.301 +_unnamed_cfstring_.302 +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/property.hpp +rawTypeIsComputedProperty +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMProperty.mm +-[RLMPropertyDescriptor .cxx_destruct] +-[RLMPropertyDescriptor propertyName] +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMProperty.h +-[RLMPropertyDescriptor objectClass] ++[RLMPropertyDescriptor descriptorWithClass:propertyName:] -[RLMProperty .cxx_destruct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMProperty.mm -[RLMProperty setSetterSel:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMProperty_Private.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMProperty_Private.h -[RLMProperty setterSel] -[RLMProperty setGetterSel:] -[RLMProperty getterSel] @@ -4296,7 +5635,7 @@ _unnamed_cfstring_.250 -[RLMProperty column] -[RLMProperty setOptional:] -[RLMProperty optional] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMProperty.h +-[RLMProperty linkOriginPropertyName] -[RLMProperty setObjectClassName:] -[RLMProperty objectClassName] -[RLMProperty setIndexed:] @@ -4304,18 +5643,25 @@ _unnamed_cfstring_.250 -[RLMProperty setType:] -[RLMProperty type] -[RLMProperty name] +-[RLMProperty objectStoreCopy] -[RLMProperty description] -[RLMProperty isEqualToProperty:] +-[RLMProperty isEqual:] +-[RLMProperty copyWithNewName:] -[RLMProperty copyWithZone:] +-[RLMProperty initSwiftLinkingObjectsPropertyWithName:ivar:objectClassName:linkOriginPropertyName:] -[RLMProperty initSwiftOptionalPropertyWithName:indexed:ivar:propertyType:] -[RLMProperty initSwiftListPropertyWithName:ivar:objectClassName:] --[RLMProperty initWithName:indexed:property:] --[RLMProperty initSwiftPropertyWithName:indexed:property:instance:] +-[RLMProperty initWithName:indexed:linkPropertyDescriptor:property:] +-[RLMProperty initSwiftPropertyWithName:indexed:linkPropertyDescriptor:property:instance:] -[RLMProperty parseObjcProperty:] -[RLMProperty setTypeFromRawType] -[RLMProperty setObjcCodeFromType] -[RLMProperty updateAccessors] --[RLMProperty initWithName:type:objectClassName:indexed:optional:] +-[RLMProperty setName:] +-[RLMProperty initWithName:type:objectClassName:linkOriginPropertyName:indexed:optional:] ++[RLMProperty propertyForObjectStoreProperty:] +RLMPropertyTypeIsComputed RLMPropertyTypeIsNumeric RLMPropertyTypeIsNullable _ZN5realm12ArrayIntNullD1Ev @@ -4338,9 +5684,9 @@ _ZNK12_GLOBAL__N_119CollectionOperation19validate_comparisonERKNS_15ColumnRefere _ZN12_GLOBAL__N_144add_collection_operation_constraint_to_queryIJNS_19CollectionOperationENS_15ColumnReferenceEEEEvRN5realm5QueryE23NSPredicateOperatorTypeS1_DpT_ _ZN12_GLOBAL__N_144add_collection_operation_constraint_to_queryIJNS_15ColumnReferenceENS_19CollectionOperationEEEEvRN5realm5QueryE23NSPredicateOperatorTypeS2_DpT_ _ZN12_GLOBAL__N_119CollectionOperation13name_for_typeENS0_4TypeE -_ZN5realm4util17BadOptionalAccessD1Ev -_ZN5realm4util17BadOptionalAccessD0Ev -_ZNK5realm4util8OptionalIN12_GLOBAL__N_115ColumnReferenceEEptEv +_ZN5realm4util8OptionalIN12_GLOBAL__N_115ColumnReferenceEE5valueEv +_ZN12_GLOBAL__N_115ColumnReferenceC1EP9RLMSchemaP11RLMPropertyRKNSt3__16vectorIU8__strongS4_NS5_9allocatorIS7_EEEE +_ZNK5realm4util8OptionalIN12_GLOBAL__N_115ColumnReferenceEE5valueEv _ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIxLNS_19CollectionOperation4TypeE0EEEDaRN5realm5QueryES1_ _ZN5realm7ColumnsIxED1Ev _ZN5realm9LinkCountD1Ev @@ -4356,12 +5702,14 @@ _ZN5realm7CompareINS_4LessExNS_7SubexprES2_E20apply_handover_patchERNSt3__16vect _ZN5realm5ValueIxED1Ev _ZN5realm5ValueIxEC2Ev _ZNK5realm5ValueIxE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueIxE16export_TimestampERNS_9ValueBaseE _ZNK5realm5ValueIxE10export_intERNS_9ValueBaseE _ZNK5realm5ValueIxE12export_floatERNS_9ValueBaseE _ZNK5realm5ValueIxE14export_int64_tERNS_9ValueBaseE _ZNK5realm5ValueIxE13export_doubleERNS_9ValueBaseE _ZNK5realm5ValueIxE17export_StringDataERNS_9ValueBaseE _ZNK5realm5ValueIxE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueIxE15export_RowIndexERNS_9ValueBaseE _ZNK5realm5ValueIxE11export_nullERNS_9ValueBaseE _ZN5realm5ValueIxE6importERKNS_9ValueBaseE _ZN5realm5ValueIxE8evaluateEmRNS_9ValueBaseE @@ -4376,11 +5724,12 @@ _ZNK5realm7Subexpr14get_base_tableEv _ZThn12_N5realm5ValueIxE8evaluateEmRNS_9ValueBaseE _ZN5realm14NullableVectorIxLm8EE4initEmx _ZN5realm14NullableVectorIxLm8EE4initEm -_ZN5realm14NullableVectorIbLm8EE3setEmx +_ZN5realm14NullableVectorIxLm8EE3setIxEENSt3__19enable_ifIXsr3std7is_sameIT_xEE5valueEvE4typeEmx +_ZN5realm14NullableVectorIbLm8EE3setIxEENSt3__19enable_ifIXsr3std7is_sameIT_xEE5valueEvE4typeEmx _ZNK5realm14NullableVectorIxLm8EEixEm _ZN5realm14NullableVectorIbLm8EE4initEm _ZN5realm14NullableVectorIbLm8EE4fillEb -_ZN5realm14NullableVectorIiLm8EE3setEmx +_ZN5realm14NullableVectorIiLm8EE3setIxEENSt3__19enable_ifIXsr3std7is_sameIT_xEE5valueEvE4typeEmx _ZN5realm14NullableVectorIiLm8EE4initEm _ZN5realm14NullableVectorIiLm8EE4fillEi _ZN5realm5ValueIfE4initEbmf @@ -4435,6 +5784,7 @@ _ZNK5realm7CompareINS_8NotEqualExNS_7SubexprES2_E14get_base_tableEv _ZNK5realm7CompareINS_8NotEqualExNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE _ZN5realm7CompareINS_8NotEqualExNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE _ZN5realm7CompareINS_8NotEqualExNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE +_ZNK12_GLOBAL__N_115ColumnReference7resolveIN5realm4LinkEEEDaRNS2_5QueryE _ZNK5realm7ColumnsINS_4LinkEE5countEv _ZN5realm7ColumnsINS_4LinkEED1Ev _ZNK12_GLOBAL__N_115ColumnReference15table_for_queryERN5realm5QueryE @@ -4445,13 +5795,42 @@ _ZNK5realm7ColumnsINS_4LinkEE14get_base_tableEv _ZN5realm7ColumnsINS_4LinkEE8evaluateEmRNS_9ValueBaseE _ZN5realm7LinkMapC2EPKNS_5TableERKNSt3__16vectorImNS4_9allocatorImEEEE _ZN5realm7LinkMap14set_base_tableEPKNS_5TableE +_ZN5realm7LinkMap9get_linksEm +_ZN5realm5ValueINS_8RowIndexEED1Ev +_ZN5realm14MakeLinkVector7consumeEm +_ZN5realm7LinkMap9map_linksEmmRNS_15LinkMapFunctionE +_ZN5realm5ValueINS_8RowIndexEEC2Ev +_ZN5realm5ValueINS_8RowIndexEE4initEbmS1_ +_ZNK5realm5ValueINS_8RowIndexEE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE16export_TimestampERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE10export_intERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE12export_floatERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE14export_int64_tERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE13export_doubleERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE17export_StringDataERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE15export_RowIndexERNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE11export_nullERNS_9ValueBaseE +_ZN5realm5ValueINS_8RowIndexEE6importERKNS_9ValueBaseE +_ZN5realm5ValueINS_8RowIndexEE8evaluateEmRNS_9ValueBaseE +_ZNK5realm5ValueINS_8RowIndexEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE +_ZN5realm5ValueINS_8RowIndexEED0Ev +_ZThn12_N5realm5ValueINS_8RowIndexEED1Ev +_ZThn12_N5realm5ValueINS_8RowIndexEED0Ev +_ZThn12_NK5realm5ValueINS_8RowIndexEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE +_ZThn12_N5realm5ValueINS_8RowIndexEE8evaluateEmRNS_9ValueBaseE +_ZN5realm14NullableVectorINS_8RowIndexELm8EE4initEmS1_ +_ZN5realm14NullableVectorINS_8RowIndexELm8EE4initEm +_ZN5realm14NullableVectorINS_8RowIndexELm8EE4fillES1_ +_ZNK5realm14NullableVectorINS_8RowIndexELm8EEixEm +_ZNK5realm4util8OptionalImE5valueEv +_ZN5realm14NullableVectorINS_8RowIndexELm8EEC2ERKS2_ _ZN5realm9LinkCountD0Ev _ZNK5realm9LinkCount5cloneEPNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEE _ZN5realm9LinkCount14set_base_tableEPKNS_5TableE _ZNK5realm9LinkCount14get_base_tableEv _ZN5realm9LinkCount8evaluateEmRNS_9ValueBaseE _ZN5realm10CountLinks7consumeEm -_ZN5realm7LinkMap9map_linksEmmRNS_15LinkMapFunctionE _ZN5realm5ValueIxEC2Ebmx _ZN12_GLOBAL__N_123value_of_type_for_queryIxEEDaRN5realm5QueryERKNS_15ColumnReferenceE _ZN5realm7ColumnsIxEC2EmPKNS_5TableERKNSt3__16vectorImNS5_9allocatorImEEEE @@ -4469,8 +5848,6 @@ _ZN5realm16SequentialGetterINS_6ColumnIxEEED1Ev _ZN5realm16SequentialGetterINS_6ColumnIxEEED0Ev _ZN5realm7ColumnsIxE17evaluate_internalINS_6ColumnINS_4util8OptionalIxEEEEEEvmRNS_9ValueBaseE _ZN5realm7ColumnsIxE17evaluate_internalINS_6ColumnIxEEEEvmRNS_9ValueBaseE -_ZN5realm7LinkMap9get_linksEm -_ZN5realm14MakeLinkVector7consumeEm _ZN5realm5ValueIxEC2Ebm _ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIxLNS_19CollectionOperation4TypeE1EEEDaRN5realm5QueryES1_ _ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEED1Ev @@ -4498,12 +5875,14 @@ _ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEE8evaluateEm _ZN5realm5ValueINS_4nullEED1Ev _ZN5realm5ValueINS_4nullEEC2EbmS1_ _ZNK5realm5ValueINS_4nullEE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueINS_4nullEE16export_TimestampERNS_9ValueBaseE _ZNK5realm5ValueINS_4nullEE10export_intERNS_9ValueBaseE _ZNK5realm5ValueINS_4nullEE12export_floatERNS_9ValueBaseE _ZNK5realm5ValueINS_4nullEE14export_int64_tERNS_9ValueBaseE _ZNK5realm5ValueINS_4nullEE13export_doubleERNS_9ValueBaseE _ZNK5realm5ValueINS_4nullEE17export_StringDataERNS_9ValueBaseE _ZNK5realm5ValueINS_4nullEE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueINS_4nullEE15export_RowIndexERNS_9ValueBaseE _ZNK5realm5ValueINS_4nullEE11export_nullERNS_9ValueBaseE _ZN5realm5ValueINS_4nullEE6importERKNS_9ValueBaseE _ZN5realm5ValueINS_4nullEE8evaluateEmRNS_9ValueBaseE @@ -4513,6 +5892,8 @@ _ZThn12_N5realm5ValueINS_4nullEED1Ev _ZThn12_N5realm5ValueINS_4nullEED0Ev _ZThn12_NK5realm5ValueINS_4nullEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE _ZThn12_N5realm5ValueINS_4nullEE8evaluateEmRNS_9ValueBaseE +_ZN5realm14NullableVectorINS_9TimestampELm8EE4initEm +_ZN5realm14NullableVectorINS_9TimestampELm8EE4fillES1_ _ZN5realm14NullableVectorINS_10StringDataELm8EE4initEmS1_ _ZN5realm14NullableVectorINS_10StringDataELm8EE4initEm _ZN5realm14NullableVectorINS_4nullELm8EEC2ERKS2_ @@ -4527,12 +5908,14 @@ _ZN5realm7CompareINS_4LessEfNS_7SubexprES2_E20apply_handover_patchERNSt3__16vect _ZN5realm5ValueIfED1Ev _ZN5realm5ValueIfEC2Ev _ZNK5realm5ValueIfE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueIfE16export_TimestampERNS_9ValueBaseE _ZNK5realm5ValueIfE10export_intERNS_9ValueBaseE _ZNK5realm5ValueIfE12export_floatERNS_9ValueBaseE _ZNK5realm5ValueIfE14export_int64_tERNS_9ValueBaseE _ZNK5realm5ValueIfE13export_doubleERNS_9ValueBaseE _ZNK5realm5ValueIfE17export_StringDataERNS_9ValueBaseE _ZNK5realm5ValueIfE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueIfE15export_RowIndexERNS_9ValueBaseE _ZNK5realm5ValueIfE11export_nullERNS_9ValueBaseE _ZN5realm5ValueIfE6importERKNS_9ValueBaseE _ZN5realm5ValueIfE8evaluateEmRNS_9ValueBaseE @@ -4633,12 +6016,14 @@ _ZN5realm7CompareINS_4LessEdNS_7SubexprES2_E20apply_handover_patchERNSt3__16vect _ZN5realm5ValueIdED1Ev _ZN5realm5ValueIdEC2Ev _ZNK5realm5ValueIdE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueIdE16export_TimestampERNS_9ValueBaseE _ZNK5realm5ValueIdE10export_intERNS_9ValueBaseE _ZNK5realm5ValueIdE12export_floatERNS_9ValueBaseE _ZNK5realm5ValueIdE14export_int64_tERNS_9ValueBaseE _ZNK5realm5ValueIdE13export_doubleERNS_9ValueBaseE _ZNK5realm5ValueIdE17export_StringDataERNS_9ValueBaseE _ZNK5realm5ValueIdE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueIdE15export_RowIndexERNS_9ValueBaseE _ZNK5realm5ValueIdE11export_nullERNS_9ValueBaseE _ZN5realm5ValueIdE6importERKNS_9ValueBaseE _ZN5realm5ValueIdE8evaluateEmRNS_9ValueBaseE @@ -4836,8 +6221,8 @@ _ZN5realm9OverloadsIfdE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IdEE _ZN12_GLOBAL__N_126do_add_constraint_to_queryIJNS_15ColumnReferenceES1_EEEvRN5realm5QueryE15RLMPropertyType23NSPredicateOperatorTypejDpT_ _ZN12_GLOBAL__N_123value_of_type_for_queryIbEEDaRN5realm5QueryERKNS_15ColumnReferenceE _ZN5realm7ColumnsIbED1Ev -_ZN12_GLOBAL__N_123value_of_type_for_queryIN5realm8DateTimeEEEDaRNS1_5QueryERKNS_15ColumnReferenceE -_ZN5realm7ColumnsINS_8DateTimeEED1Ev +_ZN12_GLOBAL__N_123value_of_type_for_queryIN5realm9TimestampEEEDaRNS1_5QueryERKNS_15ColumnReferenceE +_ZN5realm7ColumnsINS_9TimestampEED1Ev _ZN12_GLOBAL__N_123value_of_type_for_queryIN5realm10StringDataEEEDaRNS1_5QueryERKNS_15ColumnReferenceE _ZN5realm7ColumnsINS_10StringDataEED1Ev _ZN5realm7CompareINS_5EqualEbNS_7SubexprES2_ED1Ev @@ -4850,12 +6235,14 @@ _ZN5realm7CompareINS_5EqualEbNS_7SubexprES2_E20apply_handover_patchERNSt3__16vec _ZN5realm5ValueIbED1Ev _ZN5realm5ValueIbEC2Ev _ZNK5realm5ValueIbE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueIbE16export_TimestampERNS_9ValueBaseE _ZNK5realm5ValueIbE10export_intERNS_9ValueBaseE _ZNK5realm5ValueIbE12export_floatERNS_9ValueBaseE _ZNK5realm5ValueIbE14export_int64_tERNS_9ValueBaseE _ZNK5realm5ValueIbE13export_doubleERNS_9ValueBaseE _ZNK5realm5ValueIbE17export_StringDataERNS_9ValueBaseE _ZNK5realm5ValueIbE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueIbE15export_RowIndexERNS_9ValueBaseE _ZNK5realm5ValueIbE11export_nullERNS_9ValueBaseE _ZN5realm5ValueIbE6importERKNS_9ValueBaseE _ZN5realm5ValueIbE8evaluateEmRNS_9ValueBaseE @@ -4886,84 +6273,88 @@ _ZN5realm7ColumnsIbE8evaluateEmRNS_9ValueBaseE _ZN5realm7ColumnsIbEC2ERKS1_ _ZN5realm7ColumnsIbE17evaluate_internalINS_6ColumnINS_4util8OptionalIxEEEEEEvmRNS_9ValueBaseE _ZN5realm7ColumnsIbE17evaluate_internalINS_6ColumnIxEEEEvmRNS_9ValueBaseE -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm5ValueINS_8DateTimeEED1Ev -_ZN5realm5ValueINS_8DateTimeEEC2Ev -_ZNK5realm5ValueINS_8DateTimeEE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueINS_8DateTimeEE6importERKNS_9ValueBaseE -_ZN5realm5ValueINS_8DateTimeEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm5ValueINS_8DateTimeEED0Ev -_ZThn12_N5realm5ValueINS_8DateTimeEED1Ev -_ZThn12_N5realm5ValueINS_8DateTimeEED0Ev -_ZThn12_NK5realm5ValueINS_8DateTimeEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZThn12_N5realm5ValueINS_8DateTimeEE8evaluateEmRNS_9ValueBaseE -_ZN5realm14NullableVectorINS_8DateTimeELm8EE4initEmS1_ -_ZN5realm14NullableVectorINS_8DateTimeELm8EE4initEm -_ZN5realm14NullableVectorINS_8DateTimeELm8EEC2ERKS2_ -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7ColumnsINS_8DateTimeEEC2EmPKNS_5TableERKNSt3__16vectorImNS6_9allocatorImEEEE -_ZN5realm7ColumnsINS_8DateTimeEED0Ev -_ZNK5realm7ColumnsINS_8DateTimeEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm7ColumnsINS_8DateTimeEE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsINS_8DateTimeEE14get_base_tableEv -_ZN5realm7ColumnsINS_8DateTimeEE8evaluateEmRNS_9ValueBaseE -_ZN5realm7ColumnsINS_8DateTimeEEC2ERKS2_ -_ZN5realm7ColumnsINS_8DateTimeEE17evaluate_internalINS_6ColumnINS_4util8OptionalIxEEEEEEvmRNS_9ValueBaseE -_ZN5realm7ColumnsINS_8DateTimeEE17evaluate_internalINS_6ColumnIxEEEEvmRNS_9ValueBaseE +_ZN5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_ED1Ev +_ZN5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_ED0Ev +_ZNK5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_E10find_firstEmm +_ZN5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_E14set_base_tableEPKNS_5TableE +_ZNK5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_E14get_base_tableEv +_ZNK5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE +_ZN5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE +_ZN5realm5ValueINS_9TimestampEED1Ev +_ZN5realm5ValueINS_9TimestampEEC2Ev +_ZNK5realm5ValueINS_9TimestampEE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE16export_TimestampERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE10export_intERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE12export_floatERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE14export_int64_tERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE13export_doubleERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE17export_StringDataERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE15export_RowIndexERNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE11export_nullERNS_9ValueBaseE +_ZN5realm5ValueINS_9TimestampEE6importERKNS_9ValueBaseE +_ZN5realm5ValueINS_9TimestampEE8evaluateEmRNS_9ValueBaseE +_ZNK5realm5ValueINS_9TimestampEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE +_ZN5realm5ValueINS_9TimestampEED0Ev +_ZThn12_N5realm5ValueINS_9TimestampEED1Ev +_ZThn12_N5realm5ValueINS_9TimestampEED0Ev +_ZThn12_NK5realm5ValueINS_9TimestampEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE +_ZThn12_N5realm5ValueINS_9TimestampEE8evaluateEmRNS_9ValueBaseE +_ZN5realm14NullableVectorINS_9TimestampELm8EEC2ERKS2_ +_ZNK5realm9TimestampgtERKS0_ +_ZN5realm7CompareINS_7GreaterENS_9TimestampENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE +_ZN5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_ED1Ev +_ZN5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_ED0Ev +_ZNK5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_E10find_firstEmm +_ZN5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_E14set_base_tableEPKNS_5TableE +_ZNK5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_E14get_base_tableEv +_ZNK5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE +_ZN5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE +_ZNK5realm9TimestampgeERKS0_ +_ZNK5realm9TimestampeqERKS0_ +_ZN5realm7CompareINS_12GreaterEqualENS_9TimestampENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE +_ZN5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_ED1Ev +_ZN5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_ED0Ev +_ZNK5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_E10find_firstEmm +_ZN5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_E14set_base_tableEPKNS_5TableE +_ZNK5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_E14get_base_tableEv +_ZNK5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE +_ZN5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE +_ZNK5realm9TimestampltERKS0_ +_ZN5realm7CompareINS_4LessENS_9TimestampENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE +_ZN5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_ED1Ev +_ZN5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_ED0Ev +_ZNK5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_E10find_firstEmm +_ZN5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_E14set_base_tableEPKNS_5TableE +_ZNK5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_E14get_base_tableEv +_ZNK5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE +_ZN5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE +_ZNK5realm9TimestampleERKS0_ +_ZN5realm7CompareINS_9LessEqualENS_9TimestampENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE +_ZN5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_ED1Ev +_ZN5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_ED0Ev +_ZNK5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_E10find_firstEmm +_ZN5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_E14set_base_tableEPKNS_5TableE +_ZNK5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_E14get_base_tableEv +_ZNK5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE +_ZN5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE +_ZN5realm7CompareINS_5EqualENS_9TimestampENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE +_ZN5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_ED1Ev +_ZN5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_ED0Ev +_ZNK5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_E10find_firstEmm +_ZN5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_E14set_base_tableEPKNS_5TableE +_ZNK5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_E14get_base_tableEv +_ZNK5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE +_ZN5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE +_ZNK5realm9TimestampneERKS0_ +_ZN5realm7CompareINS_8NotEqualENS_9TimestampENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE +_ZN5realm7ColumnsINS_9TimestampEED0Ev +_ZNK5realm7ColumnsINS_9TimestampEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE +_ZN5realm18SimpleQuerySupportINS_9TimestampEE14set_base_tableEPKNS_5TableE +_ZNK5realm18SimpleQuerySupportINS_9TimestampEE14get_base_tableEv +_ZN5realm18SimpleQuerySupportINS_9TimestampEE8evaluateEmRNS_9ValueBaseE +_ZN5realm18SimpleQuerySupportINS_9TimestampEED1Ev +_ZN5realm18SimpleQuerySupportINS_9TimestampEED0Ev _ZN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_ED1Ev _ZN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_ED0Ev _ZNK5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_E10find_firstEmm @@ -4974,12 +6365,14 @@ _ZN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_E20apply_handov _ZN5realm5ValueINS_10StringDataEED1Ev _ZN5realm5ValueINS_10StringDataEEC2Ev _ZNK5realm5ValueINS_10StringDataEE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueINS_10StringDataEE16export_TimestampERNS_9ValueBaseE _ZNK5realm5ValueINS_10StringDataEE10export_intERNS_9ValueBaseE _ZNK5realm5ValueINS_10StringDataEE12export_floatERNS_9ValueBaseE _ZNK5realm5ValueINS_10StringDataEE14export_int64_tERNS_9ValueBaseE _ZNK5realm5ValueINS_10StringDataEE13export_doubleERNS_9ValueBaseE _ZNK5realm5ValueINS_10StringDataEE17export_StringDataERNS_9ValueBaseE _ZNK5realm5ValueINS_10StringDataEE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueINS_10StringDataEE15export_RowIndexERNS_9ValueBaseE _ZNK5realm5ValueINS_10StringDataEE11export_nullERNS_9ValueBaseE _ZN5realm5ValueINS_10StringDataEE6importERKNS_9ValueBaseE _ZN5realm5ValueINS_10StringDataEE8evaluateEmRNS_9ValueBaseE @@ -5081,12 +6474,13 @@ _ZNK5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3 _ZN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE _ZNK5realm11NotEqualInsclENS_10StringDataES1_bb _ZN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7ColumnsINS_10StringDataEEC2EmPKNS_5TableERKNSt3__16vectorImNS6_9allocatorImEEEE _ZN5realm7ColumnsINS_10StringDataEED0Ev _ZNK5realm7ColumnsINS_10StringDataEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm7ColumnsINS_10StringDataEE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsINS_10StringDataEE14get_base_tableEv -_ZN5realm7ColumnsINS_10StringDataEE8evaluateEmRNS_9ValueBaseE +_ZN5realm18SimpleQuerySupportINS_10StringDataEE14set_base_tableEPKNS_5TableE +_ZNK5realm18SimpleQuerySupportINS_10StringDataEE14get_base_tableEv +_ZN5realm18SimpleQuerySupportINS_10StringDataEE8evaluateEmRNS_9ValueBaseE +_ZN5realm18SimpleQuerySupportINS_10StringDataEED1Ev +_ZN5realm18SimpleQuerySupportINS_10StringDataEED0Ev _ZN5realm7ColumnsINS_4LinkEE7is_nullEv _ZN5realm16UnaryLinkCompareILb0EED1Ev _ZN5realm16UnaryLinkCompareILb0EED0Ev @@ -5097,12 +6491,14 @@ _ZNK5realm16UnaryLinkCompareILb0EE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22Q _ZN5realm13FindNullLinks7consumeEm _ZN5realm9OverloadsIbbE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IbEE _ZN5realm9OverloadsIbbE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IbEE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE +_ZN5realm9OverloadsINS_9TimestampES1_E7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IS1_EE +_ZNK5realm18SimpleQuerySupportINS_9TimestampEE11is_nullableEv +_ZN5realm9OverloadsINS_9TimestampES1_E7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE +_ZN5realm9OverloadsINS_9TimestampES1_E7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IS1_EE +_ZN5realm9OverloadsINS_9TimestampES1_E7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE +_ZN5realm9OverloadsINS_9TimestampES1_E7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IS1_EE +_ZN5realm9OverloadsINS_9TimestampES1_E7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE +_ZN12_GLOBAL__N_131add_between_constraint_to_queryERN5realm5QueryERKNS_15ColumnReferenceEP11objc_object _ZN12_GLOBAL__N_123validate_property_valueERKNS_15ColumnReferenceEP11objc_objectP8NSStringP15RLMObjectSchemaS6_ _ZN12_GLOBAL__N_123add_constraint_to_queryINS_15ColumnReferenceEU8__strongP11objc_objectEEvRN5realm5QueryE15RLMPropertyType23NSPredicateOperatorTypejT_T0_ _ZN12_GLOBAL__N_144add_collection_operation_constraint_to_queryIJNS_19CollectionOperationEU8__strongP11objc_objectEEEvRN5realm5QueryE23NSPredicateOperatorTypeS1_DpT_ @@ -5112,12 +6508,14 @@ _ZN5realm5ValueIfEC2Ef _ZN5realm5ValueIdEC2Ed _ZN5realm5ValueIiEC2Ei _ZNK5realm5ValueIiE11export_boolERNS_9ValueBaseE +_ZNK5realm5ValueIiE16export_TimestampERNS_9ValueBaseE _ZNK5realm5ValueIiE10export_intERNS_9ValueBaseE _ZNK5realm5ValueIiE12export_floatERNS_9ValueBaseE _ZNK5realm5ValueIiE14export_int64_tERNS_9ValueBaseE _ZNK5realm5ValueIiE13export_doubleERNS_9ValueBaseE _ZNK5realm5ValueIiE17export_StringDataERNS_9ValueBaseE _ZNK5realm5ValueIiE17export_BinaryDataERNS_9ValueBaseE +_ZNK5realm5ValueIiE15export_RowIndexERNS_9ValueBaseE _ZNK5realm5ValueIiE11export_nullERNS_9ValueBaseE _ZN5realm5ValueIiE6importERKNS_9ValueBaseE _ZN5realm5ValueIiE8evaluateEmRNS_9ValueBaseE @@ -5130,15 +6528,60 @@ _ZThn12_NK5realm5ValueIiE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeH _ZThn12_N5realm5ValueIiE8evaluateEmRNS_9ValueBaseE _ZNK5realm14NullableVectorIiLm8EEixEm _ZN5realm14NullableVectorIiLm8EEC2ERKS1_ +_ZNK12_GLOBAL__N_115ColumnReference25link_target_object_schemaEv +_ZNK12_GLOBAL__N_115ColumnReference21resolve_with_subqueryIN5realm4LinkEEEDaRNS2_5QueryES5_ +_ZNK5realm8SubQueryINS_4LinkEE5countEv +_ZN5realm13SubQueryCountD1Ev +_ZN5realm8SubQueryINS_4LinkEEC2ENS_7ColumnsIS1_EENS_5QueryE +_ZN5realm13SubQueryCountC2ENS_5QueryENS_7LinkMapE +_ZN5realm13SubQueryCountD0Ev +_ZNK5realm13SubQueryCount5cloneEPNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEE +_ZN5realm13SubQueryCount20apply_handover_patchERNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEERNS_5GroupE +_ZN5realm13SubQueryCount14set_base_tableEPKNS_5TableE +_ZNK5realm13SubQueryCount14get_base_tableEv +_ZN5realm13SubQueryCount8evaluateEmRNS_9ValueBaseE +_ZN5realm13SubQueryCountC2ERKS0_PNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE +_ZN5realm26SubQueryCountHandoverPatchD1Ev +_ZN5realm26SubQueryCountHandoverPatchD0Ev _ZN12_GLOBAL__N_139value_from_constant_expression_or_valueEP11objc_object _ZN12_GLOBAL__N_19is_nsnullEP11objc_object +_ZN12_GLOBAL__N_123value_of_type_for_queryIN5realm9TimestampEEEDaRNS1_5QueryEP11objc_object _ZN12_GLOBAL__N_130add_string_constraint_to_queryIN5realm10StringDataEEEvRNS1_5QueryE23NSPredicateOperatorTypejONS1_7ColumnsIS2_EET_ _ZN12_GLOBAL__N_123value_of_type_for_queryIN5realm10StringDataEEEDaRNS1_5QueryEP11objc_object _ZN12_GLOBAL__N_130add_binary_constraint_to_queryERN5realm5QueryE23NSPredicateOperatorTypeRKNS_15ColumnReferenceEP11objc_object _ZN12_GLOBAL__N_128add_link_constraint_to_queryERN5realm5QueryE23NSPredicateOperatorTypeRKNS_15ColumnReferenceEP9RLMObject _ZN5realm5ValueIbEC2Eb -_ZN5realm5ValueINS_8DateTimeEEC2ES1_ -_ZN5realm8BasicRowIKNS_5TableEED2Ev +_ZN5realm5ValueINS_9TimestampEEC2ES1_ +_ZN5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_ED1Ev +_ZN5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_ED0Ev +_ZNK5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_E10find_firstEmm +_ZN5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_E14set_base_tableEPKNS_5TableE +_ZNK5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_E14get_base_tableEv +_ZNK5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE +_ZN5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE +_ZN5realm7CompareINS_5EqualENS_8RowIndexENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE +_ZN5realm16ConstantRowValueD1Ev +_ZN5realm16ConstantRowValueD0Ev +_ZNK5realm16ConstantRowValue5cloneEPNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEE +_ZN5realm16ConstantRowValue20apply_handover_patchERNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEERNS_5GroupE +_ZN5realm16ConstantRowValue14set_base_tableEPKNS_5TableE +_ZNK5realm16ConstantRowValue14get_base_tableEv +_ZN5realm16ConstantRowValue8evaluateEmRNS_9ValueBaseE +_ZN5realm16ConstantRowValueC2ERKS0_PNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE +_ZN5realm8BasicRowIKNS_5TableEE14generate_patchERKS3_RNSt3__110unique_ptrINS_20RowBaseHandoverPatchENS6_14default_deleteIS8_EEEE +_ZN5realm29ConstantRowValueHandoverPatchD1Ev +_ZN5realm29ConstantRowValueHandoverPatchD0Ev +_ZN5realm8BasicRowIKNS_5TableEE23apply_and_consume_patchERNSt3__110unique_ptrINS_20RowBaseHandoverPatchENS4_14default_deleteIS6_EEEERNS_5GroupE +_ZN5realm5ValueINS_8RowIndexEEC2ES1_ +_ZN5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_ED1Ev +_ZN5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_ED0Ev +_ZNK5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_E10find_firstEmm +_ZN5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_E14set_base_tableEPKNS_5TableE +_ZNK5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_E14get_base_tableEv +_ZNK5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE +_ZN5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE +_ZNK5realm8NotEqualclINS_8RowIndexEEEbRKT_S5_bb +_ZN5realm7CompareINS_8NotEqualENS_8RowIndexENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE _ZN5realm7CompareINS_5EqualEiNS_7SubexprES2_ED1Ev _ZN5realm7CompareINS_5EqualEiNS_7SubexprES2_ED0Ev _ZNK5realm7CompareINS_5EqualEiNS_7SubexprES2_E10find_firstEmm @@ -5158,19 +6601,6 @@ _ZN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_E20apply_handover_patchERNSt3__16 _ZN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE _ZN12_GLOBAL__N_146update_query_with_function_subquery_expressionEP9RLMSchemaP15RLMObjectSchemaRN5realm5QueryEP12NSExpression23NSPredicateOperatorTypeS8_ _ZN12_GLOBAL__N_152simplify_self_value_for_key_path_function_expressionEP12NSExpression -_ZNK5realm8SubQueryINS_4LinkEE5countEv -_ZN5realm13SubQueryCountD1Ev -_ZN5realm8SubQueryINS_4LinkEEC2ENS_7ColumnsIS1_EENS_5QueryE -_ZN5realm13SubQueryCountC2ENS_5QueryENS_7LinkMapE -_ZN5realm13SubQueryCountD0Ev -_ZNK5realm13SubQueryCount5cloneEPNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEE -_ZN5realm13SubQueryCount20apply_handover_patchERNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEERNS_5GroupE -_ZN5realm13SubQueryCount14set_base_tableEPKNS_5TableE -_ZNK5realm13SubQueryCount14get_base_tableEv -_ZN5realm13SubQueryCount8evaluateEmRNS_9ValueBaseE -_ZN5realm13SubQueryCountC2ERKS0_PNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm26SubQueryCountHandoverPatchD1Ev -_ZN5realm26SubQueryCountHandoverPatchD0Ev _ZN12_GLOBAL__N_115FalseExpressionD1Ev _ZN12_GLOBAL__N_115FalseExpressionD0Ev _ZNK12_GLOBAL__N_115FalseExpression10find_firstEmm @@ -5180,219 +6610,193 @@ _ZNK12_GLOBAL__N_115FalseExpression5cloneEPNSt3__16vectorINS1_10unique_ptrIN5rea _unnamed_cfstring_.16 _unnamed_cfstring_.18 _unnamed_cfstring_.26 +_unnamed_cfstring_.28 +_unnamed_cfstring_.30 _unnamed_cfstring_.32 -OBJC_SELECTOR_REFERENCES_.42 -OBJC_CLASSLIST_REFERENCES_$_.43 -OBJC_CLASSLIST_REFERENCES_$_.51 -OBJC_CLASSLIST_REFERENCES_$_.64 -_unnamed_cfstring_.70 -_unnamed_cfstring_.84 +OBJC_CLASSLIST_REFERENCES_$_.45 +OBJC_CLASSLIST_REFERENCES_$_.53 +OBJC_CLASSLIST_REFERENCES_$_.66 +_unnamed_cfstring_.72 +_unnamed_cfstring_.80 _unnamed_cfstring_.86 -_unnamed_cfstring_.92 -_unnamed_cfstring_.96 -_unnamed_cfstring_.104 _ZTVN12_GLOBAL__N_114TrueExpressionE _ZTSN12_GLOBAL__N_114TrueExpressionE _ZTIN12_GLOBAL__N_114TrueExpressionE -_unnamed_cfstring_.108 +OBJC_SELECTOR_REFERENCES_.108 _unnamed_cfstring_.110 -.str.111 -_unnamed_cfstring_.112 -_unnamed_cfstring_.118 -.str.123 +_unnamed_cfstring_.114 +_unnamed_cfstring_.120 _unnamed_cfstring_.124 _unnamed_cfstring_.128 -OBJC_METH_VAR_NAME_.129 -OBJC_SELECTOR_REFERENCES_.130 -OBJC_SELECTOR_REFERENCES_.132 -_unnamed_cfstring_.134 -OBJC_SELECTOR_REFERENCES_.136 -OBJC_SELECTOR_REFERENCES_.138 +.str.129 +_unnamed_cfstring_.130 +_unnamed_cfstring_.136 OBJC_SELECTOR_REFERENCES_.142 -OBJC_SELECTOR_REFERENCES_.144 -.str.145 -_unnamed_cfstring_.146 -OBJC_SELECTOR_REFERENCES_.148 -.str.149 -_unnamed_cfstring_.150 +_unnamed_cfstring_.148 +OBJC_SELECTOR_REFERENCES_.150 _unnamed_cfstring_.152 _unnamed_cfstring_.154 -_unnamed_cfstring_.156 -_unnamed_cfstring_.158 -_unnamed_cfstring_.160 -_unnamed_cfstring_.164 .str.165 -OBJC_SELECTOR_REFERENCES_.173 -.str.175 -_unnamed_cfstring_.177 +_unnamed_cfstring_.166 +_unnamed_cfstring_.173 +OBJC_METH_VAR_NAME_.174 +OBJC_SELECTOR_REFERENCES_.175 +.str.177 _unnamed_cfstring_.183 _unnamed_cfstring_.185 _unnamed_cfstring_.187 _unnamed_cfstring_.189 -.str.196 +_unnamed_cfstring_.191 +.str.197 +.str.198 +.str.199 +_unnamed_cfstring_.200 _unnamed_cfstring_.204 +_unnamed_cfstring_.206 +.str.207 _unnamed_cfstring_.208 +.str.209 _unnamed_cfstring_.210 -_unnamed_cfstring_.212 +.str.213 _unnamed_cfstring_.214 -_unnamed_cfstring_.216 -_unnamed_cfstring_.218 .str.219 _unnamed_cfstring_.220 -.str.223 -_unnamed_cfstring_.224 +_unnamed_cfstring_.222 _unnamed_cfstring_.226 -OBJC_METH_VAR_NAME_.227 -OBJC_SELECTOR_REFERENCES_.228 +_unnamed_cfstring_.228 __func__._ZN12_GLOBAL__N_140ValueOfTypeWithCollectionOperationHelperIxLNS_19CollectionOperation4TypeE0EE7convertERN5realm5QueryERKS1_ -.str.230 -.str.234 +.str.231 +OBJC_METH_VAR_NAME_.234 +OBJC_SELECTOR_REFERENCES_.235 .str.236 +.str.237 .str.238 -.str.240 -_unnamed_cfstring_.247 -_unnamed_cfstring_.249 -_unnamed_cfstring_.251 .str.252 -_unnamed_cfstring_.253 -.str.254 -_unnamed_cfstring_.255 -.str.256 -_unnamed_cfstring_.257 -.str.258 -_unnamed_cfstring_.259 -.str.260 -_unnamed_cfstring_.261 -.str.262 -_unnamed_cfstring_.263 -.str.264 -_unnamed_cfstring_.265 -.str.266 -_unnamed_cfstring_.267 -.str.268 -_unnamed_cfstring_.269 -_unnamed_cfstring_.271 -.str.272 -_unnamed_cfstring_.273 -.str.274 -_unnamed_cfstring_.275 -.str.276 -_unnamed_cfstring_.277 -.str.278 -_unnamed_cfstring_.279 -.str.280 -_unnamed_cfstring_.281 -.str.282 -_unnamed_cfstring_.283 -.str.284 -.str.285 -_unnamed_cfstring_.286 -.str.289 -_unnamed_cfstring_.290 -.str.291 -_unnamed_cfstring_.292 -.str.293 +.str.253 +_unnamed_cfstring_.254 +.str.255 +_unnamed_cfstring_.256 +.str.257 +_unnamed_cfstring_.258 +.str.259 +_unnamed_cfstring_.260 +_unnamed_cfstring_.262 +.str.263 +_unnamed_cfstring_.264 +.str.265 +_unnamed_cfstring_.266 +.str.267 +_unnamed_cfstring_.268 +.str.269 +_unnamed_cfstring_.270 +.str.288 +_unnamed_cfstring_.291 +_unnamed_cfstring_.293 .str.294 _unnamed_cfstring_.295 .str.296 _unnamed_cfstring_.297 -_unnamed_cfstring_.299 -OBJC_CLASSLIST_REFERENCES_$_.300 -.str.301 -_unnamed_cfstring_.302 -OBJC_METH_VAR_NAME_.303 -OBJC_SELECTOR_REFERENCES_.304 -OBJC_METH_VAR_NAME_.305 -OBJC_SELECTOR_REFERENCES_.306 -OBJC_METH_VAR_NAME_.307 -OBJC_SELECTOR_REFERENCES_.308 -OBJC_METH_VAR_NAME_.309 -OBJC_SELECTOR_REFERENCES_.310 -OBJC_CLASSLIST_REFERENCES_$_.321 +_unnamed_cfstring_.301 +.str.302 +_unnamed_cfstring_.303 +.str.304 +.str.305 +_unnamed_cfstring_.306 +.str.307 +_unnamed_cfstring_.308 +.str.309 +_unnamed_cfstring_.310 +OBJC_CLASSLIST_REFERENCES_$_.311 +.str.312 +_unnamed_cfstring_.313 +OBJC_METH_VAR_NAME_.316 +OBJC_SELECTOR_REFERENCES_.317 +OBJC_METH_VAR_NAME_.318 +OBJC_SELECTOR_REFERENCES_.319 +.str.320 +.str.321 .str.322 -_unnamed_cfstring_.323 -OBJC_CLASSLIST_REFERENCES_$_.324 -OBJC_CLASSLIST_REFERENCES_$_.327 -OBJC_CLASSLIST_REFERENCES_$_.328 -OBJC_METH_VAR_NAME_.329 -OBJC_SELECTOR_REFERENCES_.330 -OBJC_METH_VAR_NAME_.331 -OBJC_SELECTOR_REFERENCES_.332 -OBJC_METH_VAR_NAME_.333 -OBJC_SELECTOR_REFERENCES_.334 -OBJC_METH_VAR_NAME_.335 -OBJC_SELECTOR_REFERENCES_.336 -OBJC_METH_VAR_NAME_.337 -OBJC_SELECTOR_REFERENCES_.338 -.str.339 -_unnamed_cfstring_.340 -.str.341 -_unnamed_cfstring_.342 -.str.343 -_unnamed_cfstring_.344 -.str.345 -_unnamed_cfstring_.346 -OBJC_METH_VAR_NAME_.347 -OBJC_SELECTOR_REFERENCES_.348 -.str.349 -_unnamed_cfstring_.350 -OBJC_METH_VAR_NAME_.351 -OBJC_SELECTOR_REFERENCES_.352 -.str.353 -_unnamed_cfstring_.354 -OBJC_METH_VAR_NAME_.355 -OBJC_SELECTOR_REFERENCES_.356 -.str.357 -_unnamed_cfstring_.358 -.str.359 -_unnamed_cfstring_.360 -.str.361 -_unnamed_cfstring_.362 -OBJC_METH_VAR_NAME_.363 -OBJC_SELECTOR_REFERENCES_.364 -OBJC_METH_VAR_NAME_.365 -OBJC_SELECTOR_REFERENCES_.366 -OBJC_METH_VAR_NAME_.367 -OBJC_SELECTOR_REFERENCES_.368 -OBJC_METH_VAR_NAME_.369 -OBJC_SELECTOR_REFERENCES_.370 -OBJC_METH_VAR_NAME_.371 -OBJC_SELECTOR_REFERENCES_.372 -OBJC_METH_VAR_NAME_.378 -OBJC_SELECTOR_REFERENCES_.379 -.str.383 +.str.323 +_unnamed_cfstring_.324 +.str.325 +_unnamed_cfstring_.326 +OBJC_METH_VAR_NAME_.327 +OBJC_SELECTOR_REFERENCES_.328 +.str.329 +_unnamed_cfstring_.330 +OBJC_CLASSLIST_REFERENCES_$_.331 +.str.332 +_unnamed_cfstring_.333 +OBJC_CLASSLIST_REFERENCES_$_.334 +.str.335 +_unnamed_cfstring_.336 +OBJC_CLASSLIST_REFERENCES_$_.337 +OBJC_CLASSLIST_REFERENCES_$_.338 +OBJC_METH_VAR_NAME_.339 +OBJC_SELECTOR_REFERENCES_.340 +OBJC_METH_VAR_NAME_.341 +OBJC_SELECTOR_REFERENCES_.342 +OBJC_METH_VAR_NAME_.343 +OBJC_SELECTOR_REFERENCES_.344 +.str.346 +.str.348 +.str.350 +OBJC_METH_VAR_NAME_.352 +OBJC_SELECTOR_REFERENCES_.353 +OBJC_METH_VAR_NAME_.354 +OBJC_SELECTOR_REFERENCES_.355 +OBJC_METH_VAR_NAME_.356 +OBJC_SELECTOR_REFERENCES_.357 +OBJC_METH_VAR_NAME_.358 +OBJC_SELECTOR_REFERENCES_.359 +.str.360 +_unnamed_cfstring_.361 +.str.362 +_unnamed_cfstring_.363 +.str.364 +.str.365 +_unnamed_cfstring_.366 +.str.367 +_unnamed_cfstring_.368 +.str.371 +_unnamed_cfstring_.372 +OBJC_METH_VAR_NAME_.373 +OBJC_SELECTOR_REFERENCES_.374 +.str.375 +_unnamed_cfstring_.376 +OBJC_METH_VAR_NAME_.377 +OBJC_SELECTOR_REFERENCES_.378 +.str.379 +_unnamed_cfstring_.380 +_unnamed_cfstring_.382 +_unnamed_cfstring_.384 +OBJC_METH_VAR_NAME_.385 +OBJC_SELECTOR_REFERENCES_.386 +OBJC_METH_VAR_NAME_.387 +OBJC_SELECTOR_REFERENCES_.388 +OBJC_METH_VAR_NAME_.389 +OBJC_SELECTOR_REFERENCES_.390 +OBJC_METH_VAR_NAME_.391 +OBJC_SELECTOR_REFERENCES_.392 +OBJC_CLASSLIST_REFERENCES_$_.395 +OBJC_METH_VAR_NAME_.396 +OBJC_SELECTOR_REFERENCES_.397 +OBJC_METH_VAR_NAME_.400 +OBJC_SELECTOR_REFERENCES_.401 _ZTVN12_GLOBAL__N_115FalseExpressionE _ZTSN12_GLOBAL__N_115FalseExpressionE _ZTIN12_GLOBAL__N_115FalseExpressionE -.str.385 -_unnamed_cfstring_.386 -.str.387 -_unnamed_cfstring_.388 -.str.389 -_unnamed_cfstring_.390 -.str.391 -_unnamed_cfstring_.392 -.str.393 -_unnamed_cfstring_.394 +_unnamed_cfstring_.403 +.str.404 +_unnamed_cfstring_.405 +.str.406 +_unnamed_cfstring_.407 +.str.408 +_unnamed_cfstring_.409 +.str.410 +_unnamed_cfstring_.411 .memset_pattern -.memset_pattern.432 -__bit_reference -__make_ref -__align_it -__swap_allocator > -swap -__copy_unaligned >, false> -__copy_aligned >, false> -copy >, false> -__distance >, false, 0> > -distance >, false, 0> > -__construct_at_end >, false, 0> > -allocator -allocator -__push_back_slow_path -move -construct -__construct +.memset_pattern.448 from_twos_compl set_uint get_uint @@ -5402,55 +6806,11 @@ do_update_link set_without_updating_index set RLMValidatedPropertyForSort -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMQueryUtil.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMQueryUtil.mm FalseExpression -clone get_base_table set_base_table ~FalseExpression -~SubQuery -~SubQueryCount -core/include/realm/query_expression.hpp -accumulate, int, (lambda at core/include/realm/query_expression.hpp:2244:71)> -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/numeric -evaluate -apply_handover_patch -SubQueryCount -forward -make_subexpr -move > *&> -swap > *> -move > &> -move_if_noexcept > > -forward > > -forward > -construct >, std::__1::unique_ptr > > -__construct >, std::__1::unique_ptr > > -__construct_backward > *> -forward > > &> -__emplace_back_slow_path -forward -move -construct >, realm::SubQueryCountHandoverPatch *> -__construct >, realm::SubQueryCountHandoverPatch *> -emplace_back -forward -move -~SubQueryCountHandoverPatch -~QueryNodeHandoverPatch -QueryNodeHandoverPatch -SubQueryCountHandoverPatch -move &> -move &> -LinkMap -move -count -operator== -operator== -link_map -SubQuery -column -resolveWithSubquery add_numeric_constraint_to_query is_self_value_for_key_path_function_expression simplify_self_value_for_key_path_function_expression @@ -5464,20 +6824,15 @@ add_string_constraint_to_query add_numeric_constraint_to_query > add_numeric_constraint_to_query > add_numeric_constraint_to_query > -create -operator!= -create -operator== -create -operator>= -create -operator> -create -operator<= -only_numeric -create -operator< -add_numeric_constraint_to_query > +operator!= +core/include/realm/query_expression.hpp +operator== +operator>= +operator> +operator<= +operator< +add_numeric_constraint_to_query > +apply_handover_patch Compare operator() core/include/realm/query_conditions.hpp @@ -5495,7 +6850,26 @@ add_bool_constraint_to_query > do_add_constraint_to_query do_add_constraint_to_query add_constraint_to_query -BasicRow +operator() +make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > +RowIndex +evaluate +__emplace_back_slow_path +construct >, realm::ConstantRowValueHandoverPatch *> +__construct >, realm::ConstantRowValueHandoverPatch *> +emplace_back +RowBaseHandoverPatch +generate_patch +forward +move +~ConstantRowValueHandoverPatch +ConstantRowValueHandoverPatch +ConstantRowValue +~ConstantRowValue +forward &> +make_subexpr &> +operator== +make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > add_link_constraint_to_query add_binary_constraint_to_query convert @@ -5504,22 +6878,22 @@ add_string_constraint_to_query add_numeric_constraint_to_query, long long> add_numeric_constraint_to_query, float> add_numeric_constraint_to_query, double> -convert -value_of_type_for_query -create -create -create +convert +value_of_type_for_query +create +create +create operator>= -create +create operator> -create +create operator<= -forward -make_subexpr, realm::DateTime &> -unwrap -only_numeric -create -add_numeric_constraint_to_query, realm::DateTime> +forward +make_subexpr, realm::Timestamp &> +unwrap +only_numeric +create +add_numeric_constraint_to_query, realm::Timestamp> convert value_of_type_for_query create @@ -5530,11 +6904,62 @@ do_add_constraint_to_query<(anonymous namespace)::ColumnReference, id> is_nsnull add_constraint_to_query<(anonymous namespace)::ColumnReference, id> validate_property_value -process_or_group<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMQueryUtil.mm:935:40)> -between_datetime +process_or_group<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMQueryUtil.mm:986:40)> RLMDynamicCast value_from_constant_expression_or_value validate_and_extract_between_range +~SubQuery +~SubQueryCount +only_numeric +create +accumulate, int, (lambda at core/include/realm/query_expression.hpp:2452:71)> +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/numeric +SubQueryCount +forward +make_subexpr +move > *&> +swap > *> +move > &> +move_if_noexcept > > +forward > > +forward > +construct >, std::__1::unique_ptr > > +__construct >, std::__1::unique_ptr > > +__construct_backward > *> +forward > > &> +__emplace_back_slow_path +forward +move +construct >, realm::SubQueryCountHandoverPatch *> +__construct >, realm::SubQueryCountHandoverPatch *> +emplace_back +forward +move +~SubQueryCountHandoverPatch +~QueryNodeHandoverPatch +QueryNodeHandoverPatch +SubQueryCountHandoverPatch +move &> +move &> +LinkMap +move +column +operator== +operator== +link_map +SubQuery +resolve_with_subquery +ColumnReference +column_ignoring_links +link_target_object_schema +constexpr_move<(anonymous namespace)::ColumnReference &> +construct +__construct +last_link_column +end > > +begin > > +any_of, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMQueryUtil.mm:188:58)> +has_any_to_many_links add_between_constraint_to_query add_numeric_constraint_to_query > > operator!= @@ -5569,6 +6994,8 @@ forward &> make_subexpr, const realm::Value &> import export_null +export2 +export_RowIndex export2 export_BinaryData export2 @@ -5581,11 +7008,12 @@ export2 export_float export2 export_int +export2 +export_Timestamp export2 export_bool ~Subexpr2 ~NullableVector -forward make_subexpr, int &> unwrap only_numeric @@ -5683,7 +7111,6 @@ only_numeric create add_numeric_constraint_to_query add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation, id> -property validate_comparison update_query_with_collection_operator_expression update_query_with_value_expression @@ -5692,7 +7119,6 @@ not_equal string_compare equal string_compare -contains string_compare ends_with string_compare @@ -5707,7 +7133,7 @@ create2 create2 clone_subexpr create2 -add_numeric_constraint_to_query, realm::Columns > +add_numeric_constraint_to_query, realm::Columns > add_bool_constraint_to_query, realm::Columns > do_add_constraint_to_query<(anonymous namespace)::ColumnReference, (anonymous namespace)::ColumnReference> UnaryLinkCompare @@ -5720,13 +7146,11 @@ has_links add_binary_constraint_to_query ~Columns make_value_for_link +SimpleQuerySupport Columns forward &> make_subexpr, const realm::Columns &> -inspect_all, std::__1::allocator >, realm::DataType> -inspect_value, std::__1::allocator >, realm::DataType> -inspect_all, std::__1::allocator >, realm::DataType, realm::DataType> -terminate +~SimpleQuerySupport column resolve compare @@ -5766,9 +7190,6 @@ make_expression ~ConstantStringValue ConstantStringValue -~OptionalStorage -~Optional -value constexpr_move &> some > some, std::__1::basic_string > @@ -5811,38 +7232,38 @@ create only_numeric create add_numeric_constraint_to_query, realm::null> -evaluate_internal > -evaluate_internal > > -forward &> -make_subexpr, const realm::Columns &> -column -resolve -operator() -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create +make_value_for_link +forward &> +make_subexpr, const realm::Columns &> +column +resolve +operator() +make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > +create +make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > +create compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create +make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > +create compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create +make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > +create compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create +make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > +create compare -__unwrap_iter -__copy -copy -forward &> -make_subexpr, const realm::Value &> -dealloc -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > +__unwrap_iter +__copy +copy +forward &> +make_subexpr, const realm::Value &> +make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > unwrap -only_numeric -create -add_numeric_constraint_to_query, realm::null> +only_numeric +create +add_numeric_constraint_to_query, realm::null> +evaluate_internal > +evaluate_internal > > forward &> make_subexpr, const realm::Columns &> column @@ -5881,7 +7302,6 @@ add_numeric_constraint_to_query, realm::LinkCount> add_collection_operation_constraint_to_query<(anonymous namespace)::ColumnReference, (anonymous namespace)::CollectionOperation> ~CollectionOperation ~ColumnReference -ColumnReference move<(anonymous namespace)::ColumnReference &> CollectionOperation ~SubColumnAggregate @@ -5948,7 +7368,7 @@ make_subexpr add_numeric_constraint_to_query >, realm::Columns > add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Maximum, (anonymous namespace)::CollectionOperation, (anonymous namespace)::ColumnReference> -column_type +column column resolve value_of_type_for_query_with_collection_operation @@ -6027,6 +7447,9 @@ __copy copy forward &> make_subexpr, const realm::Value &> +set +dealloc +set min > min sort > @@ -6034,7 +7457,6 @@ sort sort forward > &> make_subexpr >, const realm::SubColumnAggregate > &> -column_index forward &> make_subexpr, const realm::SubColumns &> column @@ -6049,13 +7471,7 @@ OptionalStorage some some null_value -operator!= -find, realm::DataType> -operator== -only_unary_links make_value_for_link -MakeLinkVector -get_links ArrayIntNull operator() operator() @@ -6070,64 +7486,71 @@ forward resolve value_of_type_for_query_with_collection_operation ~LinkMap -BasicRowExpr -bind_ptr -map_links -LinkMapFunction CountLinks count_links LinkCount forward make_subexpr +property index +set +only_unary_links +__unwrap_iter +__copy +copy +forward &> +make_subexpr, const realm::Value &> +OptionalStorage +make_value_for_link +shared_ptr +map_links +LinkMapFunction +MakeLinkVector +get_links base_table -__construct_range_forward -__construct_at_end -forward > -__construct_range_forward -__construct_at_end -forward > +__construct_range_forward +__construct_at_end +forward > +__construct_range_forward +__construct_at_end +forward > forward &> make_subexpr, const realm::Columns &> -move -swap -__construct_backward -forward &> -__push_back_slow_path -move -forward -construct -__construct -move -swap -__construct_backward -forward &> -__push_back_slow_path -move -forward -construct -__construct +core/include/realm/column_backlink.hpp +move +swap +__construct_backward +forward &> +__push_back_slow_path +move +forward +construct +__construct +move +swap +__construct_backward +forward &> +__push_back_slow_path +forward +construct +__construct +is_link_type get_real_column_type -operator== -operator!= -__to_raw_pointer -__destroy -destroy -__to_raw_pointer -__destroy -destroy -forward -forward -move -swap -__construct_backward -forward &> +__to_raw_pointer +__destroy +destroy +__to_raw_pointer +__destroy +destroy +forward +forward +backlink __push_back_slow_path construct __construct link -operator== -operator!= +operator== +operator!= table_for_query resolve link_column @@ -6148,8 +7571,10 @@ Subexpr ValueBase forward &> make_subexpr, const realm::Value &> +set type_punning get_null_float +set type_punning get_null_float replace @@ -6162,21 +7587,43 @@ forward, std::__1::unique_ptr >, std::__1::unique_ptr > > add_numeric_constraint_to_query > add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation, (anonymous namespace)::ColumnReference> +forward +construct +__construct +__construct_range_forward +__construct_at_end +forward > +move > &> +move +swap +move +move_if_noexcept +forward +construct +__construct +__construct_backward +forward &> +__push_back_slow_path +forward +construct +__construct +forward column_reference_from_key_path -core/include/realm/column_fwd.hpp name_for_type -~BadOptionalAccess -BadOptionalAccess type_for_name move &> forward<(anonymous namespace)::ColumnReference> +move &> +__to_raw_pointer +__destroy +destroy operator=<(anonymous namespace)::ColumnReference, void> get_collection_operation_name_from_key_path collection_operation_from_key_path key_path_contains_collection_operator update_query_with_column_expression RLMPredicateException -process_or_group<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMQueryUtil.mm:1085:61)> +process_or_group<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMQueryUtil.mm:1136:61)> forward move Expression @@ -6202,15 +7649,12 @@ RLMValidatedProperty -[RLMRealm isEmpty] -[RLMRealm verifyThread] -[RLMRealm inWriteTransaction] --[RLMRealm path] -[RLMRealm group] --[RLMRealm isReadOnly] -[RLMRealm autorefresh] -[RLMRealm setAutorefresh:] +[RLMRealm writeableTemporaryPathForFile:] +[RLMRealm defaultRealm] -+[RLMRealm realmWithPath:] -+[RLMRealm realmWithPath:key:readOnly:inMemory:dynamic:schema:error:] ++[RLMRealm realmWithURL:] +[RLMRealm realmWithSharedRealm:schema:] _ZL25RLMRealmSetSchemaAndAlignP8RLMRealmP9RLMSchema _ZL14RLMAutoreleaseP11objc_object @@ -6220,7 +7664,6 @@ _ZN5realm4util4File16PermissionDeniedD1Ev +[RLMRealm resetRealmState] -[RLMRealm verifyNotificationsAreSupported] -[RLMRealm addNotificationBlock:] --[RLMRealm removeNotification:] -[RLMRealm sendNotifications:] -[RLMRealm configuration] -[RLMRealm beginWriteTransaction] @@ -6245,18 +7688,17 @@ _ZN5realm4util4File16PermissionDeniedD1Ev -[RLMRealm objects:where:args:] -[RLMRealm objects:withPredicate:] -[RLMRealm objectWithClassName:forPrimaryKey:] -+[RLMRealm schemaVersionAtPath:error:] -+[RLMRealm schemaVersionAtPath:encryptionKey:error:] ++[RLMRealm schemaVersionAtURL:encryptionKey:error:] +[RLMRealm migrateRealm:] -[RLMRealm createObject:withValue:] --[RLMRealm writeCopyToPath:key:error:] --[RLMRealm writeCopyToPath:error:] --[RLMRealm writeCopyToPath:encryptionKey:error:] +-[RLMRealm writeCopyToURL:encryptionKey:error:] -[RLMRealm registerEnumerator:] -[RLMRealm unregisterEnumerator:] -[RLMRealm detachAllEnumerators] -[RLMRealm schema] -[RLMRealm setSchema:] +-[RLMRealm notificationHandlers] +-[RLMRealm setNotificationHandlers:] -[RLMRealm dynamic] -[RLMRealm .cxx_destruct] -[RLMRealm .cxx_construct] @@ -6284,88 +7726,86 @@ _ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1N OBJC_IVAR_$_RLMRealmNotificationToken._realm OBJC_IVAR_$_RLMRealmNotificationToken._block l_OBJC_METACLASS_RO_$_RLMRealmNotificationToken -OBJC_CLASS_NAME_.11 -OBJC_METH_VAR_TYPE_.15 -l_OBJC_$_INSTANCE_METHODS_RLMRealmNotificationToken +OBJC_CLASS_NAME_.15 OBJC_METH_VAR_TYPE_.23 OBJC_METH_VAR_TYPE_.25 +l_OBJC_$_INSTANCE_METHODS_RLMRealmNotificationToken +OBJC_METH_VAR_TYPE_.29 l_OBJC_$_INSTANCE_VARIABLES_RLMRealmNotificationToken -OBJC_PROP_NAME_ATTR_.26 -OBJC_PROP_NAME_ATTR_.27 -OBJC_PROP_NAME_ATTR_.28 +OBJC_PROP_NAME_ATTR_.30 +OBJC_PROP_NAME_ATTR_.31 +OBJC_PROP_NAME_ATTR_.32 l_OBJC_$_PROP_LIST_RLMRealmNotificationToken l_OBJC_CLASS_RO_$_RLMRealmNotificationToken +_unnamed_cfstring_.36 _ZZ22+[RLMRealm initialize]E11initialized -OBJC_CLASSLIST_REFERENCES_$_.40 -OBJC_SELECTOR_REFERENCES_.44 OBJC_IVAR_$_RLMRealm._dynamic -_unnamed_cfstring_.82 _ZZ41+[RLMRealm realmWithConfiguration:error:]E8initLock _ZGVZ41+[RLMRealm realmWithConfiguration:error:]E8initLock -OBJC_CLASSLIST_REFERENCES_$_.91 -OBJC_SELECTOR_REFERENCES_.93 -OBJC_CLASSLIST_REFERENCES_$_.105 -_unnamed_cfstring_.119 +OBJC_CLASSLIST_REFERENCES_$_.81 +OBJC_SELECTOR_REFERENCES_.87 +OBJC_CLASSLIST_REFERENCES_$_.99 +_unnamed_cfstring_.115 OBJC_IVAR_$_RLMRealm._notificationHandlers -OBJC_CLASSLIST_REFERENCES_$_.126 -OBJC_SELECTOR_REFERENCES_.134 +OBJC_CLASSLIST_REFERENCES_$_.118 +OBJC_SELECTOR_REFERENCES_.133 OBJC_IVAR_$_RLMRealm._schema -.str.144 -_unnamed_cfstring_.145 -OBJC_CLASSLIST_SUP_REFS_$_.154 -OBJC_CLASSLIST_REFERENCES_$_.155 -OBJC_SELECTOR_REFERENCES_.159 -.str.160 -_unnamed_cfstring_.161 -.str.164 -_unnamed_cfstring_.165 -OBJC_SELECTOR_REFERENCES_.170 -OBJC_SELECTOR_REFERENCES_.172 -_unnamed_cfstring_.176 -OBJC_CLASS_NAME_.178 -OBJC_SELECTOR_REFERENCES_.180 -OBJC_CLASSLIST_REFERENCES_$_.181 -OBJC_METH_VAR_NAME_.187 -OBJC_SELECTOR_REFERENCES_.188 +OBJC_SELECTOR_REFERENCES_.149 +_unnamed_cfstring_.155 +OBJC_CLASSLIST_SUP_REFS_$_.156 +OBJC_CLASSLIST_REFERENCES_$_.157 +OBJC_SELECTOR_REFERENCES_.174 +OBJC_SELECTOR_REFERENCES_.176 +_unnamed_cfstring_.178 +OBJC_CLASS_NAME_.180 +OBJC_SELECTOR_REFERENCES_.182 +OBJC_CLASSLIST_REFERENCES_$_.183 +OBJC_CLASSLIST_REFERENCES_$_.188 OBJC_SELECTOR_REFERENCES_.190 -OBJC_CLASSLIST_REFERENCES_$_.193 -_unnamed_cfstring_.195 -OBJC_CLASSLIST_REFERENCES_$_.196 -OBJC_SELECTOR_REFERENCES_.200 +OBJC_SELECTOR_REFERENCES_.192 +OBJC_SELECTOR_REFERENCES_.194 +OBJC_CLASSLIST_REFERENCES_$_.195 +OBJC_CLASSLIST_REFERENCES_$_.198 +OBJC_SELECTOR_REFERENCES_.202 OBJC_SELECTOR_REFERENCES_.206 +OBJC_SELECTOR_REFERENCES_.208 OBJC_IVAR_$_RLMRealm._collectionEnumerators -OBJC_SELECTOR_REFERENCES_.210 OBJC_CLASS_NAME_.211 +OBJC_METH_VAR_NAME_.212 OBJC_METH_VAR_TYPE_.213 OBJC_METH_VAR_TYPE_.216 OBJC_METH_VAR_NAME_.217 OBJC_METH_VAR_TYPE_.220 OBJC_METH_VAR_TYPE_.222 -OBJC_METH_VAR_TYPE_.223 -OBJC_METH_VAR_TYPE_.224 -OBJC_METH_VAR_NAME_.225 -OBJC_METH_VAR_TYPE_.228 +OBJC_METH_VAR_TYPE_.225 l_OBJC_$_CLASS_METHODS_RLMRealm l_OBJC_METACLASS_RO_$_RLMRealm -OBJC_CLASS_NAME_.230 -OBJC_METH_VAR_NAME_.233 -OBJC_METH_VAR_TYPE_.234 -OBJC_METH_VAR_NAME_.237 -OBJC_METH_VAR_TYPE_.238 -OBJC_METH_VAR_TYPE_.240 +OBJC_CLASS_NAME_.227 +OBJC_METH_VAR_TYPE_.230 +OBJC_METH_VAR_TYPE_.233 +OBJC_METH_VAR_TYPE_.235 +OBJC_METH_VAR_NAME_.236 +OBJC_METH_VAR_NAME_.238 +OBJC_METH_VAR_TYPE_.239 +OBJC_METH_VAR_NAME_.240 +OBJC_METH_VAR_TYPE_.241 OBJC_METH_VAR_NAME_.243 -OBJC_METH_VAR_TYPE_.244 -OBJC_METH_VAR_TYPE_.246 +OBJC_METH_VAR_NAME_.245 +OBJC_METH_VAR_NAME_.246 OBJC_METH_VAR_NAME_.247 -OBJC_METH_VAR_TYPE_.262 -OBJC_METH_VAR_NAME_.266 +OBJC_METH_VAR_NAME_.248 +OBJC_METH_VAR_NAME_.249 +OBJC_METH_VAR_TYPE_.251 +OBJC_METH_VAR_TYPE_.252 +OBJC_METH_VAR_NAME_.253 +OBJC_METH_VAR_NAME_.254 +OBJC_METH_VAR_NAME_.258 l_OBJC_$_INSTANCE_METHODS_RLMRealm -OBJC_METH_VAR_TYPE_.267 -OBJC_METH_VAR_NAME_.268 -OBJC_METH_VAR_TYPE_.269 -OBJC_METH_VAR_NAME_.270 -OBJC_METH_VAR_TYPE_.274 +OBJC_METH_VAR_TYPE_.261 +OBJC_METH_VAR_NAME_.264 l_OBJC_$_INSTANCE_VARIABLES_RLMRealm +OBJC_PROP_NAME_ATTR_.273 +OBJC_PROP_NAME_ATTR_.274 OBJC_PROP_NAME_ATTR_.275 OBJC_PROP_NAME_ATTR_.276 OBJC_PROP_NAME_ATTR_.277 @@ -6375,27 +7815,26 @@ OBJC_PROP_NAME_ATTR_.280 OBJC_PROP_NAME_ATTR_.281 OBJC_PROP_NAME_ATTR_.282 OBJC_PROP_NAME_ATTR_.283 -OBJC_PROP_NAME_ATTR_.284 -OBJC_PROP_NAME_ATTR_.285 l_OBJC_$_PROP_LIST_RLMRealm l_OBJC_CLASS_RO_$_RLMRealm _ZZL31shouldForciblyDisableEncryptionvE17disableEncryption _ZGVZL31shouldForciblyDisableEncryptionvE17disableEncryption -OBJC_METH_VAR_NAME_.293 -OBJC_SELECTOR_REFERENCES_.294 -OBJC_METH_VAR_NAME_.295 -OBJC_SELECTOR_REFERENCES_.296 -OBJC_METH_VAR_NAME_.297 -OBJC_SELECTOR_REFERENCES_.298 -OBJC_METH_VAR_NAME_.299 -OBJC_SELECTOR_REFERENCES_.300 -OBJC_SELECTOR_REFERENCES_.301 -.str.302 -_unnamed_cfstring_.303 +.str.286 +OBJC_CLASSLIST_REFERENCES_$_.287 +OBJC_METH_VAR_NAME_.288 +OBJC_SELECTOR_REFERENCES_.289 +OBJC_SELECTOR_REFERENCES_.291 +OBJC_SELECTOR_REFERENCES_.293 +OBJC_SELECTOR_REFERENCES_.295 +OBJC_SELECTOR_REFERENCES_.297 _ZTVNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE _ZTSNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE _ZTINSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE -OBJC_CLASSLIST_REFERENCES_$_.337 +OBJC_SELECTOR_REFERENCES_.330 +OBJC_METH_VAR_NAME_.332 +OBJC_SELECTOR_REFERENCES_.333 +OBJC_METH_VAR_NAME_.334 +OBJC_SELECTOR_REFERENCES_.335 _ZTSZ41+[RLMRealm realmWithConfiguration:error:]E3$_0 _ZTIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0 _ZTVNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE @@ -6403,111 +7842,109 @@ _ZTSNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1 _ZTINSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE _ZTSZ41+[RLMRealm realmWithConfiguration:error:]E3$_1 _ZTIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1 -RLMDynamicCast forward > -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &> -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &, std::__1::shared_ptr, std::__1::shared_ptr > -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &, std::__1::shared_ptr, std::__1::shared_ptr > -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &> -forward &> -forward_as_tuple &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &&> -forward &&> -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &> -forward -forward_as_tuple -allocator, void (std::__1::shared_ptr, std::__1::shared_ptr)> > -forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > > -forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> *> -move, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&, 0> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37), false> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -operator=<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm +__invoke<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &, std::__1::shared_ptr, std::__1::shared_ptr > +__call<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &, std::__1::shared_ptr, std::__1::shared_ptr > +get<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> &> +__libcpp_compressed_pair_imp &, 0, 0> +move &> &> +__compressed_pair &> +__tuple_leaf &, void> +__tuple_impl<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> &, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> &> +forward &> +forward_as_tuple &> +get<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> &&> +forward &&> +get<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &> +__libcpp_compressed_pair_imp &&, 0, 0> +move &&> &> +move &> +__compressed_pair &&> +move &> +__tuple_leaf, void> +__tuple_impl<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> > +tuple , false> +forward > +forward_as_tuple > +__tuple_leaf +__tuple_impl<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &> +forward +forward_as_tuple +allocator, void (std::__1::shared_ptr, std::__1::shared_ptr)> > +forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > > +forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> *> +move, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > &> +allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> +get<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &&> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &&> +__libcpp_compressed_pair_imp<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &&, 0> +move &> +__compressed_pair<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &&> +__tuple_leaf<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37), void> +__tuple_impl<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &&, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> +tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37), false> +forward_as_tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> +move<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37) &> +__not_null<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> +function<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> +operator=<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:320:37)> move, std::__1::shared_ptr)> *&> swap, std::__1::shared_ptr)> *> forward > -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &> -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &, std::__1::shared_ptr, std::__1::shared_ptr > -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &, std::__1::shared_ptr, std::__1::shared_ptr > -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &> -forward &> -forward_as_tuple &> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &> +__invoke<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &, std::__1::shared_ptr, std::__1::shared_ptr > +__call<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &, std::__1::shared_ptr, std::__1::shared_ptr > +get<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> &> +__libcpp_compressed_pair_imp &, 0, 0> +move &> &> +__compressed_pair &> +__tuple_leaf &, void> +__tuple_impl<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> &, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> &> +forward &> +forward_as_tuple &> _ZZ41+[RLMRealm realmWithConfiguration:error:]EN3$_0C2ERKS_ _ZZ41+[RLMRealm realmWithConfiguration:error:]EN3$_0C1ERKS_ -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &&> -forward &&> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &> -forward -forward_as_tuple -allocator, void (std::__1::shared_ptr, std::__1::shared_ptr)> > -forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > > -forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> *> -move, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&, 0> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37), false> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> +get<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &> +get<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> &&> +forward &&> +__libcpp_compressed_pair_imp &&, 0, 0> +move &&> &> +move &> +__compressed_pair &&> +move &> +__tuple_leaf, void> +__tuple_impl<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> > +tuple , false> +forward > +forward_as_tuple > +__tuple_leaf +__tuple_impl<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &> +forward +forward_as_tuple +allocator, void (std::__1::shared_ptr, std::__1::shared_ptr)> > +forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > > +forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> *> +move, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > &> +allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> +get<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &&> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &&> +__libcpp_compressed_pair_imp<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &&, 0> +move &> +__compressed_pair<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &&> +__tuple_leaf<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37), void> +__tuple_impl<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &&, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> +tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37), false> +forward_as_tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> +move<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37) &> +__not_null<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> +function<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> _ZZ41+[RLMRealm realmWithConfiguration:error:]EN3$_0C2EOS_ _ZZ41+[RLMRealm realmWithConfiguration:error:]EN3$_0C1EOS_ -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -operator=<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -CheckReadWrite +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> +operator=<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.mm:302:37)> is_in_read_transaction ~PermissionDenied ~AccessError @@ -6524,20 +7961,19 @@ shouldForciblyDisableEncryption -[RLMRealm .cxx_construct] -[RLMRealm .cxx_destruct] -[RLMRealm dynamic] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm_Private.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm_Private.h +-[RLMRealm setNotificationHandlers:] +-[RLMRealm notificationHandlers] -[RLMRealm setSchema:] -[RLMRealm schema] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealm.h -[RLMRealm detachAllEnumerators] -[RLMRealm unregisterEnumerator:] -[RLMRealm registerEnumerator:] --[RLMRealm writeCopyToPath:encryptionKey:error:] --[RLMRealm writeCopyToPath:error:] --[RLMRealm writeCopyToPath:key:error:] +-[RLMRealm writeCopyToURL:encryptionKey:error:] -[RLMRealm createObject:withValue:] +[RLMRealm migrateRealm:] -+[RLMRealm schemaVersionAtPath:encryptionKey:error:] -+[RLMRealm schemaVersionAtPath:error:] ++[RLMRealm schemaVersionAtURL:encryptionKey:error:] -[RLMRealm objectWithClassName:forPrimaryKey:] -[RLMRealm objects:withPredicate:] -[RLMRealm objects:where:args:] @@ -6562,7 +7998,6 @@ shouldForciblyDisableEncryption -[RLMRealm beginWriteTransaction] -[RLMRealm configuration] -[RLMRealm sendNotifications:] --[RLMRealm removeNotification:] -[RLMRealm addNotificationBlock:] -[RLMRealm verifyNotificationsAreSupported] +[RLMRealm resetRealmState] @@ -6570,15 +8005,12 @@ shouldForciblyDisableEncryption +[RLMRealm openSharedRealm:error:] RLMRealmTranslateException +[RLMRealm realmWithSharedRealm:schema:] -+[RLMRealm realmWithPath:key:readOnly:inMemory:dynamic:schema:error:] -+[RLMRealm realmWithPath:] ++[RLMRealm realmWithURL:] +[RLMRealm defaultRealm] +[RLMRealm writeableTemporaryPathForFile:] -[RLMRealm setAutorefresh:] -[RLMRealm autorefresh] --[RLMRealm isReadOnly] -[RLMRealm group] --[RLMRealm path] -[RLMRealm inWriteTransaction] -[RLMRealm verifyThread] -[RLMRealm isEmpty] @@ -6593,19 +8025,7 @@ RLMRealmValidatedEncryptionKey -[RLMRealmNotificationToken dealloc] -[RLMRealmNotificationToken stop] RLMDisableSyncToDisk -_ZNK12_GLOBAL__N_130PredicateExpressionTransformer5visitEP11NSPredicate -_ZNK12_GLOBAL__N_130PredicateExpressionTransformer5visitEP12NSExpression -OBJC_METH_VAR_NAME_.1 -OBJC_SELECTOR_REFERENCES_.2 -OBJC_CLASSLIST_REFERENCES_$_.3 -OBJC_METH_VAR_NAME_.4 -OBJC_SELECTOR_REFERENCES_.5 -OBJC_SELECTOR_REFERENCES_.7 -OBJC_CLASSLIST_REFERENCES_$_.18 -visit -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMPredicateUtil.mm -PredicateExpressionTransformer -transformPredicate +_ZL35defaultDirectoryForBundleIdentifierP8NSString -[RLMRealmConfiguration config] +[RLMRealmConfiguration defaultConfiguration] +[RLMRealmConfiguration setDefaultConfiguration:] @@ -6614,8 +8034,8 @@ transformPredicate -[RLMRealmConfiguration init] -[RLMRealmConfiguration copyWithZone:] -[RLMRealmConfiguration description] --[RLMRealmConfiguration path] --[RLMRealmConfiguration setPath:] +-[RLMRealmConfiguration fileURL] +-[RLMRealmConfiguration setFileURL:] _ZL22RLMNSStringToStdStringRNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEP8NSString -[RLMRealmConfiguration inMemoryIdentifier] -[RLMRealmConfiguration setInMemoryIdentifier:] @@ -6625,6 +8045,8 @@ _ZL22RLMNSStringToStdStringRNSt3__112basic_stringIcNS_11char_traitsIcEENS_9alloc -[RLMRealmConfiguration setReadOnly:] -[RLMRealmConfiguration schemaVersion] -[RLMRealmConfiguration setSchemaVersion:] +-[RLMRealmConfiguration deleteRealmIfMigrationNeeded] +-[RLMRealmConfiguration setDeleteRealmIfMigrationNeeded:] -[RLMRealmConfiguration objectClasses] -[RLMRealmConfiguration setObjectClasses:] -[RLMRealmConfiguration setDynamic:] @@ -6646,49 +8068,34 @@ _unnamed_cfstring_.13 _unnamed_cfstring_.15 _unnamed_cfstring_.17 _unnamed_cfstring_.19 -_ZL33c_RLMRealmConfigurationProperties _unnamed_cfstring_.21 +_ZL33c_RLMRealmConfigurationProperties +_unnamed_cfstring_.23 +_ZZ19RLMRealmPathForFileE9directory +_ZGVZ19RLMRealmPathForFileE9directory OBJC_IVAR_$_RLMRealmConfiguration._config _unnamed_cfstring_.29 -_ZZ29-[RLMRealmConfiguration init]E16defaultRealmPath -_ZGVZ29-[RLMRealmConfiguration init]E16defaultRealmPath +_ZZ29-[RLMRealmConfiguration init]E15defaultRealmURL +_ZGVZ29-[RLMRealmConfiguration init]E15defaultRealmURL OBJC_IVAR_$_RLMRealmConfiguration._dynamic OBJC_IVAR_$_RLMRealmConfiguration._migrationBlock OBJC_IVAR_$_RLMRealmConfiguration._customSchema -OBJC_CLASSLIST_REFERENCES_$_.42 -_unnamed_cfstring_.44 -_unnamed_cfstring_.54 -_unnamed_cfstring_.58 -_unnamed_cfstring_.62 -OBJC_CLASSLIST_REFERENCES_$_.65 -OBJC_CLASSLIST_REFERENCES_$_.76 -OBJC_CLASSLIST_REFERENCES_$_.89 -OBJC_METH_VAR_TYPE_.98 -OBJC_METH_VAR_TYPE_.100 +OBJC_CLASSLIST_REFERENCES_$_.68 +_unnamed_cfstring_.76 +_unnamed_cfstring_.91 +OBJC_CLASSLIST_REFERENCES_$_.94 +OBJC_METH_VAR_TYPE_.103 l_OBJC_$_CLASS_METHODS_RLMRealmConfiguration -OBJC_METH_VAR_TYPE_.102 -OBJC_CLASS_NAME_.103 l_OBJC_CLASS_PROTOCOLS_$_RLMRealmConfiguration l_OBJC_METACLASS_RO_$_RLMRealmConfiguration -OBJC_METH_VAR_TYPE_.106 -OBJC_METH_VAR_TYPE_.115 -OBJC_METH_VAR_TYPE_.117 +OBJC_CLASS_NAME_.109 OBJC_METH_VAR_TYPE_.118 -OBJC_METH_VAR_NAME_.120 -OBJC_METH_VAR_TYPE_.122 -OBJC_METH_VAR_TYPE_.124 +OBJC_METH_VAR_TYPE_.120 +OBJC_METH_VAR_TYPE_.129 l_OBJC_$_INSTANCE_METHODS_RLMRealmConfiguration l_OBJC_$_INSTANCE_VARIABLES_RLMRealmConfiguration -OBJC_PROP_NAME_ATTR_.144 -OBJC_PROP_NAME_ATTR_.145 -OBJC_PROP_NAME_ATTR_.146 -OBJC_PROP_NAME_ATTR_.147 -OBJC_PROP_NAME_ATTR_.148 -OBJC_PROP_NAME_ATTR_.149 -OBJC_PROP_NAME_ATTR_.150 -OBJC_PROP_NAME_ATTR_.151 OBJC_PROP_NAME_ATTR_.152 -OBJC_PROP_NAME_ATTR_.154 +OBJC_PROP_NAME_ATTR_.153 OBJC_PROP_NAME_ATTR_.155 OBJC_PROP_NAME_ATTR_.156 OBJC_PROP_NAME_ATTR_.157 @@ -6697,10 +8104,12 @@ OBJC_PROP_NAME_ATTR_.159 OBJC_PROP_NAME_ATTR_.160 OBJC_PROP_NAME_ATTR_.161 OBJC_PROP_NAME_ATTR_.162 +OBJC_PROP_NAME_ATTR_.168 +OBJC_PROP_NAME_ATTR_.169 +OBJC_PROP_NAME_ATTR_.170 +OBJC_PROP_NAME_ATTR_.171 l_OBJC_$_PROP_LIST_RLMRealmConfiguration l_OBJC_CLASS_RO_$_RLMRealmConfiguration -OBJC_SELECTOR_REFERENCES_.164 -OBJC_SELECTOR_REFERENCES_.166 __destroy destroy forward @@ -6715,14 +8124,15 @@ distance assign __to_raw_pointer RLMNSStringToStdString -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealmConfiguration.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealmConfiguration.mm +defaultDirectoryForBundleIdentifier -[RLMRealmConfiguration .cxx_construct] -[RLMRealmConfiguration .cxx_destruct] -[RLMRealmConfiguration customSchema] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealmConfiguration_Private.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealmConfiguration_Private.h -[RLMRealmConfiguration dynamic] -[RLMRealmConfiguration setMigrationBlock:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealmConfiguration.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealmConfiguration.h -[RLMRealmConfiguration migrationBlock] -[RLMRealmConfiguration disableFormatUpgrade] -[RLMRealmConfiguration setDisableFormatUpgrade:] @@ -6732,6 +8142,8 @@ RLMNSStringToStdString -[RLMRealmConfiguration setDynamic:] -[RLMRealmConfiguration setObjectClasses:] -[RLMRealmConfiguration objectClasses] +-[RLMRealmConfiguration setDeleteRealmIfMigrationNeeded:] +-[RLMRealmConfiguration deleteRealmIfMigrationNeeded] -[RLMRealmConfiguration setSchemaVersion:] -[RLMRealmConfiguration schemaVersion] -[RLMRealmConfiguration setReadOnly:] @@ -6740,8 +8152,8 @@ RLMNSStringToStdString -[RLMRealmConfiguration encryptionKey] -[RLMRealmConfiguration setInMemoryIdentifier:] -[RLMRealmConfiguration inMemoryIdentifier] --[RLMRealmConfiguration setPath:] --[RLMRealmConfiguration path] +-[RLMRealmConfiguration setFileURL:] +-[RLMRealmConfiguration fileURL] -[RLMRealmConfiguration description] -[RLMRealmConfiguration copyWithZone:] -[RLMRealmConfiguration init] @@ -6770,11 +8182,11 @@ _ZTVN12_GLOBAL__N_121RLMNotificationHelperE _ZTSN12_GLOBAL__N_121RLMNotificationHelperE _ZTIN12_GLOBAL__N_121RLMNotificationHelperE OBJC_CLASSLIST_REFERENCES_$_.21 -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealmUtil.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMRealmUtil.mm forward move -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__tree -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/map +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__tree +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/map __destroy destroy __tree_right_rotate *> @@ -6785,7 +8197,6 @@ move construct __construct -forward &> construct, const std::__1::basic_string &> __construct, const std::__1::basic_string &> forward, NSMapTable *>, void *> > > > @@ -6810,6 +8221,7 @@ __tree_next *> __map_iterator __tree_iterator __begin_node +__invoke operator void (*)(NSException *) addressof *> > __end_node @@ -6827,19 +8239,11 @@ RLMGetThreadLocalCachedRealmForPath RLMGetAnyCachedRealmForPath RLMCacheRealm __cxx_global_var_init.5 --[RLMCancellationToken initWithToken:] --[RLMCancellationToken stop] --[RLMCancellationToken .cxx_destruct] --[RLMCancellationToken .cxx_construct] --[RLMFastEnumerator initWithCollection:objectSchema:] --[RLMFastEnumerator dealloc] --[RLMFastEnumerator detach] --[RLMFastEnumerator countByEnumeratingWithState:count:] --[RLMFastEnumerator .cxx_destruct] --[RLMFastEnumerator .cxx_construct] -[RLMResults initPrivate] +[RLMResults resultsWithObjectSchema:results:] _ZN5realm7ResultsaSEOS0_ ++[RLMResults emptyDetachedResults] +-[RLMResults isInvalidated] -[RLMResults count] -[RLMResults objectClassName] -[RLMResults countByEnumeratingWithState:objects:count:] @@ -6879,230 +8283,104 @@ _ZL24assertKeyPathIsNotNestedP8NSString -[RLMResults indexInSource:] -[RLMResults tableView] -[RLMResults addNotificationBlock:] +-[RLMResults isAttached] -[RLMResults realm] -[RLMResults objectSchema] -[RLMResults setObjectSchema:] -[RLMResults .cxx_destruct] -[RLMResults .cxx_construct] _ZL10throwErrorP8NSString -___ZZ36-[RLMResults deleteObjectsFromRealm]ENK4$_13clEv_block_invoke -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEED1Ev -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEED0Ev -_ZNKSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE7__cloneEv -_ZNKSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE7__cloneEPNS0_6__baseIS6_EE -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE7destroyEv -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE18destroy_deallocateEv -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEEclEOS5_ -_ZNKSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE6targetERKSt9type_info -_ZNKSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE11target_typeEv +___ZZ36-[RLMResults deleteObjectsFromRealm]ENK4$_14clEv_block_invoke l_OBJC_METACLASS_RO_$_RLMNotificationToken l_OBJC_CLASS_RO_$_RLMNotificationToken -OBJC_IVAR_$_RLMCancellationToken._token -OBJC_CLASS_NAME_.8 -l_OBJC_METACLASS_RO_$_RLMCancellationToken -OBJC_METH_VAR_TYPE_.11 -OBJC_METH_VAR_TYPE_.14 -l_OBJC_$_INSTANCE_METHODS_RLMCancellationToken -l_OBJC_$_INSTANCE_VARIABLES_RLMCancellationToken -l_OBJC_CLASS_RO_$_RLMCancellationToken -OBJC_CLASSLIST_SUP_REFS_$_.17 -OBJC_IVAR_$_RLMFastEnumerator._realm -OBJC_IVAR_$_RLMFastEnumerator._objectSchema -OBJC_IVAR_$_RLMFastEnumerator._tableView -OBJC_IVAR_$_RLMFastEnumerator._collection -OBJC_IVAR_$_RLMFastEnumerator._strongBuffer -OBJC_CLASS_NAME_.43 -l_OBJC_METACLASS_RO_$_RLMFastEnumerator -OBJC_CLASS_NAME_.44 -l_OBJC_$_INSTANCE_METHODS_RLMFastEnumerator -OBJC_METH_VAR_TYPE_.57 -OBJC_METH_VAR_TYPE_.59 -l_OBJC_$_INSTANCE_VARIABLES_RLMFastEnumerator -l_OBJC_CLASS_RO_$_RLMFastEnumerator -OBJC_CLASSLIST_SUP_REFS_$_.60 -OBJC_IVAR_$_RLMResults._results -OBJC_IVAR_$_RLMResults._realm -OBJC_IVAR_$_RLMResults._objectSchema -OBJC_CLASSLIST_REFERENCES_$_.69 -OBJC_SELECTOR_REFERENCES_.71 -OBJC_SELECTOR_REFERENCES_.75 -OBJC_CLASSLIST_REFERENCES_$_.84 -OBJC_CLASSLIST_REFERENCES_$_.95 -_unnamed_cfstring_.105 -_unnamed_cfstring_.117 -OBJC_CLASSLIST_REFERENCES_$_.122 -.str.129 -_unnamed_cfstring_.130 -_unnamed_cfstring_.132 -OBJC_CLASSLIST_REFERENCES_$_.139 -OBJC_CLASSLIST_REFERENCES_$_.142 -OBJC_SELECTOR_REFERENCES_.146 -OBJC_SELECTOR_REFERENCES_.150 -OBJC_CLASSLIST_REFERENCES_$_.159 -_unnamed_cfstring_.175 -OBJC_CLASSLIST_REFERENCES_$_.188 -OBJC_METH_VAR_TYPE_.192 +OBJC_IVAR_$_RLMResults._results +OBJC_IVAR_$_RLMResults._realm +OBJC_IVAR_$_RLMResults._objectSchema +OBJC_CLASSLIST_REFERENCES_$_.47 +OBJC_CLASSLIST_REFERENCES_$_.74 +OBJC_CLASSLIST_REFERENCES_$_.91 l_OBJC_$_CLASS_METHODS_RLMResults -OBJC_METH_VAR_TYPE_.194 -OBJC_METH_VAR_TYPE_.195 -OBJC_METH_VAR_TYPE_.197 -OBJC_CLASS_NAME_.199 -OBJC_METH_VAR_TYPE_.205 -OBJC_METH_VAR_NAME_.206 -OBJC_METH_VAR_TYPE_.210 -OBJC_METH_VAR_NAME_.211 -OBJC_METH_VAR_TYPE_.215 -OBJC_METH_VAR_TYPE_.218 -OBJC_METH_VAR_TYPE_.221 -OBJC_METH_VAR_NAME_.222 -OBJC_METH_VAR_TYPE_.225 -OBJC_METH_VAR_TYPE_.230 -OBJC_CLASS_NAME_.237 -OBJC_CLASS_NAME_.239 -OBJC_PROP_NAME_ATTR_.241 +OBJC_PROP_NAME_ATTR_.130 +OBJC_PROP_NAME_ATTR_.131 +OBJC_PROP_NAME_ATTR_.132 +OBJC_METH_VAR_TYPE_.145 +OBJC_CLASS_NAME_.165 +OBJC_METH_VAR_TYPE_.167 l_OBJC_CLASS_PROTOCOLS_$_RLMResults l_OBJC_METACLASS_RO_$_RLMResults -OBJC_CLASS_NAME_.242 +OBJC_CLASS_NAME_.171 +OBJC_METH_VAR_TYPE_.173 +OBJC_METH_VAR_TYPE_.191 l_OBJC_$_INSTANCE_METHODS_RLMResults -OBJC_METH_VAR_NAME_.257 -OBJC_METH_VAR_TYPE_.258 +OBJC_METH_VAR_TYPE_.193 +OBJC_METH_VAR_TYPE_.195 +OBJC_METH_VAR_TYPE_.197 l_OBJC_$_INSTANCE_VARIABLES_RLMResults -OBJC_PROP_NAME_ATTR_.259 -OBJC_PROP_NAME_ATTR_.260 +OBJC_PROP_NAME_ATTR_.198 +OBJC_PROP_NAME_ATTR_.199 +OBJC_PROP_NAME_ATTR_.200 +OBJC_PROP_NAME_ATTR_.201 +OBJC_PROP_NAME_ATTR_.202 +OBJC_PROP_NAME_ATTR_.203 l_OBJC_$_PROP_LIST_RLMResults l_OBJC_CLASS_RO_$_RLMResults -.str.263 -.str.265 -.str.267 -.str.273 -.str.275 -.str.277 -_unnamed_cfstring_.278 -.str.279 -_unnamed_cfstring_.280 -.str.281 -_unnamed_cfstring_.282 -.str.283 -_unnamed_cfstring_.284 -_unnamed_cfstring_.294 -.str.295 -_unnamed_cfstring_.296 -.str.297 -_unnamed_cfstring_.298 -.str.299 -_unnamed_cfstring_.300 +OBJC_CLASS_NAME_.204 +l_OBJC_METACLASS_RO_$_RLMLinkingObjects +l_OBJC_CLASS_RO_$_RLMLinkingObjects +_unnamed_cfstring_.230 +_unnamed_cfstring_.232 +_unnamed_cfstring_.234 +.str.235 +_unnamed_cfstring_.236 +_unnamed_cfstring_.238 +_unnamed_cfstring_.240 +_unnamed_cfstring_.242 +_unnamed_cfstring_.244 +OBJC_SELECTOR_REFERENCES_.246 +.str.254 +.str.256 +.str.258 +.str.260 +OBJC_METH_VAR_NAME_.261 +OBJC_SELECTOR_REFERENCES_.262 +OBJC_CLASSLIST_REFERENCES_$_.265 +OBJC_SELECTOR_REFERENCES_.267 +OBJC_METH_VAR_NAME_.271 +OBJC_SELECTOR_REFERENCES_.272 +OBJC_CLASSLIST_REFERENCES_$_.273 +OBJC_SELECTOR_REFERENCES_.275 +.str.276 +.str.282 .str.303 -_unnamed_cfstring_.304 -.str.305 -_unnamed_cfstring_.306 -OBJC_METH_VAR_NAME_.313 -OBJC_SELECTOR_REFERENCES_.314 -OBJC_METH_VAR_NAME_.315 -OBJC_SELECTOR_REFERENCES_.316 -OBJC_CLASSLIST_REFERENCES_$_.319 -OBJC_METH_VAR_NAME_.320 -OBJC_SELECTOR_REFERENCES_.321 -OBJC_METH_VAR_NAME_.322 -OBJC_SELECTOR_REFERENCES_.323 -OBJC_SELECTOR_REFERENCES_.326 -.str.333 -.str.336 -.str.337 -.str.338 -.str.346 -_ZTVNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEEE -_ZTSNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEEE -_ZTINSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEEE -_ZTSZ35-[RLMResults addNotificationBlock:]E4$_16 -_ZTIZ35-[RLMResults addNotificationBlock:]E4$_16 -.str.347 -.str.348 -.str.350 -.str.351 -.str.352 -.str.354 -.str.355 -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &> -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &, std::exception_ptr> -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &, std::exception_ptr> -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &> -forward &> -forward_as_tuple &> -_ZZ35-[RLMResults addNotificationBlock:]EN4$_16C2ERKS_ -_ZZ35-[RLMResults addNotificationBlock:]EN4$_16C1ERKS_ -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &&> -forward &&> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &> -forward -forward_as_tuple -allocator, void (std::exception_ptr)> > -forward, void (std::exception_ptr)> > > > -forward, void (std::exception_ptr)> *> -move, void (std::exception_ptr)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -_ZZ35-[RLMResults addNotificationBlock:]EN4$_16C2EOS_ -_ZZ35-[RLMResults addNotificationBlock:]EN4$_16C1EOS_ -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&, 0> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33), false> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:528:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:524:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:480:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:456:34)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:440:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:424:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:396:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:381:28)> +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:402:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:398:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:382:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:358:34)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:342:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:326:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:298:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:283:28)> assertKeyPathIsNotNested RLMResultsValidateInWriteTransaction -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:354:21)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:348:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:317:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:308:32)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:303:32)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:297:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:287:35)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:256:21)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:250:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:219:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:210:32)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:205:32)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:199:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:175:35)> get_mode -throwError -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:246:28)> -get_source_ndx -is_row_attached -move +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:134:28)> +translateErrors<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.mm:130:28)> -[RLMResults .cxx_construct] -[RLMResults .cxx_destruct] -[RLMResults setObjectSchema:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults_Private.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults_Private.h -[RLMResults objectSchema] -[RLMResults realm] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.h +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMResults.h +-[RLMResults isAttached] -[RLMResults addNotificationBlock:] -[RLMResults tableView] -[RLMResults indexInSource:] @@ -7141,18 +8419,10 @@ move -[RLMResults countByEnumeratingWithState:objects:count:] -[RLMResults objectClassName] -[RLMResults count] +-[RLMResults isInvalidated] ++[RLMResults emptyDetachedResults] +[RLMResults resultsWithObjectSchema:results:] -[RLMResults initPrivate] --[RLMFastEnumerator .cxx_construct] --[RLMFastEnumerator .cxx_destruct] --[RLMFastEnumerator countByEnumeratingWithState:count:] --[RLMFastEnumerator detach] --[RLMFastEnumerator dealloc] --[RLMFastEnumerator initWithCollection:objectSchema:] --[RLMCancellationToken .cxx_construct] --[RLMCancellationToken .cxx_destruct] --[RLMCancellationToken stop] --[RLMCancellationToken initWithToken:] -[RLMSchema init] -[RLMSchema objectSchema] -[RLMSchema setObjectSchema:] @@ -7193,19 +8463,17 @@ OBJC_CLASSLIST_REFERENCES_$_.9 _ZL25s_privateObjectSubclasses OBJC_IVAR_$_RLMSchema._objectSchemaByName OBJC_IVAR_$_RLMSchema._objectSchema -OBJC_CLASSLIST_REFERENCES_$_.32 _ZL19s_sharedSchemaState __block_descriptor_tmp.64 __block_literal_global.65 OBJC_CLASSLIST_REFERENCES_$_.71 +OBJC_SELECTOR_REFERENCES_.77 __block_descriptor_tmp.87 __block_descriptor_tmp.92 OBJC_CLASSLIST_REFERENCES_$_.96 +OBJC_CLASSLIST_REFERENCES_$_.101 __block_descriptor_tmp.122 -OBJC_CLASS_NAME_.123 -OBJC_METH_VAR_TYPE_.128 l_OBJC_$_CLASS_METHODS_RLMSchema -OBJC_CLASS_NAME_.135 l_OBJC_CLASS_PROTOCOLS_$_RLMSchema l_OBJC_METACLASS_RO_$_RLMSchema OBJC_CLASS_NAME_.136 @@ -7213,11 +8481,11 @@ OBJC_CLASS_NAME_.136 l_OBJC_$_INSTANCE_VARIABLES_RLMSchema l_OBJC_$_PROP_LIST_RLMSchema l_OBJC_CLASS_RO_$_RLMSchema -OBJC_SELECTOR_REFERENCES_.158 +OBJC_SELECTOR_REFERENCES_.156 OBJC_SELECTOR_REFERENCES_.162 -_unnamed_cfstring_.166 OBJC_SELECTOR_REFERENCES_.168 -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMSchema.mm +OBJC_SELECTOR_REFERENCES_.170 +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMSchema.mm move &> forward > > make_unique > > @@ -7260,51 +8528,46 @@ OBJC_METH_VAR_TYPE_.5 l_OBJC_METACLASS_RO_$_RLMSwiftSupport l_OBJC_CLASS_RO_$_RLMSwiftSupport +[RLMSwiftSupport demangleClassName:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMSwiftSupport.m +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMSwiftSupport.m +[RLMSwiftSupport isSwiftClassName:] RLMCheckForUpdates -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMUpdateChecker.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMUpdateChecker.mm _ZL12RLMExceptionP8NSStringP12NSDictionary OBJC_CLASSLIST_REFERENCES_$_.14 OBJC_CLASSLIST_REFERENCES_$_.16 OBJC_CLASSLIST_REFERENCES_$_.29 -OBJC_CLASSLIST_REFERENCES_$_.68 -_unnamed_cfstring_.95 -OBJC_CLASSLIST_REFERENCES_$_.98 -.str.99 -_unnamed_cfstring_.100 -OBJC_CLASSLIST_REFERENCES_$_.117 -OBJC_SELECTOR_REFERENCES_.121 -.str.148 -OBJC_CLASSLIST_REFERENCES_$_.166 -OBJC_SELECTOR_REFERENCES_.178 -.str.198 -.str.202 -.str.204 -OBJC_SELECTOR_REFERENCES_.212 -OBJC_CLASSLIST_REFERENCES_$_.213 -OBJC_CLASSLIST_REFERENCES_$_.214 -OBJC_CLASSLIST_REFERENCES_$_.215 -.str.218 -.str.220 -.str.224 +OBJC_CLASSLIST_REFERENCES_$_.61 +_ZL26treatFakeObjectAsRLMObject +OBJC_CLASSLIST_REFERENCES_$_.95 +_ZZ21RLMIsObjectOrSubclassP10objc_classE15FakeObjectClass +_ZGVZ21RLMIsObjectOrSubclassP10objc_classE15FakeObjectClass +_ZZ19RLMIsObjectSubclassP10objc_classE15FakeObjectClass +_ZGVZ19RLMIsObjectSubclassP10objc_classE15FakeObjectClass +OBJC_CLASSLIST_REFERENCES_$_.100 +OBJC_CLASSLIST_REFERENCES_$_.147 +OBJC_SELECTOR_REFERENCES_.164 +OBJC_CLASSLIST_REFERENCES_$_.200 +OBJC_CLASSLIST_REFERENCES_$_.201 +OBJC_CLASSLIST_REFERENCES_$_.202 RLMDynamicCast RLMDynamicCast RLMIsSubclass -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMUtil.mm +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/RLMUtil.mm +category +underlying RLMException -object_has_valid_type nsnumber_is_like_double nsnumber_is_like_float nsnumber_is_like_integer nsnumber_is_like_bool RLMMixedToObjc +RLMIsRunningInPlayground RLMIsDebuggerAttached RLMIsObjectSubclass +RLMIsObjectOrSubclass +RLMSetTreatFakeObjectAsRLMObject RLMSetErrorOrThrow RLMMakeError -RLMCollectionSetValueForKey -RLMCollectionValueForKey RLMDefaultValuesForObjectSchema RLMIsObjectValidForProperty _ZL15compare_by_nameRKN5realm12ObjectSchemaES2_ @@ -7323,11 +8586,34 @@ forward construct __construct emplace_back +__emplace_back_slow_path +forward +construct +__construct +emplace_back +forward +operator= __emplace_back_slow_path forward construct __construct emplace_back +__wrap_iter +__construct_forward +__construct_at_end > +__unwrap_iter > +__copy, realm::Property *> +copy, realm::Property *> +__move_backward +move_backward +__construct_range_forward, realm::Property *> +__advance > +advance > +operator- +__distance > +distance > +operator- +insert > __advance > advance > operator- @@ -7353,19 +8639,22 @@ swap __sort sort sort +__construct_range_forward +__construct_at_end is_indexable compare_by_name -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/schema.cpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/schema.cpp validate Realm/ObjectStore/schema.cpp _ZN5realm5Realm6ConfigaSEOS1_ -_ZN5realm25UnitializedRealmExceptionD1Ev +_ZL24translate_file_exceptionN5realm10StringDataEb +_ZN5realm27UninitializedRealmExceptionD1Ev _ZZN5realm5Realm13update_schemaENSt3__110unique_ptrINS_6SchemaENS1_14default_deleteIS3_EEEEyEN21WriteTransactionGuardD1Ev _ZN5realm24IncorrectThreadExceptionD1Ev _ZL16check_read_writePN5realm5RealmE -_ZN5realm25UnitializedRealmExceptionD0Ev +_ZN5realm27UninitializedRealmExceptionD0Ev _ZN5realm24IncorrectThreadExceptionD0Ev -_ZN5realm11SharedGroupC2ERNS_11ReplicationENS0_15DurabilityLevelEPKcb +_ZN5realm11SharedGroupC2ERNS_11ReplicationENS0_15DurabilityLevelEPKcbNSt3__18functionIFviiEEE _ZNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EED1Ev _ZNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EED0Ev _ZNKSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EE7__cloneEv @@ -7383,7 +8672,8 @@ _ZTINSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2 _ZTSZN5realm5Realm13update_schemaENSt3__110unique_ptrINS_6SchemaENS1_14default_deleteIS3_EEEEyE3$_0 _ZTIZN5realm5Realm13update_schemaENSt3__110unique_ptrINS_6SchemaENS1_14default_deleteIS3_EEEEyE3$_0 forward -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &> +shared_ptr addressof, std::__1::allocator > > addressof > __get_deleter @@ -7395,53 +8685,52 @@ forward > move &> __shared_ptr_pointer forward -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &, realm::Group *, realm::Schema &> -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &, realm::Group *, realm::Schema &> -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &> -forward &> -forward_as_tuple &> -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &&> -forward &&> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &> -forward -forward_as_tuple -allocator, void (realm::Group *, realm::Schema &)> > -forward, void (realm::Group *, realm::Schema &)> > > > -forward, void (realm::Group *, realm::Schema &)> *> -move, void (realm::Group *, realm::Schema &)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&, 0> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31), false> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -Realm/ObjectStore/schema.hpp +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp +__invoke<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &, realm::Group *, realm::Schema &> +__call<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &, realm::Group *, realm::Schema &> +get<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> &> +__libcpp_compressed_pair_imp &, 0, 0> +move &> &> +__compressed_pair &> +__tuple_leaf &, void> +__tuple_impl<0, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> &, const std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> &> +forward &> +forward_as_tuple &> +get<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &> +get<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> &&> +forward &&> +__libcpp_compressed_pair_imp &&, 0, 0> +move &&> &> +move &> +__compressed_pair &&> +move &> +__tuple_leaf, void> +__tuple_impl<0, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> &&, std::__1::allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> > +tuple , false> +forward > +forward_as_tuple > +__tuple_leaf +__tuple_impl<0, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &, const (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &> +forward +forward_as_tuple +allocator, void (realm::Group *, realm::Schema &)> > +forward, void (realm::Group *, realm::Schema &)> > > > +forward, void (realm::Group *, realm::Schema &)> *> +move, void (realm::Group *, realm::Schema &)> > > &> +allocator<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> +get<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &&> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &&> +__libcpp_compressed_pair_imp<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &&, 0> +move &> +__compressed_pair<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &&> +__tuple_leaf<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31), void> +__tuple_impl<0, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &&, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> +tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31), false> +forward<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> +forward_as_tuple<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> +move<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31) &> +__not_null<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> +function<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/shared_realm.cpp:265:31)> forward make_unique forward > @@ -7451,14 +8740,19 @@ operator() unmap ~MapBase ~Map -~Mutex +~InterprocessMutex +core/include/realm/util/interprocess_mutex.hpp set_replication +core/include/realm/alloc_slab.hpp open +move &> +InterprocessMutex init_as_regular Mutex MapBase Map File +ReadLockInfo Group SharedGroup forward @@ -7491,15 +8785,19 @@ __to_raw_pointer __destroy destroy check_read_write -get_transact_stage ~IncorrectThreadException IncorrectThreadException ~WriteTransactionGuard -~UnitializedRealmException -UnitializedRealmException +~UninitializedRealmException +UninitializedRealmException move > &> move &> +__search +__str_find, 4294967295> +translate_file_exception refresh +notify +write_copy compact invalidate cancel_transaction @@ -7516,32 +8814,43 @@ Realm ~Config Config Realm/ObjectStore/shared_realm.cpp +_ZN5realm5_impl20ChangesetInputStream10next_blockERPKcS4_ _ZN5realm5_impl23TransactLogBufferStream20transact_log_reserveEmPPcS3_ _ZN5realm4util6BufferIcE13reserve_extraEmm +_ZN5realm5_impl20ChangesetInputStreamD1Ev +_ZN5realm5_impl20ChangesetInputStreamD0Ev _ZN5realm5_impl23TransactLogBufferStream19transact_log_appendEPKcmPPcS5_ +_ZN5realm11SharedGroup15do_advance_readINS_5_impl23NullInstructionObserverEEEbPT_NS0_9VersionIDERNS2_7HistoryE +_ZN5realm5_impl17TransactLogParser10read_mixedEPNS_5MixedE +_ZN5realm4util6BufferImE7reserveEmm +_ZN5realm5_impl17TransactLogParser14BadTransactLogD1Ev +_ZN5realm5_impl17TransactLogParser14read_timestampEv +_ZN5realm4util6BufferImE6resizeEmmmm +_ZN5realm5_impl17TransactLogParser14BadTransactLogD0Ev +_ZNK5realm5_impl17TransactLogParser14BadTransactLog4whatEv _ZN5realm4util18BufferSizeOverflowD1Ev _ZN5realm4util6BufferIcE7reserveEmm _ZN5realm4util18BufferSizeOverflowD0Ev _ZNK5realm4util18BufferSizeOverflow4whatEv _ZN5realm4util6BufferIcE6resizeEmmmm _ZN5realm11SharedGroup15do_advance_readIN12_GLOBAL__N_120TransactLogValidatorEEEbPT_NS0_9VersionIDERNS_5_impl7HistoryE -_ZN12_GLOBAL__N_120TransactLogValidator12erase_columnEm -_ZN12_GLOBAL__N_120TransactLogValidator17erase_link_columnEmmm -_ZN12_GLOBAL__N_120TransactLogValidator13rename_columnEmN5realm10StringDataE -_ZN12_GLOBAL__N_120TransactLogValidator11move_columnEmm -_ZN12_GLOBAL__N_120TransactLogValidator24insert_group_level_tableEmmN5realm10StringDataE -_ZN12_GLOBAL__N_120TransactLogValidator23erase_group_level_tableEmm -_ZN12_GLOBAL__N_120TransactLogValidator24rename_group_level_tableEmN5realm10StringDataE -_ZN12_GLOBAL__N_120TransactLogValidator22move_group_level_tableEmm -_ZN12_GLOBAL__N_120TransactLogValidator29schema_error_unless_new_tableEv -_ZN12_GLOBAL__N_120TransactLogValidator12schema_errorEv +_ZN12_GLOBAL__N_126TransactLogValidationMixin12erase_columnEm +_ZN12_GLOBAL__N_126TransactLogValidationMixin17erase_link_columnEmmm +_ZN12_GLOBAL__N_126TransactLogValidationMixin13rename_columnEmN5realm10StringDataE +_ZN12_GLOBAL__N_126TransactLogValidationMixin11move_columnEmm +_ZN12_GLOBAL__N_126TransactLogValidationMixin24insert_group_level_tableEmmN5realm10StringDataE +_ZN12_GLOBAL__N_126TransactLogValidationMixin23erase_group_level_tableEmm +_ZN12_GLOBAL__N_126TransactLogValidationMixin24rename_group_level_tableEmN5realm10StringDataE +_ZN12_GLOBAL__N_126TransactLogValidationMixin22move_group_level_tableEmm +_ZN12_GLOBAL__N_126TransactLogValidationMixin29schema_error_unless_new_tableEv +_ZN12_GLOBAL__N_126TransactLogValidationMixin12schema_errorEv _ZN5realm11SharedGroup15do_advance_readIN12_GLOBAL__N_119TransactLogObserverEEEbPT_NS0_9VersionIDERNS_5_impl7HistoryE _ZN5realm5_impl17TransactLogParser5parseIN12_GLOBAL__N_119TransactLogObserverEEEvRNS0_17NoCopyInputStreamERT_ -_ZN12_GLOBAL__N_119TransactLogObserver10mark_dirtyEmm +_ZN12_GLOBAL__N_114MarkDirtyMixinINS_19TransactLogObserverEE10mark_dirtyEmm _ZN12_GLOBAL__N_119TransactLogObserver10get_changeERN5realm14BindingContext13ObserverStateEm _ZN12_GLOBAL__N_119TransactLogObserver10invalidateEPN5realm14BindingContext13ObserverStateE _ZN12_GLOBAL__N_119TransactLogObserver23append_link_list_changeEN5realm14BindingContext10ColumnInfo4KindEm -_ZZN5realm5_impl11transaction5beginERNS_11SharedGroupEPNS_14BindingContextEbENK3$_1clIJRN12_GLOBAL__N_120TransactLogValidatorEEEEDaDpOT_ +_ZZN5realm5_impl11transaction5beginERNS_11SharedGroupEPNS_14BindingContextEbENK3$_1clIJN12_GLOBAL__N_120TransactLogValidatorEEEEDaDpOT_ _ZN5realm11SharedGroup16promote_to_writeINS_5_impl23NullInstructionObserverEEEvPT_ _ZN5realm5_impl25ReversedNoCopyInputStreamD1Ev _ZN5realm5_impl17SimpleInputStreamD1Ev @@ -7565,9 +8874,55 @@ _ZN5realm5_impl16TransactReverser18append_instructionENS1_5InstrE _ZN5realm5_impl25ReversedNoCopyInputStream10next_blockERPKcS4_ _ZN5realm5_impl25ReversedNoCopyInputStreamD0Ev _ZN5realm11SharedGroup29rollback_and_continue_as_readINS_5_impl23NullInstructionObserverEEEvPT_ +_ZN12_GLOBAL__N_116LinkViewObserver10mark_dirtyEmm +_ZN12_GLOBAL__N_116LinkViewObserver10get_changeEv +operator== +operator!= +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/transact_log_handler.cpp +addressof +operator!=, std::__1::__wrap_iter > +select_link_list +link_list_clear +link_list_nullify +link_list_erase +link_list_swap +link_list_move +link_list_insert +link_list_set +__wrap_iter +operator- +__unwrap_iter +__move +move +operator== +operator!= +operator- +find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/transact_log_handler.cpp:562:29) &> +remove_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/transact_log_handler.cpp:562:29)> +clear_table +end > > +operator== +operator!= +begin > > +need_move_info +insert_empty_rows +erase_substring +insert_substring +set_mixed +set_olddatetime +set_string_unique +set_int_unique +construct +__construct +get_change +mark_dirty +parse_one<(anonymous namespace)::LinkViewObserver> +parse<(anonymous namespace)::LinkViewObserver> +do_advance_read<(anonymous namespace)::LinkViewObserver> +advance_read<(anonymous namespace)::LinkViewObserver> +core/include/realm/lang_bind_helper.hpp rollback_and_continue_as_read<(anonymous namespace)::TransactLogObserver> operator()<(anonymous namespace)::TransactLogObserver &> -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/transact_log_handler.cpp rollback_and_continue_as_read rollback_and_continue_as_read operator()<> @@ -7579,6 +8934,14 @@ advance_transact ~ReversedNoCopyInputStream ReversedNoCopyInputStream ~NoCopyInputStreamAdaptor +optimize_table +move_group_level_table +rename_group_level_table +insert_group_level_table +erase_group_level_table +select_descriptor +move_column +rename_column Tuple core/include/realm/util/tuple.hpp cons > > @@ -7592,10 +8955,16 @@ append > > >, char **> for_each > > > >, char **> append_string_instr > > > > -is_link_type +insert_link_column +erase_link_column tuple append_string_instr > > +insert_column +erase_column append_simple_instr > > > +set_link_type +remove_search_index +add_search_index append_simple_instr > __push_back_slow_path forward @@ -7606,6 +8975,8 @@ sync_select sync_linkview sync_descriptor sync_table +select_table +change_link_targets cons > > > tuple for_each > > >, char **> @@ -7616,6 +8987,18 @@ for_each, char **> for_each >, char **> for_each > >, char **> append_simple_instr > > > +append +append, int> +cons > > +append >, int> +cons > > > +append > >, int> +cons > > > > +append > > >, int> +for_each > >, char **> +for_each > > >, char **> +for_each > > > >, char **> +append_simple_instr > > > > > cons > append, unsigned long> cons > > @@ -7626,6 +9009,7 @@ for_each > >, char **> for_each > > >, char **> append_string_instr > > > +get_olddatetime append cons > append, double> @@ -7678,6 +9062,19 @@ append, realm::DataType> cons > > append >, realm::DataType> append_mixed_instr > > +cons +tuple +cons > +tuple +cons > > +tuple +cons > > > +tuple +for_each, char **> +for_each >, char **> +for_each > >, char **> +for_each > > >, char **> +append_simple_instr > > > > tuple cons > > > append > >, unsigned long> @@ -7787,8 +9184,8 @@ InputStream SimpleInputStream reset_free_space_tracking rollback_and_continue_as_read<(anonymous namespace)::TransactLogValidator> -operator()<(anonymous namespace)::TransactLogValidator &> -TransactLogObserver<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/transact_log_handler.cpp:460:38)> +operator()<(anonymous namespace)::TransactLogValidator> +TransactLogObserver<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/transact_log_handler.cpp:599:38)> promote_to_write<(anonymous namespace)::TransactLogObserver> promote_to_write promote_to_write @@ -7797,7 +9194,7 @@ unselect_all reset_selection_caches initiate_transact promote_to_write<(anonymous namespace)::TransactLogValidator> -TransactLogObserver<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/transact_log_handler.cpp:444:38)> +TransactLogObserver<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/transact_log_handler.cpp:583:38)> move<(anonymous namespace)::TransactLogObserver &> append_link_list_change __wrap_iter @@ -7818,9 +9215,7 @@ swap move move_if_noexcept forward -forward > > -move > &> -IndexSet +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/index_set.hpp ColumnInfo construct __construct @@ -7828,7 +9223,6 @@ __construct_backward forward &> construct __construct -get_change operator== operator!= current_table @@ -7840,12 +9234,13 @@ distance > __lower_bound &, std::__1::__wrap_iter, realm::BindingContext::ObserverState> lower_bound, realm::BindingContext::ObserverState, std::__1::__less > lower_bound, realm::BindingContext::ObserverState> -mark_dirty parse_one<(anonymous namespace)::TransactLogObserver> parse<(anonymous namespace)::TransactLogObserver> do_advance_read<(anonymous namespace)::TransactLogObserver> advance_read<(anonymous namespace)::TransactLogObserver> move &> +~TransactLogValidator +TransactLogValidator move<(anonymous namespace)::TransactLogValidator &> schema_error end > > @@ -7856,28 +9251,87 @@ parse_one<(anonymous namespace)::TransactLogValidator> parse<(anonymous namespace)::TransactLogValidator> do_advance_read<(anonymous namespace)::TransactLogValidator> advance_read<(anonymous namespace)::TransactLogValidator> -TransactLogValidator -TransactLogObserver<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/transact_log_handler.cpp:437:38)> +TransactLogObserver<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/transact_log_handler.cpp:576:38)> +~LinkViewObserver +TransactLogValidationMixin +LinkViewObserver +~ReadLockUnlockGuard +~Buffer +~StringBuffer +core/include/realm/util/string_buffer.hpp +~TransactLogParser +~BadTransactLog +BadTransactLog +is_valid_data_type +is_valid_link_type +operator() +reset +__unwrap_iter +__copy +copy +unique_ptr +read_timestamp +core/include/realm/olddatetime.hpp +read_mixed +sub +int_subtract_with_overflow_detect +int_greater_than_or_equal +int_shift_left_with_overflow_detect +read_int +OldDateTime +read_binary +read_buffer +read_string +read_double +read_bytes +read_float +cast +cast_to_unsigned +int_subtract_with_overflow_detect +int_greater_than_or_equal +int_shift_left_with_overflow_detect +read_int +int_subtract_with_overflow_detect +int_greater_than_or_equal +int_shift_left_with_overflow_detect +read_int +cast_to_unsigned +int_subtract_with_overflow_detect +int_shift_left_with_overflow_detect +read_int +read_char +parse_one +next_input_buffer +has_next +parse +NoCopyInputStream +ChangesetInputStream +Buffer +StringBuffer +TransactLogParser +ReadLockUnlockGuard +do_advance_read +get_replication +get_history +advance_read +advance_read commit_and_continue_as_read -~TransactLogValidator +~TransactLogValidationMixin ~TransactLogObserver cancel commit -.str1 -.str2 -.str3 -.str4 -.str5 -.str6 -.str7 -.str8 -.str9 -.str10 -.str11 -.str12 -.str13 -.str14 -.str15 +_ZZN5realm5_impl17WeakRealmNotifierC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_08__invokeEPv +_ZZN5realm5_impl17WeakRealmNotifierC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_18__invokeEPKv +_ZZN5realm5_impl17WeakRealmNotifierC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_28__invokeEPKv +WeakRealmNotifierBase +~WeakRealmNotifierBase +~RefCountedWeakPointer +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/apple/weak_realm_notifier.cpp +operator void (*)(const void *) +operator const void *(*)(const void *) +operator void (*)(void *) +~WeakRealmNotifier +WeakRealmNotifier _ZN12_GLOBAL__N_115system_categoryD1Ev _ZN12_GLOBAL__N_115system_categoryD0Ev _ZNK12_GLOBAL__N_115system_category4nameEv @@ -7889,31 +9343,9 @@ _ZTSN12_GLOBAL__N_115system_categoryE _ZTIN12_GLOBAL__N_115system_categoryE _ZZN5realm4util9page_sizeEvE16cached_page_size _ZGVZN5realm4util9page_sizeEvE16cached_page_size -.str18 -.str19 -.str20 -.str21 -.str22 -.str23 -.str24 -.str25 -.str26 -.str27 -.str28 -.str29 -.str30 -.str31 -.str32 -.str33 -.str34 -.str35 -.str39 _GLOBAL__sub_I_file_mapper.cpp -.str16 -.str17 _ZN12_GLOBAL__N_15nslogEPKc _ZN12_GLOBAL__N_133termination_notification_callbackE -_GLOBAL__sub_I_platform_specific_condvar.cpp _ZN12_GLOBAL__N_116DefaultAllocatorD1Ev _ZN12_GLOBAL__N_116DefaultAllocatorD0Ev _ZN12_GLOBAL__N_116DefaultAllocator8do_allocEm @@ -7928,84 +9360,34 @@ _ZTIN12_GLOBAL__N_116DefaultAllocatorE _ZN12_GLOBAL__N_116InvalidFreeSpaceD1Ev _ZN12_GLOBAL__N_116InvalidFreeSpaceD0Ev _ZNK12_GLOBAL__N_116InvalidFreeSpace4whatEv +_GLOBAL__sub_I_alloc_slab.cpp _ZTSN12_GLOBAL__N_116InvalidFreeSpaceE _ZTIN12_GLOBAL__N_116InvalidFreeSpaceE +_ZN12_GLOBAL__N_19all_filesE +_ZN12_GLOBAL__N_115all_files_mutexE _ZTVN12_GLOBAL__N_116InvalidFreeSpaceE -.str36 -.str37 -.str38 -.str40 -.str42 -.str43 _ZN12_GLOBAL__N_119foreach_bptree_leafINS_12VisitAdapterEEEbRN5realm5ArrayEmmT_m _ZN12_GLOBAL__N_130simplified_foreach_bptree_leafINS_13UpdateAdapterEEEvRN5realm5ArrayET_ _ZN12_GLOBAL__N_129destroy_singlet_bptree_branchEN5realm6MemRefERNS0_9AllocatorERNS0_5Array12EraseHandlerE _ZN12_GLOBAL__N_128elim_superfluous_bptree_rootEPN5realm5ArrayENS0_6MemRefExmRNS1_12EraseHandlerE -__cxx_global_var_init41 -__cxx_global_var_init42 -__cxx_global_var_init43 -__cxx_global_var_init44 -__cxx_global_var_init45 -__cxx_global_var_init46 -__cxx_global_var_init47 +__cxx_global_var_init.41 +__cxx_global_var_init.42 +__cxx_global_var_init.43 +__cxx_global_var_init.44 +__cxx_global_var_init.45 +__cxx_global_var_init.46 +__cxx_global_var_init.47 _ZN12_GLOBAL__N_117find_bptree_childExmRKN5realm9AllocatorE _ZZN5realm5Array9bit_widthExE4bits _ZZNK5realm5Array13first_set_bitEjE27MultiplyDeBruijnBitPosition -.str48 -.str49 -.str50 -.str51 -.str52 -.str53 -.str54 -.str55 -.str56 -.str57 -.str58 -.str60 -.str61 -.str62 -.str63 -.str64 -.str65 -.str66 -.str67 -.str68 -.str70 -.str71 -.str72 -.str73 -.str74 -.str75 -.str76 -.str77 -.str78 -.str79 -.str80 -.str81 -.str82 -.str83 -.str84 -.str86 -.str87 -.str89 -.str90 -.str91 _ZN12_GLOBAL__N_110TreeWriter11ParentLevel13add_child_refEmmbPm _ZN12_GLOBAL__N_110TreeWriter11ParentLevelD2Ev -.str41 -.str44 -.str45 -.str46 -.str47 _ZN12_GLOBAL__N_111SetLeafElemD1Ev _ZN12_GLOBAL__N_111SetLeafElem6updateEN5realm6MemRefEPNS1_11ArrayParentEmm _ZN12_GLOBAL__N_111SetLeafElemD0Ev _ZTVN12_GLOBAL__N_111SetLeafElemE _ZTSN12_GLOBAL__N_111SetLeafElemE _ZTIN12_GLOBAL__N_111SetLeafElemE -.str59 -.str69 _ZN12_GLOBAL__N_119InsertColumnUpdaterD1Ev _ZN12_GLOBAL__N_119InsertColumnUpdater6updateERN5realm5TableE _ZN12_GLOBAL__N_119InsertColumnUpdater13update_parentERN5realm5TableE @@ -8023,8 +9405,6 @@ _ZN12_GLOBAL__N_116MarkDirtyUpdater6updateERN5realm5TableE _ZN12_GLOBAL__N_116MarkDirtyUpdater13update_parentERN5realm5TableE _ZN12_GLOBAL__N_116MarkDirtyUpdaterD0Ev _GLOBAL__sub_I_group.cpp -.str85 -.str88 _ZTVN12_GLOBAL__N_119InsertColumnUpdaterE _ZTSN12_GLOBAL__N_119InsertColumnUpdaterE _ZTIN12_GLOBAL__N_119InsertColumnUpdaterE @@ -8037,122 +9417,17 @@ _ZTIN12_GLOBAL__N_117MoveColumnUpdaterE _ZTVN12_GLOBAL__N_116MarkDirtyUpdaterE _ZTSN12_GLOBAL__N_116MarkDirtyUpdaterE _ZTIN12_GLOBAL__N_116MarkDirtyUpdaterE -.str92 -.str93 +.str.106 _ZN12_GLOBAL__N_120has_duplicate_valuesERKN5realm5ArrayE -.str94 -.str95 -.str96 -.str97 -.str98 -.str99 -.str100 -.str101 _ZN12_GLOBAL__N_121get_group_ndx_blockedEmRNS_9AggrStateERN5realm5TableE _ZN12_GLOBAL__N_113get_group_ndxEmRNS_9AggrStateERN5realm5TableE -.str102 -.str103 -.str104 -.str105 -.str106 -.str107 -.str108 -.str109 -.str110 -.str112 -.str113 -.str114 -.str115 -.str116 -.str117 -.str118 -.str119 -.str120 -.str121 -.str122 -.str123 -.str124 -.str125 -.str126 -.str127 -.str128 -.str129 -.str130 -.str131 -.str132 -.str133 -.str134 -.str135 -.str136 -.str137 -.str138 -.str139 -.str140 -.str141 -.str142 -.str143 -.str144 -.str145 -.str146 -.str147 -.str148 -.str149 -.str150 -.str151 -.str152 -.str153 -.str154 -.str155 -.str156 -.str157 -.str158 -.str159 -.str160 -.str161 -.str162 -.str163 -.str164 -.str165 -.str166 -.str167 -.str168 -.str169 -.str170 -.str171 -.str172 -.str173 -.str174 -.str175 -.str177 -.str180 -.str181 -.str182 -.str183 -.str186 -.str187 -.str188 -.str192 -.str193 -.str194 -.str201 -.str202 -.str203 -.str204 -.str205 -.str206 -.str207 -.str208 -.str210 -.str211 -.str212 -.str213 -.str214 -.str215 -.str216 -.str217 -.str218 -.str219 -.str220 +.str.173 +.str.179 +.str.206 +.str.210 +.str.218 +.str.230 +.str.232 _ZZN5realm15sequence_lengthEcE7lengths _ZZN5realm12utf8_compareENS_10StringDataES0_E15collation_order _GLOBAL__sub_I_utilities.cpp @@ -8230,7 +9505,6 @@ _ZL17_load_method_type _ZL23NSAutoreleasePool_class _ZZL30add_image_hook_autoreleasepoolPK11mach_headerlE7patches _ZGVZL30add_image_hook_autoreleasepoolPK11mach_headerlE7patches -.str.2 OBJC_SELECTOR_REFERENCES_.4 OBJC_METH_VAR_TYPE_.20 l_OBJC_$_PROTOCOL_INSTANCE_METHODS___ARCLiteIndexedSubscripting__ @@ -8238,7 +9512,6 @@ OBJC_METH_VAR_TYPE_.20 l_OBJC_PROTOCOL_$___ARCLiteIndexedSubscripting__ l_OBJC_LABEL_PROTOCOL_$___ARCLiteIndexedSubscripting__ l_OBJC_PROTOCOL_REFERENCE_$___ARCLiteIndexedSubscripting__ -OBJC_METH_VAR_TYPE_.29 OBJC_CLASS_NAME_.32 l_OBJC_$_PROTOCOL_INSTANCE_METHODS___ARCLiteKeyedSubscripting__ l_OBJC_$_PROTOCOL_METHOD_TYPES___ARCLiteKeyedSubscripting__ diff --git a/Carthage/Build/iOS/23DCCAC8-B82F-344B-8360-78ADED437AAD.bcsymbolmap b/Carthage/Build/iOS/9CD62F16-9D53-3E1B-ABF9-4AC9EC4D8141.bcsymbolmap similarity index 73% rename from Carthage/Build/iOS/23DCCAC8-B82F-344B-8360-78ADED437AAD.bcsymbolmap rename to Carthage/Build/iOS/9CD62F16-9D53-3E1B-ABF9-4AC9EC4D8141.bcsymbolmap index 38a968c..92ce92a 100644 --- a/Carthage/Build/iOS/23DCCAC8-B82F-344B-8360-78ADED437AAD.bcsymbolmap +++ b/Carthage/Build/iOS/9CD62F16-9D53-3E1B-ABF9-4AC9EC4D8141.bcsymbolmap @@ -1,15 +1,8 @@ BCSymbolMap Version: 1.0 _TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ _TFSaCft12arrayLiteralGSax__GSax_ -_TFEsPs30RangeReplaceableCollectionType15reserveCapacityfWx5Index8Distance_T_ -_TFEsPs30RangeReplaceableCollectionTypeCuRd__s12SequenceTypeWx9Generator7Element_zWd__9GeneratorS2__rfqd__x -_TFEsPs30RangeReplaceableCollectionType16insertContentsOfuRd__s14CollectionTypeWx9Generator7Element_zWd__S1_S2__rfTqd__2atwx5Index_T_ -_TFEsPs30RangeReplaceableCollectionType13removeAtIndexfwx5IndexWx9Generator7Element_ -_TFEsPs30RangeReplaceableCollectionType17_customRemoveLastfT_GSqWx9Generator7Element__ -_TFEsPs30RangeReplaceableCollectionType11removeFirstfT_Wx9Generator7Element_ -_TFEsPs30RangeReplaceableCollectionType11removeFirstfSiT_ -_TFEsPs30RangeReplaceableCollectionType11removeRangefGVs5Rangewx5Index_T_ -_TFEsPs30RangeReplaceableCollectionType9removeAllfT12keepCapacitySb_T_ +objectdestroy +_TPA__TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_14LinkingObjectsx___dT__XFo_oGS1_GS2_x___dT__ _TFesRxs14CollectionTypewx11SubSequencezGVs5Slicex_wx5IndexzWxS0_S2__wx8_ElementzWxS0_9Generator7Element_WxS0_S3__zWxS0_S4_S5__WxS0_S4__zGVs17IndexingGeneratorGS1_x__WxS0_11SubSequence_zGS1_x_rS_g9subscriptFGVs5RangewxS2__GS1_x_ _TFEsPs14CollectionType10prefixUpTofwx5Indexwx11SubSequence _TFEsPs14CollectionType10suffixFromfwx5Indexwx11SubSequence @@ -29,13 +22,22 @@ _TFEsPs12SequenceType31_customContainsEquatableElementfWx9Generator7Element_GSqS _TFEsPs14CollectionType18_preprocessingPassurfFxqd__GSqqd___ _TFEsPs14CollectionType24_copyToNativeArrayBufferfT_GVs22_ContiguousArrayBufferWx9Generator7Element__ _TFEsPs12SequenceType13_initializeTofGSpWx9Generator7Element__GSpWxS0_S1___ +_TFEsPs30RangeReplaceableCollectionType15reserveCapacityfWx5Index8Distance_T_ +_TFEsPs30RangeReplaceableCollectionTypeCuRd__s12SequenceTypeWx9Generator7Element_zWd__9GeneratorS2__rfqd__x +_TFEsPs30RangeReplaceableCollectionType16insertContentsOfuRd__s14CollectionTypeWx9Generator7Element_zWd__S1_S2__rfTqd__2atwx5Index_T_ +_TFEsPs30RangeReplaceableCollectionType13removeAtIndexfwx5IndexWx9Generator7Element_ +_TFEsPs30RangeReplaceableCollectionType17_customRemoveLastfT_GSqWx9Generator7Element__ +_TFEsPs30RangeReplaceableCollectionType11removeFirstfT_Wx9Generator7Element_ +_TFEsPs30RangeReplaceableCollectionType11removeFirstfSiT_ +_TFEsPs30RangeReplaceableCollectionType11removeRangefGVs5Rangewx5Index_T_ +_TFEsPs30RangeReplaceableCollectionType9removeAllfT12keepCapacitySb_T_ _TFVC10RealmSwift5Realm13Configurationg16rlmConfigurationCSo21RLMRealmConfiguration _TFEsPs14CollectionTypeg5firstGSqWx9Generator7Element__ _TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__ -objectdestroy +objectdestroy.3 _TPA__TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__ _TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_ -objectdestroy.1 +objectdestroy.5 _TPA__TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_ _TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__ _TPA__TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__ @@ -94,22 +96,18 @@ _TTWVSC17NSMatchingOptionss16RawRepresentable10FoundationFS0_g8rawValuewx8RawVal _TTWVSC17NSMatchingOptionss13OptionSetType10FoundationFS0_CfT8rawValuewx8RawValue_x _TTSf4gs_gs___TZFsoi2eeFTSSSS_Sb _TFVs20ManagedBufferPointerlu5valuex -_TFSaCfGVs12_ArrayBufferx_GSax_ -_TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ _TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ -_TFSaCuRd__s12SequenceTypexzWd__9Generator7Element_rfqd__GSax_ -_TFSag5countSi _TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TFSag5countSi _TFSp10initializefxT_ -_TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TFVs22_ContiguousArrayBufferg5countSi -_TZFsoi2eeurFTGSqx_Vs26_OptionalNilComparisonType_Sb -_TFVs22_ContiguousArrayBuffers5countSi +_TFSaCuRd__s12SequenceTypexzWd__9Generator7Element_rfqd__GSax_ _TFVs15ContiguousArrayCfT_GS_x_ _TFVs15ContiguousArray6appendfxT_ _TFSa6appendfxT_ _TFs11numericCastu0_Rxs18_SignedIntegerType_S_rFxq_ _TFVs15ContiguousArray15reserveCapacityfSiT_ +_TFVs22_ContiguousArrayBufferCfT_GS_x_ +_TFVs22_ContiguousArrayBufferg5countSi _TFEsPs14CollectionTypeg7indicesGVs5Rangewx5Index_ _TFVs12_ArrayBufferg8capacitySi _TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ @@ -154,42 +152,50 @@ _TTSf4n_n_d___TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TZ _TTSf4n_n_d___TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element8subsumeswxS0__Sb _TTSf4n_n_d___TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element14isDisjointWithwxS0__Sb _TTSf4n_n_d___TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element14isDisjointWithwxS0__Sb -objectdestroy.14 +objectdestroy.13 _swift_dead_method_stub -_TPA__TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__.7 _TWturGVs15ContiguousArrayx_s12SequenceTypes11SubSequence _TWturGSax_s14CollectionTypes11SubSequence _TWturGSax_s14CollectionTypes9Generator _TTWVSC26NSRegularExpressionOptionss16RawRepresentable10FoundationFS0_CfT8rawValuewx8RawValue_GSqx_ -objectdestroy.3 -objectdestroy.5 -objectdestroy.8 -objectdestroy.11 +objectdestroy.7 +_TWturGVs22_ContiguousArrayBufferx_s9Indexables8_Element _TWturGVs12AnyGeneratorx_s13GeneratorTypes7Element _TWturGVs12_ArrayBufferx_s16_ArrayBufferTypes7Element _TWturGVs12_ArrayBufferx_s9Indexables8_Element _TWturGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypes7Element -_TWturGVs22_ContiguousArrayBufferx_s9Indexables8_Element _TTWVSC26NSRegularExpressionOptionss9Equatable10FoundationZFS0_oi2eefTxx_Sb +_TPA__TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_4Listx___dT__XFo_oGS1_GS2_x___dT__ +_TPA__TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx___dT__XFo_oGS1_GS2_x___dT__ +_TPA__TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_7Resultsx___dT__XFo_oGS1_GS2_x___dT__ _TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_g7isEmptySb -_TPA__TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__.13 +objectdestroy.1 +objectdestroy.9 +objectdestroy.11 _TTWVSC26NSRegularExpressionOptionss16RawRepresentable10FoundationFS0_g8rawValuewx8RawValue _TWTurGVs15ContiguousArrayx_s12SequenceTypes9GeneratorPs13GeneratorType_ _TWTurGSax_s14CollectionTypes9GeneratorPs13GeneratorType_ _TWTurGVs22_ContiguousArrayBufferx_s14CollectionTypes9GeneratorPs13GeneratorType_ _TTWVSC26NSRegularExpressionOptionss13OptionSetType10FoundationFS0_CfT8rawValuewx8RawValue_x -_TPA__TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_.10 _TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_8containsfwx7ElementSb _TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_8containsfwx7ElementSb globalinit_33_47969F13D2F39044D14973F482FBAD86_token0 +metadata L_selector_data(_rlmArray) L_selector(_rlmArray) L_selector_data(count) L_selector(count) +metadata.2 L_selector_data(defaultConfiguration) L_selector(defaultConfiguration) +L_selector_data(allocWithZone:) +L_selector(allocWithZone:) +L_selector_data(initFileURLWithPath:isDirectory:) +L_selector(initFileURLWithPath:isDirectory:) L_selector_data(path) L_selector(path) +L_selector_data(fileURL) +L_selector(fileURL) L_selector_data(inMemoryIdentifier) L_selector(inMemoryIdentifier) L_selector_data(encryptionKey) @@ -200,9 +206,11 @@ globalinit_33_47969F13D2F39044D14973F482FBAD86_token0 L_selector(schemaVersion) L_selector_data(migrationBlock) L_selector(migrationBlock) -metadata -metadata.2 metadata.4 +metadata.6 +metadata.8 +L_selector_data(deleteRealmIfMigrationNeeded) +L_selector(deleteRealmIfMigrationNeeded) L_selector_data(customSchema) L_selector(customSchema) L_selector_data(disableFormatUpgrade) @@ -214,8 +222,7 @@ _TMLCSo12NSDictionary L_selector(isEqualToObjectSchema:) L_selector_data(isEqualToProperty:) L_selector(isEqualToProperty:) -metadata.6 -metadata.9 +metadata.10 metadata.12 L_selector_data(isEqualToSchema:) L_selector(isEqualToSchema:) @@ -254,13 +261,13 @@ field_type_vector_NSRegularExpressionOptions field_type_vector_NSMatchingOptions _TMLGCs23_ContiguousArrayStorageVSC26NSRegularExpressionOptions_ _TMLGCs23_ContiguousArrayStorageVSC17NSMatchingOptions_ -metadata.15 +metadata.14 switch.table -Apple LLVM version 7.3.0 (clang-703.0.29) --emit-bc /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Aliases.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Error.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/List.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Migration.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Object.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/ObjectSchema.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Optional.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Property.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Realm.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmCollectionType.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmConfiguration.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Results.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Schema.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SortDescriptor.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SwiftVersion.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Util.swift -target arm64-apple-ios8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-7.3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk -I /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Products/Release-iphoneos -F /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Products/Release-iphoneos -application-extension -g -module-cache-path /Users/realm/Library/Developer/Xcode/DerivedData/ModuleCache -serialize-debugging-options -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-generated-files.hmap -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-own-target-headers.hmap -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-project-headers.hmap -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Products/Release-iphoneos/include -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/DerivedSources/arm64 -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/DerivedSources -Xcc -DREALM_HAVE_CONFIG -Xcc -D__ASSERTMACROS__ -Xcc -working-directory/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release -emit-module-doc-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/RealmSwift.swiftdoc -O -module-name RealmSwift -emit-module-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/RealmSwift.swiftmodule -emit-objc-header-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/RealmSwift-Swift.h -serialize-diagnostics-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Aliases.dia -emit-dependencies-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Aliases.d -num-threads 4 -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Aliases.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Error.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/List.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Migration.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Object.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/ObjectSchema.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Optional.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Property.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Realm.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/RealmCollectionType.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/RealmConfiguration.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Results.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Schema.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/SortDescriptor.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/SwiftVersion.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Util.bc -resource-dir /Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift +Apple LLVM version 7.3.0 (clang-703.0.31) +-emit-bc /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Aliases.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Error.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/LinkingObjects.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/List.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Migration.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Object.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/ObjectSchema.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Optional.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Property.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Realm.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/RealmCollectionType.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/RealmConfiguration.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Results.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Schema.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/SortDescriptor.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/SwiftVersion.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Util.swift -target arm64-apple-ios8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk -I /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Products/Release-iphoneos -F /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Products/Release-iphoneos -application-extension -g -module-cache-path /Users/polquintana/Library/Developer/Xcode/DerivedData/ModuleCache -serialize-debugging-options -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-generated-files.hmap -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-own-target-headers.hmap -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-project-headers.hmap -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Products/Release-iphoneos/include -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/DerivedSources/arm64 -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/DerivedSources -Xcc -DREALM_HAVE_CONFIG -Xcc -D__ASSERTMACROS__ -Xcc -working-directory/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa -emit-module-doc-path /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/RealmSwift.swiftdoc -O -module-name RealmSwift -emit-module-path /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/RealmSwift.swiftmodule -emit-objc-header-path /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/RealmSwift-Swift.h -serialize-diagnostics-path /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Aliases.dia -emit-dependencies-path /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Aliases.d -num-threads 4 -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Aliases.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Error.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/LinkingObjects.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/List.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Migration.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Object.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/ObjectSchema.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Optional.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Property.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Realm.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/RealmCollectionType.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/RealmConfiguration.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Results.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Schema.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/SortDescriptor.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/SwiftVersion.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/arm64/Util.bc -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift $NSDecimal$_exponent$getter -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa $NSDecimal$_exponent$setter $NSDecimal$_length$getter $NSDecimal$_length$setter @@ -270,15 +277,13 @@ $NSDecimal$_isCompact$getter $NSDecimal$_isCompact$setter $NSDecimal$_reserved$getter $NSDecimal$_reserved$setter -Apple Swift version 2.2 (swiftlang-703.0.18.1 clang-703.0.29) +Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +_TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_14LinkingObjectsx___dT__XFo_oGS1_GS2_x___dT__ Aliases.swift -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift -_TFEsPs30RangeReplaceableCollectionType17_customRemoveLastfSiSb -_TFVs15EmptyCollectionCfT_GS_x_ +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift +_TZFsoi2eeurFTGSqx_Vs26_OptionalNilComparisonType_Sb _TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ _TFVs15ContiguousArrayg5countSi -_TFSp14initializeFromfTGSpx_5countSi_T_ -_TFVs22_ContiguousArrayBufferg5ownerPs9AnyObject_ _TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ _TFVs22_ContiguousArrayBufferg10startIndexSi _TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb @@ -308,12 +313,18 @@ _TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5I _TFVs14_IgnorePointerCfT_GS_x_ _TFSa16_copyToNewBufferfSiT_ _TFSa36_reserveCapacityAssumingUniqueBufferfSiT_ +_TFVs22_ContiguousArrayBuffers5countSi _TFVs12_ArrayBuffers5countSi _TFVs12_ArrayBufferg19firstElementAddressGSpx_ _TFSa37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ _TFEsPs14_Incrementable17_successorInPlacefT_T_ _TFs10_expectEnduRxs14CollectionTyperFTwx5Indexx_T_ _TFs34_copyCollectionToNativeArrayBufferuRxs14CollectionTyperFxGVs22_ContiguousArrayBufferWx9Generator7Element__ +_TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_4Listx___dT__XFo_oGS1_GS2_x___dT__ +_TFEsPs30RangeReplaceableCollectionType17_customRemoveLastfSiSb +_TFVs15EmptyCollectionCfT_GS_x_ +_TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx___dT__XFo_oGS1_GS2_x___dT__ +_TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_7Resultsx___dT__XFo_oGS1_GS2_x___dT__ init _TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraTypeCft12arrayLiteralGSawx7Element__x == @@ -428,6 +439,7 @@ prefixThrough suffixFrom prefixUpTo _addNotificationBlock +addNotificationBlock setValue valueForKeyPath valueForKey @@ -437,22 +449,24 @@ max min sorted indexOf +invalidated.get realm.get _TIFC10RealmSwift7Results6sortedFTSS9ascendingSb_GS0_x_A0_ Results.swift objectTypes.materialize inMemoryIdentifier.materialize -path.materialize -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A5_ -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A3_ -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A2_ -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A1_ +fileURL.materialize +_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A6_ +_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A5_ +_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A3_ +_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A2_ +_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A1_ defaultConfiguration.materialize next hashValue.get _TTWSSs9EquatablesZFS_oi2eefTxx_Sb _TTSg5O10RealmSwift12NotificationS0_s16RawRepresentableS__SSSSs9Equatables___TZFsoi2eeuRxs16RawRepresentablewx8RawValues9EquatablerFTxx_Sb -_TIFC10RealmSwift5Realm15writeCopyToPathFzTSS13encryptionKeyGSqCSo6NSData__T_A0_ +_TIFC10RealmSwift5Realm14writeCopyToURLFzTCSo5NSURL13encryptionKeyGSqCSo6NSData__T_A0_ Realm.swift _TIFC10RealmSwift5Realm13dynamicCreateFTSS5valuePs9AnyObject_6updateSb_CS_13DynamicObjectA1_ _TIFC10RealmSwift5Realm13dynamicCreateFTSS5valuePs9AnyObject_6updateSb_CS_13DynamicObjectA0_ @@ -460,7 +474,6 @@ _TIFC10RealmSwift5Realm6createuRxCS_6ObjectrFTMx5valuePs9AnyObject_6updateSb_xA1 _TIFC10RealmSwift5Realm6createuRxCS_6ObjectrFTMx5valuePs9AnyObject_6updateSb_xA0_ _TIFC10RealmSwift5Realm3adduRxs12SequenceTypeWx9Generator7Element_CS_6ObjectrFTx6updateSb_T_A0_ _TIFC10RealmSwift5Realm3addFTCS_6Object6updateSb_T_A0_ -_TIFC10RealmSwift5RealmcFzT13configurationVS0_13Configuration_S0_A_ _TIFC10RealmSwift13RealmOptionalcFTGSqx__GS0_x_A_ Optional.swift subscript.materialize @@ -484,20 +497,19 @@ Migration.swift _TTRXFo_oXFo_oCSo12RLMMigrationdVs6UInt64_dT___oXFo_oC10RealmSwift9MigrationdS0__dT__zoPs9ErrorType__XFo_iXFo_iTS_S0___iT___iXFo_iT9migrationS2_16oldSchemaVersionS0___iT__zoPS3___ _TFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_ _TTSg5SSSSs9Equatables___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb -_TTSg5SSSSs9Equatables___TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb -path.set -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A4_ -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A0_ +_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A4_ +_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A0_ _TFSSCfT21_builtinStringLiteralBp8byteSizeBw7isASCIIBi1__SS _TTSf4n_n_n_d___TFSSCfT21_builtinStringLiteralBp8byteSizeBw7isASCIIBi1__SS _TMaCSo21RLMRealmConfiguration _TTSg5FTCSo12RLMMigrationVs6UInt64_T__FT9migrationC10RealmSwift9Migration16oldSchemaVersionS0__T____TFSq3mapurfzFzxqd__GSqqd___ fromRLMRealmConfiguration +_TTSg5SSSSs9Equatables___TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb +fileURL.set defaultConfiguration.get -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A_ +_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A_ _TIF10RealmSwift12migrateRealmFTVCS_5Realm13Configuration_GSqCSo7NSError_A_ -_TIF10RealmSwift19schemaVersionAtPathFTSS13encryptionKeyGSqCSo6NSData_5errorGVs33AutoreleasingUnsafeMutablePointerGSqCSo7NSError___GSqVs6UInt64_A1_ -_TIF10RealmSwift19schemaVersionAtPathFTSS13encryptionKeyGSqCSo6NSData_5errorGVs33AutoreleasingUnsafeMutablePointerGSqCSo7NSError___GSqVs6UInt64_A0_ +_TIF10RealmSwift18schemaVersionAtURLFzTCSo5NSURL13encryptionKeyGSqCSo6NSData__Vs6UInt64A0_ removeAll removeRange removeFirst @@ -510,11 +522,13 @@ reserveCapacity replaceRange _TIFC10RealmSwift4List6sortedFTSS9ascendingSb_GCS_7Resultsx_A0_ List.swift +_TIFC10RealmSwift14LinkingObjects6sortedFTSS9ascendingSb_GCS_7Resultsx_A0_ +LinkingObjects.swift _code.get rlmError.get _domain.get _TFSig9hashValueSi -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Aliases.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Aliases.swift __swift_memcpy1_1 __swift_memcpy_array1_1 __swift_memmove_array1_1 @@ -535,76 +549,78 @@ _TWaO10RealmSwift5Errors9ErrorTypeS_ _TWaO10RealmSwift5Errors8HashableS_ ~= _TZFsoi2eeFTSSSS_Sb -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Error.swift -_TToFC10RealmSwift8ListBaseg11descriptionSS -_TToFC10RealmSwift8ListBaseg5countSi -_TToFC10RealmSwift8ListBasecfT5arrayGSQCSo8RLMArray__GSQS0__ -_TToFC10RealmSwift8ListBasecfT_S0_ -_TFFC10RealmSwift4Listg5realmGSqCS_5Realm_U_FCSo8RLMRealmS1_ -_TToFC10RealmSwift4Listg11invalidatedSb -_TToFC10RealmSwift4ListcfT_GS0_x_ -_TToFC10RealmSwift4List11valueForKeyfSSGSqPs9AnyObject__ -_TToFC10RealmSwift4List15valueForKeyPathfSSGSqPs9AnyObject__ -_TToFC10RealmSwift4List8setValuefTGSqPs9AnyObject__6forKeySS_T_ +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Error.swift +_TToFC10RealmSwift18LinkingObjectsBaseg15objectClassNameSS +_TToFC10RealmSwift18LinkingObjectsBaseg12propertyNameSS +_TMaCSo10RLMResults +_TToFC10RealmSwift18LinkingObjectsBase27countByEnumeratingWithStatefTGSpVSC22NSFastEnumerationState_7objectsGVs33AutoreleasingUnsafeMutablePointerGSqPs9AnyObject___5countSi_Si +_TToFC10RealmSwift18LinkingObjectsBasecfT_S0_ +_TToFC10RealmSwift14LinkingObjectsg11invalidatedSb +_TToFC10RealmSwift14LinkingObjectsg5countSi +_TToFC10RealmSwift14LinkingObjectsg11descriptionSS +_TToFC10RealmSwift14LinkingObjects11valueForKeyfSSGSqPs9AnyObject__ +_TToFC10RealmSwift14LinkingObjects15valueForKeyPathfSSGSqPs9AnyObject__ +_TToFC10RealmSwift14LinkingObjects8setValuefTGSqPs9AnyObject__6forKeySS_T_ _TFC10RealmSwift7ResultsCfCSo10RLMResultsGS0_x_ -_TFFC10RealmSwift4List6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrFqd__GCS_7Resultsx_U_FS4_Ps9AnyObject_ +_TFFC10RealmSwift14LinkingObjects6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrFqd__GCS_7Resultsx_U_FS4_Ps9AnyObject_ _TTRG__RxC10RealmSwift6Objectd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrXFo_oS4__oPs9AnyObject_zoPs9ErrorType__XFo_iS4__iPS5__zoPS6___ -_TToFC10RealmSwift4List13removeAtIndexfSiT_ -_TToFC10RealmSwift4List10removeLastfT_T_ -_TToFC10RealmSwift4List9removeAllfT_T_ -_TToFC10RealmSwift4List4movefT4fromSi2toSi_T_ -_TToFC10RealmSwift4List4swapfTSiSi_T_ -_TTRXFo_oCSo8RLMArrayoCSo7NSError_dT__XFdCb_dS_dS0__dT__ +_TFFC10RealmSwift14LinkingObjects20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TZFO10RealmSwift21RealmCollectionChange8fromObjcfTx6changeGSqCSo19RLMCollectionChange_5errorGSqCSo7NSError__GS0_x_ +_TTRXFo_oGSqCSo10RLMResults_oGSqCSo19RLMCollectionChange_oGSqCSo7NSError__dT__XFdCb_dGSqS__dGSqS0__dGSqS1___dT__ _TFC10RealmSwift12RLMGeneratorCfT10collectionPSo13RLMCollection__GS0_x_ -_TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ -_TFEsPs12SequenceType7reversefT_GSaWx9Generator7Element__ -_TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TFFC10RealmSwift14LinkingObjects21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ _TTSg5SSSSs10Streamables___TFs27_toStringReadOnlyStreamableuRxs10StreamablerFxSS -_TFs4swapurFTRxRx_T_ -_TFSaap9subscriptFSix -_TFVs17IndexingGeneratorCfxGS_x_ +_TTSg5SS___TFSa9_getCountfT_Si _TTSf4n_gs___TF10RealmSwift21throwForNegativeIndexFTSi13parameterNameSS_T_ _TMaGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__ _TPA__TTRG__RxC10RealmSwift6Objectd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrXFo_oS4__oPs9AnyObject_zoPs9ErrorType__XFo_iS4__iPS5__zoPS6___ -_TPA__TFFC10RealmSwift4List20addNotificationBlockFFGS0_x_T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayCSo7NSError_T_ +_TPA__TFFC10RealmSwift14LinkingObjects20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ block_copy_helper block_destroy_helper -_TPA__TFFC10RealmSwift4List21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayS2__T_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_7Element -_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_ -_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequencePs9Indexable_ -_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequencePs12SequenceType_ -_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_9Generator -_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_9GeneratorPs13GeneratorType_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_11SubSequence -get_field_types_ListBase -get_field_types_List -create_generic_metadata_List -_TMaGCs23_ContiguousArrayStorageSS_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_9Generator -_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s9IndexableS_8_Element -block_destroy_helper.8 -block_copy_helper.7 -_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_9GeneratorPs13GeneratorType_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequence -L_selector_data(initWithArray:) -L_selector(initWithArray:) -L_selector_data(allocWithZone:) -L_selector(allocWithZone:) -L_selector_data(init) -L_selector(init) +_TPA__TFFC10RealmSwift14LinkingObjects21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_S_19RealmCollectionTypeS_7Element +_TWIuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_S_19RealmCollectionTypeS_ +_TWTuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_11SubSequencePs9Indexable_ +_TWTuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_11SubSequencePs12SequenceType_ +_TWIuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_ +_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s12SequenceTypeS_9Generator +_TWTuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s12SequenceTypeS_9GeneratorPs13GeneratorType_ +_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s12SequenceTypeS_11SubSequence +get_field_types_LinkingObjectsBase +get_field_types_LinkingObjects +create_generic_metadata_LinkingObjects +_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_9Generator +_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s9IndexableS_8_Element +block_destroy_helper.6 +block_copy_helper.5 +_TWTuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_9GeneratorPs13GeneratorType_ +_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_11SubSequence +L_selector_data(countByEnumeratingWithState:objects:count:) +L_selector(countByEnumeratingWithState:objects:count:) +_TMLCSo10RLMResults +L_selector_data(emptyDetachedResults) +L_selector(emptyDetachedResults) +L_selector_data(object) +L_selector(object) L_selector_data(dealloc) L_selector(dealloc) +L_selector_data(isAttached) +L_selector(isAttached) L_selector_data(realm) L_selector(realm) L_selector_data(isInvalidated) L_selector(isInvalidated) L_selector_data(className) L_selector(className) -L_selector_data(initWithObjectClassName:) -L_selector(initWithObjectClassName:) +L_selector_data(init) +L_selector(init) +_TMLGCs23_ContiguousArrayStorageSS_ +L_selector_data(objectClassName) +L_selector(objectClassName) +L_selector_data(initWithPattern:options:error:) +L_selector(initWithPattern:options:error:) +L_selector_data(stringByReplacingMatchesInString:options:range:withTemplate:) +L_selector(stringByReplacingMatchesInString:options:range:withTemplate:) L_selector_data(indexOfObject:) L_selector(indexOfObject:) L_selector_data(indexOfObjectWithPredicate:) @@ -617,8 +633,6 @@ _PROTOCOL__TtPs9AnyObject_ L_selector(predicateWithFormat:argumentArray:) L_selector_data(objectAtIndexedSubscript:) L_selector(objectAtIndexedSubscript:) -L_selector_data(setObject:atIndexedSubscript:) -L_selector(setObject:atIndexedSubscript:) L_selector_data(firstObject) L_selector(firstObject) L_selector_data(lastObject) @@ -640,68 +654,135 @@ _TWLGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__uRxs9IndexablerGS_x_ _TMLGVs10ArraySliceV10RealmSwift14SortDescriptor_ L_selector_data(sortedResultsUsingDescriptors:) L_selector(sortedResultsUsingDescriptors:) -L_selector_data(predicateWithValue:) -L_selector(predicateWithValue:) -L_selector_data(addObject:) -L_selector(addObject:) -L_selector_data(insertObject:atIndex:) -L_selector(insertObject:atIndex:) -L_selector_data(removeObjectAtIndex:) -L_selector(removeObjectAtIndex:) -L_selector_data(removeLastObject) -L_selector(removeLastObject) -L_selector_data(removeAllObjects) -L_selector(removeAllObjects) -L_selector_data(replaceObjectAtIndex:withObject:) -L_selector(replaceObjectAtIndex:withObject:) -L_selector_data(moveObjectAtIndex:toIndex:) -L_selector(moveObjectAtIndex:toIndex:) -L_selector_data(exchangeObjectAtIndex:withObjectAtIndex:) -L_selector(exchangeObjectAtIndex:withObjectAtIndex:) +L_selector_data(minOfProperty:) +L_selector(minOfProperty:) +L_selector_data(maxOfProperty:) +L_selector(maxOfProperty:) +L_selector_data(sumOfProperty:) +L_selector(sumOfProperty:) +L_selector_data(averageOfProperty:) +L_selector(averageOfProperty:) +_TMLCSo8NSNumber block_descriptor L_selector_data(addNotificationBlock:) L_selector(addNotificationBlock:) -block_descriptor.9 -_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_ -L_selector_data(descriptionWithMaxDepth:) -_METACLASS_DATA__TtC10RealmSwift8ListBase -_INSTANCE_METHODS__TtC10RealmSwift8ListBase -_PROPERTIES__TtC10RealmSwift8ListBase -_DATA__TtC10RealmSwift8ListBase -_TWoFC10RealmSwift8ListBaseP33_027551CC6B6B2DBBB6CF4A740CB6E5D623descriptionWithMaxDepthfSuSS -_TMfC10RealmSwift8ListBase +block_descriptor.7 +_TWGuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_S_19RealmCollectionTypeS_ +_TWGuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_ +_TWGuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s12SequenceTypeS_ +_PROTOCOL_NSFastEnumeration +l_OBJC_LABEL_PROTOCOL_$_NSFastEnumeration +l_OBJC_PROTOCOL_REFERENCE_$_NSFastEnumeration +L_selector_data(propertyName) +_TWvdvC10RealmSwift18LinkingObjectsBaseP33_25CFEE8474EDA10420AA87D5D977CE2216cachedRLMResultsGSqCSo10RLMResults_ +_TWvdvC10RealmSwift18LinkingObjectsBaseP33_25CFEE8474EDA10420AA87D5D977CE226objectGSqCSo19RLMWeakObjectHandle_ +_TWvdvC10RealmSwift18LinkingObjectsBaseP33_25CFEE8474EDA10420AA87D5D977CE228propertyGSqCSo11RLMProperty_ +L_selector_data(attachToObject:property:) +L_selector_data(rlmResults) +L_selector_data(initFromClassName:property:) +L_selector_data(.cxx_destruct) +_PROTOCOLS__TtC10RealmSwift18LinkingObjectsBase +_METACLASS_DATA__TtC10RealmSwift18LinkingObjectsBase +_INSTANCE_METHODS__TtC10RealmSwift18LinkingObjectsBase +_PROTOCOLS__TtC10RealmSwift18LinkingObjectsBase.8 +_IVARS__TtC10RealmSwift18LinkingObjectsBase +_PROPERTIES__TtC10RealmSwift18LinkingObjectsBase +_DATA__TtC10RealmSwift18LinkingObjectsBase +_TWoFC10RealmSwift18LinkingObjectsBasegP33_25CFEE8474EDA10420AA87D5D977CE2216cachedRLMResultsGSqCSo10RLMResults_ +_TWoFC10RealmSwift18LinkingObjectsBasesP33_25CFEE8474EDA10420AA87D5D977CE2216cachedRLMResultsGSqCSo10RLMResults_ +_TWoFC10RealmSwift18LinkingObjectsBasemP33_25CFEE8474EDA10420AA87D5D977CE2216cachedRLMResultsGSqCSo10RLMResults_ +_TWoFC10RealmSwift18LinkingObjectsBasegP33_25CFEE8474EDA10420AA87D5D977CE226objectGSqCSo19RLMWeakObjectHandle_ +_TWoFC10RealmSwift18LinkingObjectsBasesP33_25CFEE8474EDA10420AA87D5D977CE226objectGSqCSo19RLMWeakObjectHandle_ +_TWoFC10RealmSwift18LinkingObjectsBasemP33_25CFEE8474EDA10420AA87D5D977CE226objectGSqCSo19RLMWeakObjectHandle_ +_TWoFC10RealmSwift18LinkingObjectsBasegP33_25CFEE8474EDA10420AA87D5D977CE228propertyGSqCSo11RLMProperty_ +_TWoFC10RealmSwift18LinkingObjectsBasesP33_25CFEE8474EDA10420AA87D5D977CE228propertyGSqCSo11RLMProperty_ +_TWoFC10RealmSwift18LinkingObjectsBasemP33_25CFEE8474EDA10420AA87D5D977CE228propertyGSqCSo11RLMProperty_ +_TMfC10RealmSwift18LinkingObjectsBase L_selector_data(invalidated) -L_selector_data(removeAtIndex:) -L_selector_data(removeLast) -L_selector_data(removeAll) -L_selector_data(moveFrom:to:) -L_selector_data(swap::) -_INSTANCE_METHODS__TtC10RealmSwift4List -_PROPERTIES__TtC10RealmSwift4List +_INSTANCE_METHODS__TtC10RealmSwift14LinkingObjects +_PROPERTIES__TtC10RealmSwift14LinkingObjects got._TMp10RealmSwift19RealmCollectionType -got._TMps30RangeReplaceableCollectionType got._TMps14CollectionType got._TMps9Indexable got._TMps12SequenceType -field_type_vector_ListBase -L_selector_data(getObjects:range:) -L_selector(getObjects:range:) -L_selector_data(objectAtIndex:) -L_selector(objectAtIndex:) +field_type_vector_LinkingObjectsBase +_TMLGSqCSo10RLMResults_ +_TMLGSqCSo19RLMWeakObjectHandle_ +_TMLCSo19RLMWeakObjectHandle +_TMLGSqCSo11RLMProperty_ +_TMLCSo11RLMProperty +L_selector_data(initWithObject:) +L_selector(initWithObject:) L_selector_data(sortDescriptorWithProperty:ascending:) L_selector(sortDescriptorWithProperty:ascending:) -_TMLGCs23_ContiguousArrayStorageSS_ -L_selector_data(objectClassName) -L_selector(objectClassName) -L_selector(descriptionWithMaxDepth:) -L_selector_data(initWithPattern:options:error:) -L_selector(initWithPattern:options:error:) -L_selector_data(stringByReplacingMatchesInString:options:range:withTemplate:) -L_selector(stringByReplacingMatchesInString:options:range:withTemplate:) +_PROTOCOL_INSTANCE_METHODS_NSFastEnumeration +_PROTOCOL_METHOD_TYPES_NSFastEnumeration objc_classes +_TTSg5VSC26NSRegularExpressionOptions___TFSag8endIndexSi +_TTSg5VSC26NSRegularExpressionOptions___TFSag10startIndexSi +_TTSg5VSC26NSRegularExpressionOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator +_TTSg5GSaVSC26NSRegularExpressionOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ +_TTSg5VSC26NSRegularExpressionOptions___TFSag9subscriptFSix +_TTSg5VSC17NSMatchingOptions___TFSag8endIndexSi +_TTSg5VSC17NSMatchingOptions___TFSag10startIndexSi +_TTSg5VSC17NSMatchingOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator +_TTSg5GSaVSC17NSMatchingOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ +_TTSg5VSC17NSMatchingOptions___TFSag9subscriptFSix +_TTSg5Vs18_StringBufferIVars_Vs6UInt16___TFVs11_HeapBufferg6_valueGSpx_ +_TTSf4s_n_n___TFVs13_StringBuffer4growfTGVs5RangeGSPVs7RawByte__12newUsedCountSi_Sb +_TFVs13_StringBufferg8capacitySi +_TMaGCs18_HeapBufferStorageVs18_StringBufferIVarsVs6UInt16_ +_TTSf4n_n_n_d___TFVs13_StringBufferCfT8capacitySi11initialSizeSi12elementWidthSi_S_ +_TFFVs11_StringCoreg11cocoaBufferGSqPs9AnyObject__U_FPS0__PS0__ +_TFVs11_StringCore12_copyInPlacefT7newSizeSi11newCapacitySi15minElementWidthSi_T_ +_TFVs11_StringCore14_claimCapacityfTSi15minElementWidthSi_TSiVs14COpaquePointer_ +_TTSf1cl57_TTRXFo_dVs6UInt16_dSbzoPs9ErrorType__XFo_iS__dSbzoPS0___XFo_dVs6UInt16_dSbzoPs9ErrorType___n___TTSg5GSRVs6UInt16_GSRS__s12SequenceTypes_GVs28UnsafeBufferPointerGeneratorS__GS1_S__s13GeneratorTypes_S__GVs5SliceGSRS______TFEsPs12SequenceType8containsfzFzWx9Generator7Element_SbSb +_TFFVs11_StringCore20representableAsASCIIFT_SbU_FVs6UInt16Sb +_TTSf4gs_n___TFVs11_StringCore6appendfS_T_ +_TTWSus21BitwiseOperationsTypesZFS_oi1ofTxx_x +rlmSortDescriptorValue.get +objectClassName.get +propertyName.get +attachTo +_TToFC10RealmSwift18LinkingObjectsBaseg10rlmResultsCSo10RLMResults +_TMaCSo11RLMProperty +_TMaGSqCSo11RLMProperty_ +_TMaCSo19RLMWeakObjectHandle +_TMaGSqCSo19RLMWeakObjectHandle_ +_TMaGSqCSo10RLMResults_ +_TMaC10RealmSwift18LinkingObjectsBase +_TWauRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s12SequenceTypeS_ +_TWauRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s9IndexableS_ +_TWauRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_ +_TWauRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_S_19RealmCollectionTypeS_ +deinit +_TMaCSo8NSNumber +_TMaGVs10ArraySliceV10RealmSwift14SortDescriptor_ +_TWlGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__uRxs9IndexablerGS_x_s13GeneratorTypes +_TWlGSaV10RealmSwift14SortDescriptor_urGSax_s9Indexables +_TWlGSaV10RealmSwift14SortDescriptor_urGSax_s12SequenceTypes +_TMaGSaV10RealmSwift14SortDescriptor_ +_TTSg5V10RealmSwift14SortDescriptor___TFSaCft12arrayLiteralGSax__GSax_ +_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5V10RealmSwift14SortDescriptor___TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5V10RealmSwift14SortDescriptor___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5V10RealmSwift14SortDescriptor___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5V10RealmSwift14SortDescriptor___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5V10RealmSwift14SortDescriptor___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TMaGCs23_ContiguousArrayStorageV10RealmSwift14SortDescriptor_ +_TTSg5V10RealmSwift14SortDescriptor___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg14_alignmentMaskSi +last.get +_TMaGSqCSo9RLMObject_ +_TIF10RealmSwift21throwForNegativeIndexFTSi13parameterNameSS_T_A0_ +_TMaPs9AnyObject_ +_TMaCSo9RLMObject +notFoundToNil _TTWVVSS9UTF16View5Indexs16ForwardIndexTypesFS1_10distanceTofxwx8Distance _TFSSg5utf16VSS9UTF16View _TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffer10getElementfSix @@ -711,8 +792,10 @@ _TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffers5countSi _TTSg5VSC17NSMatchingOptions___TFVs12_ArrayBuffers5countSi _TTSg5VSC17NSMatchingOptions___TFSaCfT19_uninitializedCountSi_GSax_ _TTSg5VSC17NSMatchingOptions___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ +_TTWSis14_IncrementablesFS_17_successorInPlacefT_T_ _TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffer10getElementfSix _TTSg5GSaVSC26NSRegularExpressionOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTWSis9EquatablesZFS_oi2eefTxx_Sb _TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBufferg5countSi _TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffers5countSi _TTSg5VSC26NSRegularExpressionOptions___TFVs12_ArrayBuffers5countSi @@ -720,7 +803,6 @@ _TTSg5VSC26NSRegularExpressionOptions___TFVs12_ArrayBufferCfT_GS_x_ _TTSg5VSC26NSRegularExpressionOptions___TFSaCfT19_uninitializedCountSi_GSax_ _TTSg5VSC26NSRegularExpressionOptions___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ _TFSSCft19stringInterpolationGSaSS__SS -_TTSg5SS___TFSa9_getCountfT_Si _TFSSCfT26stringInterpolationSegmentSS_SS _TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ _TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ @@ -729,6 +811,7 @@ _TTSg5SS___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayS _TTSg5SS___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ _TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg14_elementOffsetSi _TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TMaGCs23_ContiguousArrayStorageSS_ _TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ gsub _TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ @@ -738,31 +821,157 @@ _TTSg5SS___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ _TTSg5SS___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ _TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ _TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSf4s_s___TFFs26_unimplemented_initializerFTVs12StaticString8initNameS_4fileS_4lineSu6columnSu_T_U0_FGSRVs5UInt8_T_ +countByEnumeratingWithState +_TTSg5CSo10RLMResultsS_s9Equatable5Realm___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb +rlmResults.get +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/LinkingObjects.swift +_TToFC10RealmSwift8ListBaseg11descriptionSS +_TToFC10RealmSwift8ListBaseg5countSi +_TToFC10RealmSwift8ListBasecfT5arrayGSQCSo8RLMArray__GSQS0__ +_TToFC10RealmSwift8ListBasecfT_S0_ +_TFFC10RealmSwift4Listg5realmGSqCS_5Realm_U_FCSo8RLMRealmS1_ +_TToFC10RealmSwift4Listg11invalidatedSb +_TToFC10RealmSwift4ListcfT_GS0_x_ +_TToFC10RealmSwift4List11valueForKeyfSSGSqPs9AnyObject__ +_TToFC10RealmSwift4List15valueForKeyPathfSSGSqPs9AnyObject__ +_TToFC10RealmSwift4List8setValuefTGSqPs9AnyObject__6forKeySS_T_ +_TFFC10RealmSwift4List6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrFqd__GCS_7Resultsx_U_FS4_Ps9AnyObject_ +_TToFC10RealmSwift4List13removeAtIndexfSiT_ +_TToFC10RealmSwift4List10removeLastfT_T_ +_TToFC10RealmSwift4List9removeAllfT_T_ +_TToFC10RealmSwift4List4movefT4fromSi2toSi_T_ +_TToFC10RealmSwift4List4swapfTSiSi_T_ +_TFFC10RealmSwift4List20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo8RLMArray_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TTRXFo_oGSqCSo8RLMArray_oGSqCSo19RLMCollectionChange_oGSqCSo7NSError__dT__XFdCb_dGSqS__dGSqS0__dGSqS1___dT__ +_TFEsPs12SequenceType7reversefT_GSaWx9Generator7Element__ +_TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TFFC10RealmSwift4List21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo8RLMArray_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TFSaCfGVs12_ArrayBufferx_GSax_ +_TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TFs4swapurFTRxRx_T_ +_TFSaap9subscriptFSix +_TFVs17IndexingGeneratorCfxGS_x_ +_TFVs12_ArrayBufferg5countSi +_TFVs12_ArrayBufferg41_unconditionalMutableSubscriptBaseAddressGSpx_ +_TPA__TFFC10RealmSwift4List20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo8RLMArray_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TPA__TFFC10RealmSwift4List21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo8RLMArray_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_7Element +_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_ +_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequencePs9Indexable_ +_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequencePs12SequenceType_ +_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_ +_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_9Generator +_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_9GeneratorPs13GeneratorType_ +_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_11SubSequence +get_field_types_ListBase +get_field_types_List +create_generic_metadata_List +_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_9Generator +_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_ +_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s9IndexableS_8_Element +block_destroy_helper.8 +block_copy_helper.7 +_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_9GeneratorPs13GeneratorType_ +_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequence +L_selector_data(initWithArray:) +L_selector(initWithArray:) +L_selector_data(initWithObjectClassName:) +L_selector(initWithObjectClassName:) +L_selector_data(setObject:atIndexedSubscript:) +L_selector(setObject:atIndexedSubscript:) +L_selector_data(predicateWithValue:) +L_selector(predicateWithValue:) +L_selector_data(addObject:) +L_selector(addObject:) +L_selector_data(insertObject:atIndex:) +L_selector(insertObject:atIndex:) +L_selector_data(removeObjectAtIndex:) +L_selector(removeObjectAtIndex:) +L_selector_data(removeLastObject) +L_selector(removeLastObject) +L_selector_data(removeAllObjects) +L_selector(removeAllObjects) +L_selector_data(replaceObjectAtIndex:withObject:) +L_selector(replaceObjectAtIndex:withObject:) +L_selector_data(moveObjectAtIndex:toIndex:) +L_selector(moveObjectAtIndex:toIndex:) +L_selector_data(exchangeObjectAtIndex:withObjectAtIndex:) +L_selector(exchangeObjectAtIndex:withObjectAtIndex:) +block_descriptor.9 +_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_ +_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_ +_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_ +_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_ +L_selector_data(descriptionWithMaxDepth:) +_METACLASS_DATA__TtC10RealmSwift8ListBase +_INSTANCE_METHODS__TtC10RealmSwift8ListBase +_PROPERTIES__TtC10RealmSwift8ListBase +_DATA__TtC10RealmSwift8ListBase +_TWoFC10RealmSwift8ListBaseP33_027551CC6B6B2DBBB6CF4A740CB6E5D623descriptionWithMaxDepthfSuSS +_TMfC10RealmSwift8ListBase +L_selector_data(removeAtIndex:) +L_selector_data(removeLast) +L_selector_data(removeAll) +L_selector_data(moveFrom:to:) +L_selector_data(swap::) +_INSTANCE_METHODS__TtC10RealmSwift4List +_PROPERTIES__TtC10RealmSwift4List +got._TMps30RangeReplaceableCollectionType +field_type_vector_ListBase +L_selector_data(getObjects:range:) +L_selector(getObjects:range:) +L_selector_data(objectAtIndex:) +L_selector(objectAtIndex:) +L_selector(descriptionWithMaxDepth:) descriptionWithMaxDepth _TTRGRxC10RealmSwift6ObjectrXFo_oCSo8RLMRealm_oCS_5RealmzoPs9ErrorType__XFo_iS1__iS2_zoPS3___ -rlmSortDescriptorValue.get -_TFFC10RealmSwift4List20addNotificationBlockFFGS0_x_T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayCSo7NSError_T_ +_TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ +_TFSa9_getCountfT_Si _TFVs12_ArrayBuffer28isUniquelyReferencedOrPinnedfT_Sb _TFVs12_ArrayBuffer38isMutableAndUniquelyReferencedOrPinnedfT_Sb +_TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TFs30_isBridgedVerbatimToObjectiveCurFMxSb +_TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TFVs20ManagedBufferPointerg19_allocatedByteCountSi +_TFVs20ManagedBufferPointerg21allocatedElementCountSi _TFVs12_ArrayBufferg21needsElementTypeCheckSb +_TFVs12_ArrayBufferCfT7storageGVs14_BridgeStorageCs27_ContiguousArrayStorageBasePs16_NSArrayCoreType___GS_x_ +_TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___ _TFVs12_ArrayBuffer18_typeCheckSlowPathfSiT_ _TFVs12_ArrayBuffer10_typeCheckfGVs5RangeSi_T_ +_TFSp14initializeFromfTGSpx_5countSi_T_ +_TFVs22_ContiguousArrayBufferg5ownerPs9AnyObject_ _TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ _TFVs12_ArrayBufferg10startIndexSi _TZFSa11_copyBufferfRGVs12_ArrayBufferx_T_ _TFSa29_makeMutableAndUniqueOrPinnedfT_T_ +_TFVs12_ArrayBufferg21deferredTypeCheckMaskSi _TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TFVs20ManagedBufferPointerg13_valuePointerGSpx_ _TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ _TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ _TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken _TFSa22_checkSubscript_nativefSiT_ -_TFVs12_ArrayBufferg41_unconditionalMutableSubscriptBaseAddressGSpx_ +_TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TFVs20ManagedBufferPointerg15_elementPointerGSpq__ _TFSa18_getElementAddressfSiGSpx_ +_TFs25_isClassOrObjCExistentialurFMxSb +_TFVs12_ArrayBufferg9_isNativeSb +_TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ _TFVs12_ArrayBufferg5ownerPs9AnyObject_ +_TZFVs20ManagedBufferPointer28_sanityCheckValidBufferClassfTPMPs9AnyObject_8creatingSb_T_ +_TIZFVs20ManagedBufferPointer28_sanityCheckValidBufferClassFTPMPs9AnyObject_8creatingSb_T_A0_ +_TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ +_TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ +_TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase _TFVs12_ArrayBufferg11nativeOwnerPs9AnyObject_ _TFSa33_getOwnerWithSemanticLabel_nativefT_Bo _TFSa16_getOwner_nativefT_Bo -_TFFC10RealmSwift4List21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayS2__T_ _TMaC10RealmSwift8ListBase _TWauRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_ _TWauRxC10RealmSwift6ObjectrGCS_4Listx_s9IndexableS_ @@ -770,44 +979,14 @@ _TWauRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_ _TWauRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_ _TWauRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_ _TTSg5SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si___TFVs14RangeGenerator4nextfT_GSqx_ -_TTWSis9EquatablesZFS_oi2eefTxx_Sb -_TTWSis14_IncrementablesFS_17_successorInPlacefT_T_ -deinit -addNotificationBlock swap move replace removeLast -_TMaGVs10ArraySliceV10RealmSwift14SortDescriptor_ -_TWlGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__uRxs9IndexablerGS_x_s13GeneratorTypes -_TWlGSaV10RealmSwift14SortDescriptor_urGSax_s9Indexables -_TWlGSaV10RealmSwift14SortDescriptor_urGSax_s12SequenceTypes -_TMaGSaV10RealmSwift14SortDescriptor_ -_TTSg5V10RealmSwift14SortDescriptor___TFSaCft12arrayLiteralGSax__GSax_ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5V10RealmSwift14SortDescriptor___TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5V10RealmSwift14SortDescriptor___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5V10RealmSwift14SortDescriptor___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5V10RealmSwift14SortDescriptor___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ -_TTSg5V10RealmSwift14SortDescriptor___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TMaGCs23_ContiguousArrayStorageV10RealmSwift14SortDescriptor_ -_TTSg5V10RealmSwift14SortDescriptor___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg14_alignmentMaskSi -last.get subscript.set -_TIF10RealmSwift21throwForNegativeIndexFTSi13parameterNameSS_T_A0_ -_TMaPs9AnyObject_ -_TMaCSo9RLMObject -notFoundToNil -invalidated.get _TPA__TTRGRxC10RealmSwift6ObjectrXFo_oCSo8RLMRealm_oCS_5RealmzoPs9ErrorType__XFo_iS1__iS2_zoPS3___ _TTSg5CSo8RLMRealm_C10RealmSwift5Realm___TFSq3mapurfzFzxqd__GSqqd___ -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/List.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/List.swift _TTRXFo_oGSqCSo9RLMObject_oGSqS___dT__XFdCb_dGSqS__dGSqS___dT__ _TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_ _TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__ @@ -821,14 +1000,13 @@ get_field_types_Migration _TMaCSo15RLMObjectSchema _TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBuffer19_getElementSlowPathfSiPs9AnyObject_ _TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__ -objectdestroy.7 block_destroy_helper.10 _TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__ block_copy_helper.9 -L_selector_data(schemaVersionAtPath:encryptionKey:error:) -L_selector(schemaVersionAtPath:encryptionKey:error:) -L_selector_data(setPath:) -L_selector(setPath:) +L_selector_data(schemaVersionAtURL:encryptionKey:error:) +L_selector(schemaVersionAtURL:encryptionKey:error:) +L_selector_data(setInMemoryIdentifier:) +L_selector(setInMemoryIdentifier:) L_selector_data(setEncryptionKey:) L_selector(setEncryptionKey:) L_selector_data(setReadOnly:) @@ -837,19 +1015,22 @@ block_copy_helper.9 L_selector(setSchemaVersion:) L_selector_data(setMigrationBlock:) L_selector(setMigrationBlock:) +L_selector_data(setDeleteRealmIfMigrationNeeded:) +L_selector(setDeleteRealmIfMigrationNeeded:) L_selector_data(setCustomSchema:) L_selector(setCustomSchema:) L_selector_data(setDisableFormatUpgrade:) L_selector(setDisableFormatUpgrade:) L_selector_data(migrateRealm:) L_selector(migrateRealm:) -L_selector_data(setInMemoryIdentifier:) -L_selector(setInMemoryIdentifier:) +L_selector_data(initFileURLWithPath:) +L_selector(initFileURLWithPath:) +L_selector_data(setFileURL:) +L_selector(setFileURL:) L_selector_data(oldSchema) L_selector(oldSchema) L_selector_data(newSchema) L_selector(newSchema) -metadata.8 block_descriptor.11 L_selector_data(enumerateObjects:block:) L_selector(enumerateObjects:block:) @@ -857,6 +1038,8 @@ block_descriptor.11 L_selector(createObject:withValue:) L_selector_data(deleteDataForClassName:) L_selector(deleteDataForClassName:) +L_selector_data(renamePropertyForClass:oldName:newName:) +L_selector(renamePropertyForClass:oldName:newName:) _METACLASS_DATA__TtC10RealmSwift9Migration _IVARS__TtC10RealmSwift9Migration _DATA__TtC10RealmSwift9Migration @@ -897,27 +1080,30 @@ _TTSg5CSo15RLMObjectSchema___TFSag9subscriptFSix _TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ _TTSg5CSo15RLMObjectSchema___TFSag8endIndexSi _TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TMaGSqCSo9RLMObject_ _TFFC10RealmSwift9Migration9enumerateFTSSFT9oldObjectGSqCS_13DynamicObject_9newObjectGSqS1___T__T_U_FTGSqCSo9RLMObject_GSqS2___T_ _TMaCSo12RLMMigration _TMaC10RealmSwift9Migration +renamePropertyForClass deleteData delete create enumerate newSchema.get oldSchema.get +_TTSg5CSo5NSURLS_s9Equatable10Foundation___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb +_TFFVC10RealmSwift5Realm13Configurationg7fileURLGSqCSo5NSURL_U_FSSS2_ accessorMigrationBlock _TFFVC10RealmSwift5Realm13Configurationg16rlmConfigurationCSo21RLMRealmConfigurationU_FFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS4__T_ _TTRXFo_oXFo_oC10RealmSwift9MigrationdVs6UInt64_dT___oXFo_oCSo12RLMMigrationdS1__dT__zoPs9ErrorType__XFo_iXFo_iT9migrationS0_16oldSchemaVersionS1___iT___iXFo_iTS2_S1___iT__zoPS3___ -path.get +_TTSg5SS_CSo5NSURL___TFSq3mapurfzFzxqd__GSqqd___ +inMemoryIdentifier.get _TTSg5FT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T__FTCSo12RLMMigrationS1__T____TFSq3mapurfzFzxqd__GSqqd___ rlmConfiguration.get -inMemoryIdentifier.get +fileURL.get migrateRealm _TMaCSo8RLMRealm -schemaVersionAtPath -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Migration.swift +schemaVersionAtURL +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Migration.swift _TToFC10RealmSwift6ObjectcfT_S0_ _TToFC10RealmSwift6ObjectcfT5valuePs9AnyObject__S0_ _TToFC10RealmSwift6Objectg11invalidatedSb @@ -926,7 +1112,6 @@ _TToFC10RealmSwift6Objectg9classNameSS _TToZFC10RealmSwift6Object15objectUtilClassfSbPMPs9AnyObject_ _TToZFC10RealmSwift6Object10primaryKeyfT_GSqSS_ _TToZFC10RealmSwift6Object17ignoredPropertiesfT_GSaSS_ -_TFs15_arrayForceCastu0_rFGSax_GSaq__ _TToFC10RealmSwift6Objectg9subscriptFSSGSqPs9AnyObject__ _TToFC10RealmSwift6Objects9subscriptFSSGSqPs9AnyObject__ _TToFC10RealmSwift6Object7isEqualfGSqPs9AnyObject__Sb @@ -936,6 +1121,8 @@ _TFC10RealmSwift13DynamicObject15listForPropertyfCSo11RLMPropertyCSo11RLMListBas _TToFC10RealmSwift13DynamicObject15listForPropertyfCSo11RLMPropertyCSo11RLMListBase _TFC10RealmSwift13DynamicObject19optionalForPropertyfCSo11RLMPropertyCSo15RLMOptionalBase _TToFC10RealmSwift13DynamicObject19optionalForPropertyfCSo11RLMPropertyCSo15RLMOptionalBase +_TFC10RealmSwift13DynamicObject25linkingObjectsForPropertyfCSo11RLMPropertyGSqCS_18LinkingObjectsBase_ +_TToFC10RealmSwift13DynamicObject25linkingObjectsForPropertyfCSo11RLMPropertyGSqCS_18LinkingObjectsBase_ _TToFC10RealmSwift13DynamicObject20valueForUndefinedKeyfSSGSqPs9AnyObject__ _TToFC10RealmSwift13DynamicObject8setValuefTGSqPs9AnyObject__15forUndefinedKeySS_T_ _TToZFC10RealmSwift13DynamicObject28shouldIncludeInDefaultSchemafT_Sb @@ -944,16 +1131,9 @@ _TToFC10RealmSwift13DynamicObjectcfT5valuePs9AnyObject__S0_ _TToFC10RealmSwift13DynamicObjectcfT5realmCSo8RLMRealm6schemaCSo15RLMObjectSchema_S0_ _TToFC10RealmSwift13DynamicObjectcfT5valuePs9AnyObject_6schemaCSo9RLMSchema_S0_ _TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getGenericListPropertyNamesFPs9AnyObject_CSo7NSArrayU0_FT5labelGSqSS_5valueP__GSqSS_ -_TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb +_TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getLinkingObjectsPropertiesFPs9AnyObject_CSo12NSDictionaryU0_FT5labelGSqSS_5valueP__GSqTSSCS_18LinkingObjectsBase__ _TToFC10RealmSwift10ObjectUtilcfT_S0_ globalinit_33_47969F13D2F39044D14973F482FBAD86_func0 -_TFVs12_ArrayBuffer19requestNativeBufferfT_GSqGVs22_ContiguousArrayBufferx__ -_TFSaCfT20_immutableCocoaArrayPs16_NSArrayCoreType__GSax_ -_TFVs12_ArrayBuffer13_asCocoaArrayfT_Ps16_NSArrayCoreType_ -_TFVs22_ContiguousArrayBuffer30withUnsafeMutableBufferPointerurfzFzGSrx_qd__qd__ -_TFFs15_arrayForceCastu0_rFGSax_GSaq__U_FGSrQ0__T_ -_TFs19_bridgeToObjectiveCurFxGSqPs9AnyObject__ -_TFVs22_ContiguousArrayBuffer13_asCocoaArrayfT_Ps16_NSArrayCoreType_ _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__ _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TZFOs25_VariantDictionaryStorage24maybeGetFromCocoaStoragefTVs23_CocoaDictionaryStorage6forKeyx_GSqq__ @@ -961,17 +1141,22 @@ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TZFOs25_VariantDictionaryStorage24m _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ -_TFVs12_ArrayBufferg5countSi _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ _TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ _TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ _TTSg5SS_CSo15RLMOptionalBase___TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ +_TTSg5SS_GVs10DictionarySSSS____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ +_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ _TTSg5SS___TFSa16_copyToNewBufferfSiT_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa16_copyToNewBufferfSiT_ _TTSg5GVs12_ArrayBufferSS_GS_SS_s16_ArrayBufferTypes_SS_GVs17IndexingGeneratorGS_SS__GS1_GS_SS__s13GeneratorTypes_SS_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferSS_GS6_SS_s14CollectionTypes_GS1_GS6_SS__GS1_GS6_SS__S2_s_SS_SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_SS_GS6_SS_s9IndexablesGS6_SS_s12SequenceTypes_GS1_GS6_SS__GS1_GS6_SS__S2_s_SS_SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_SS__SS_SS_SS___TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ _TTSg5GVs22_ContiguousArrayBufferT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s16_ArrayBufferTypes_T5labelGSqSS_5valueP___GVs17IndexingGeneratorGS_T5labelGSqSS_5valueP____GS1_GS_T5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferT5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s14CollectionTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s9IndexablesGS6_T5labelGSqSS_5valueP___s12SequenceTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP____T5labelGSqSS_5valueP___T5labelGSqSS_5valueP___T5labelGSqSS_5valueP_____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5GVs12_ArrayBufferTSSC10RealmSwift18LinkingObjectsBase__GS_TSSS1___s16_ArrayBufferTypes_TSSS1___GVs17IndexingGeneratorGS_TSSS1____GS3_GS_TSSS1____s13GeneratorTypes_TSSS1___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferTSSS1___GS8_TSSS1___s14CollectionTypes_GS3_GS8_TSSS1____GS3_GS8_TSSS1____S4_s_TSSS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_TSSS1___GS8_TSSS1___s9IndexablesGS8_TSSS1___s12SequenceTypes_GS3_GS8_TSSS1____GS3_GS8_TSSS1____S4_s_TSSS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_TSSS1____TSSS1___TSSS1___TSSS1_____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ _TTSg5GVs22_ContiguousArrayBufferT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s16_ArrayBufferTypes_T5labelGSqSS_5valueP___GVs17IndexingGeneratorGS_T5labelGSqSS_5valueP____GS1_GS_T5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferT5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s14CollectionTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s9IndexablesGS6_T5labelGSqSS_5valueP___s12SequenceTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP____T5labelGSqSS_5valueP___T5labelGSqSS_5valueP___T5labelGSqSS_5valueP_____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ _TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray16_copyToNewBufferfSiT_ _TTSf4n_d___TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ @@ -996,17 +1181,25 @@ _TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferT5labelGSqSS_5valueP___GS_T5la _TTSf4s_n_n___TTSg5SS___TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ _TTSf4n_n_n_n_d___TTSg5GVs12_ArrayBufferSS_GS_SS_s16_ArrayBufferTypes_GVs14_IgnorePointerSS_GS1_SS_s20_PointerFunctionTypes_SS_GVs17IndexingGeneratorGS_SS__GS3_GS_SS__s13GeneratorTypes_SS_GVs12_SliceBufferSS_GS5_SS_s14CollectionTypes_GS3_GS5_SS__GS3_GS5_SS__S4_s_SS_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS5_SS_GS5_SS_s9IndexablesGS5_SS_s12SequenceTypes_GS3_GS5_SS__GS3_GS5_SS__S4_s_SS_SiSiS7_s_SiSiS8_s_SiSiS9_s_Si_GS5_SS__SS_SS_SS___TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ _TTSf4g_n___TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s12SequenceTypes_GVs17IndexingGeneratorGSaT5labelGSqSS_5valueP____GS0_GSaT5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___GVs10ArraySliceT5labelGSqSS_5valueP____SS___TFEsPs12SequenceType7flatMapurfzFzWx9Generator7Element_GSqqd___GSaqd___ +_TTSf4s_n_n___TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSf4n_n_n_n_d___TTSg5GVs12_ArrayBufferTSSC10RealmSwift18LinkingObjectsBase__GS_TSSS1___s16_ArrayBufferTypes_GVs14_IgnorePointerTSSS1___GS3_TSSS1___s20_PointerFunctionTypes_TSSS1___GVs17IndexingGeneratorGS_TSSS1____GS5_GS_TSSS1____s13GeneratorTypes_TSSS1___GVs12_SliceBufferTSSS1___GS7_TSSS1___s14CollectionTypes_GS5_GS7_TSSS1____GS5_GS7_TSSS1____S6_s_TSSS1___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS7_TSSS1___GS7_TSSS1___s9IndexablesGS7_TSSS1___s12SequenceTypes_GS5_GS7_TSSS1____GS5_GS7_TSSS1____S6_s_TSSS1___SiSiS9_s_SiSiS10_s_SiSiS11_s_Si_GS7_TSSS1____TSSS1___TSSS1___TSSS1_____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ +_TTSf4g_n___TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s12SequenceTypes_GVs17IndexingGeneratorGSaT5labelGSqSS_5valueP____GS0_GSaT5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___GVs10ArraySliceT5labelGSqSS_5valueP____TSSC10RealmSwift18LinkingObjectsBase____TFEsPs12SequenceType7flatMapurfzFzWx9Generator7Element_GSqqd___GSaqd___ _TTSf4g_n___TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage26migrateDataToNativeStoragefVs23_CocoaDictionaryStorageT_ _TTSf4g_n_n___TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E621getOptionalPropertiesFPs9AnyObject_CSo12NSDictionaryU_FTGVs10DictionarySSPS1___T5labelGSqSS_5valueP___GS3_SSPS1___ +_TTSf4n_d___TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ +_TTSf4g_d___TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TZFVs24_NativeDictionaryStorage9fromArrayfGSaTxq___GS_xq__ +_TTSf4g_d___TTSg5SSSSs8Hashables_SS___TZFVs24_NativeDictionaryStorage9fromArrayfGSaTxq___GS_xq__ +_TTSf4g_s_g___TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getLinkingObjectsPropertiesFPs9AnyObject_CSo12NSDictionaryU1_FTGVs10DictionarySSGS3_SSSS__TSSCS_18LinkingObjectsBase__GS3_SSGS3_SSSS__ +_TMaGCs17_AnyCollectionBoxT5labelGSqSS_5valueP___ +_TMaGCs20_AnyGeneratorBoxBaseT5labelGSqSS_5valueP___ +_TPA__TTRXFo_oGSqSS_iP__oGSqTSSC10RealmSwift18LinkingObjectsBase__zoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___iGSqTSSS0___zoPS1___ _TPA__TTRXFo_oGSqSS_iP__oGSqSS_zoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___iGSqSS_zoPS___ _TMaGCs28_NativeDictionaryStorageImplSSCSo15RLMOptionalBase_ _TMaGCs28_NativeDictionaryStorageImplSSGC10RealmSwift4ListCS0_13DynamicObject__ -_TPA__TFFs15_arrayForceCastu0_rFGSax_GSaq__U_FGSrQ0__T_ -objectdestroy.9 -_TPA__TTRG0_rXFo_dGSrq___dT_zoPs9ErrorType__XFo_dGSrq___iT_zoPS___ _TToZFC10RealmSwift6Object17indexedPropertiesfT_GSaSS_ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ L_selector_data(sharedSchema) L_selector(sharedSchema) L_selector_data(partialSharedSchema) @@ -1038,6 +1231,7 @@ _TWvdvC10RealmSwift13DynamicObjectP33_95A69397B44B27F7A8F436871D45D9E618optional L_selector_data(isEqual:) L_selector_data(listForProperty:) L_selector_data(optionalForProperty:) +L_selector_data(linkingObjectsForProperty:) _CLASS_METHODS_RealmSwiftObject _METACLASS_DATA_RealmSwiftObject _INSTANCE_METHODS_RealmSwiftObject @@ -1047,7 +1241,6 @@ _TMfC10RealmSwift6Object L_selector_data(valueForUndefinedKey:) L_selector_data(setValue:forUndefinedKey:) L_selector_data(shouldIncludeInDefaultSchema) -L_selector_data(.cxx_destruct) _CLASS_METHODS__TtC10RealmSwift13DynamicObject _METACLASS_DATA__TtC10RealmSwift13DynamicObject _INSTANCE_METHODS__TtC10RealmSwift13DynamicObject @@ -1057,11 +1250,14 @@ _TMfC10RealmSwift13DynamicObject L_selector_data(swiftVersion) L_selector_data(ignoredPropertiesForClass:) L_selector_data(indexedPropertiesForClass:) +L_selector_data(linkingObjectsPropertiesForClass:) L_selector_data(getGenericListPropertyNames:) L_selector_data(initializeListProperty:property:array:) L_selector_data(initializeOptionalProperty:property:) L_selector_data(getOptionalProperties:) L_selector_data(requiredPropertiesForClass:) +L_selector_data(getLinkingObjectsProperties:) +L_selector_data(initializeLinkingObjectsProperty:property:) _CLASS_METHODS_RealmSwiftObjectUtil _METACLASS_DATA_RealmSwiftObjectUtil _INSTANCE_METHODS_RealmSwiftObjectUtil @@ -1069,11 +1265,14 @@ _DATA_RealmSwiftObjectUtil _TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E612swiftVersionfT_CSo8NSString _TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E625ignoredPropertiesForClassfPMPs9AnyObject_GSqCSo7NSArray_ _TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E625indexedPropertiesForClassfPMPs9AnyObject_GSqCSo7NSArray_ +_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E632linkingObjectsPropertiesForClassfPMPs9AnyObject_GSqCSo12NSDictionary_ _TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getGenericListPropertyNamesfPs9AnyObject_CSo7NSArray _TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E622initializeListPropertyfTCSo13RLMObjectBase8propertyCSo11RLMProperty5arrayCSo8RLMArray_T_ _TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E626initializeOptionalPropertyfTCSo13RLMObjectBase8propertyCSo11RLMProperty_T_ _TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E621getOptionalPropertiesfPs9AnyObject_CSo12NSDictionary _TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E626requiredPropertiesForClassfPMPs9AnyObject_GSqCSo7NSArray_ +_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getLinkingObjectsPropertiesfPs9AnyObject_CSo12NSDictionary +_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E632initializeLinkingObjectsPropertyfTCSo13RLMObjectBase8propertyCSo11RLMProperty_T_ _TMfC10RealmSwift10ObjectUtil field_type_vector_ObjectUtil field_type_vector_DynamicObject @@ -1082,11 +1281,27 @@ _TMLGVs10DictionarySSCSo15RLMOptionalBase_ field_type_vector_Object _TMLP_ _TMLPs17CustomReflectable_ -_TMLGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__ _TMLGCs17_AnyCollectionBoxT5labelGSqSS_5valueP___ _TMLT5labelGSqSS_5valueP__ _TMLGSqSS_ _TMLGCs20_AnyGeneratorBoxBaseT5labelGSqSS_5valueP___ +_TMLGCs29_NativeDictionaryStorageOwnerSSGVs10DictionarySSSS__ +_TMLGVs10DictionarySSSS_ +_TMLTSSC10RealmSwift18LinkingObjectsBase_ +_TMLGCs23_ContiguousArrayStorageTSSSS__ +_TMLTSSSS_ +_TMLGCs29_NativeDictionaryStorageOwnerSSSS_ +_TMLGCs23_ContiguousArrayStorageT5labelGSqSS_5valueP___ +_PROTOCOL__TtPs17_NSStringCoreType_ +l_OBJC_LABEL_PROTOCOL_$__TtPs17_NSStringCoreType_ +l_OBJC_PROTOCOL_REFERENCE_$__TtPs17_NSStringCoreType_ +L_selector_data(objectForKey:) +L_selector(objectForKey:) +_TMLGCs28_NativeDictionaryStorageImplSSGVs10DictionarySSSS__ +_TMLGCs28_NativeDictionaryStorageImplSSSS_ +_TMLGCs23_ContiguousArrayStorageTSSC10RealmSwift18LinkingObjectsBase__ +_TMLPMP_ +_TMLGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__ _TMLGSqCSo8NSString_ _TMLCSo8NSString _TMLGSqCSo6NSDate_ @@ -1102,19 +1317,11 @@ _TMLGC10RealmSwift13RealmOptionalVs5Int64_ _TMLGC10RealmSwift13RealmOptionalSf_ _TMLGC10RealmSwift13RealmOptionalSd_ _TMLGC10RealmSwift13RealmOptionalSb_ -_TMLPMP_ _TMLCSo8NSObject L_selector_data(initWithName:reason:userInfo:) L_selector(initWithName:reason:userInfo:) L_selector_data(raise) L_selector(raise) -_PROTOCOL__TtPs17_NSStringCoreType_ -l_OBJC_LABEL_PROTOCOL_$__TtPs17_NSStringCoreType_ -l_OBJC_PROTOCOL_REFERENCE_$__TtPs17_NSStringCoreType_ -L_selector_data(objectForKey:) -L_selector(objectForKey:) -L_selector_data(countByEnumeratingWithState:objects:count:) -L_selector(countByEnumeratingWithState:objects:count:) _TMLGCs28_NativeDictionaryStorageImplSSPs9AnyObject__ L_selector_data(setProperty:) L_selector(setProperty:) @@ -1122,10 +1329,8 @@ _TMLGCs28_NativeDictionaryStorageImplSSPs9AnyObject__ L_selector(setObject:) L_selector_data(set_rlmArray:) L_selector(set_rlmArray:) -_TMLGCs23_ContiguousArrayStorageT5labelGSqSS_5valueP___ _TMLGCs28_NativeDictionaryStorageImplSSCSo15RLMOptionalBase_ _TMLGCs28_NativeDictionaryStorageImplSSGC10RealmSwift4ListCS0_13DynamicObject__ -metadata.10 _PROTOCOL__TtPs14_NSCopyingType_ l_OBJC_LABEL_PROTOCOL_$__TtPs14_NSCopyingType_ l_OBJC_PROTOCOL_REFERENCE_$__TtPs14_NSCopyingType_ @@ -1151,42 +1356,6 @@ _TMaTSuSuSuSuSu_ Object.swift _TMaGSpSu_ _TMaGVs33AutoreleasingUnsafeMutablePointerGSqPs9AnyObject___ -_TFOs17_ValueOrReferenceCurfMxS_ -_TFOs12_BridgeStyleCurfMxS_ -_TFs34_conditionallyBridgeFromObjectiveCurFTPs9AnyObject_Mx_GSqx_ -_TFs31_arrayConditionalBridgeElementsu0_rFGSax_GSqGSaq___ -_TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TFs30_isBridgedVerbatimToObjectiveCurFMxSb -_TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TFSa9_getCountfT_Si -_TFSrCfT5startGSpx_5countSi_GSrx_ -_TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TFFVs22_ContiguousArrayBuffer30withUnsafeMutableBufferPointerurFzFzGSrx_qd__qd__L_6$deferfT_T_ -_TFSrg11baseAddressGSpx_ -_TTRG0_rXFo_dGSrq___dT_zoPs9ErrorType__XFo_dGSrq___iT_zoPS___ -_TFVs12_ArrayBufferCfT7nsArrayPs16_NSArrayCoreType__GS_x_ -_TFVs12_ArrayBufferg9_isNativeSb -_TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ -_TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TFCs27_ContiguousArrayStorageBaseg17staticElementTypePMP_ -_TFVs22_ContiguousArrayBuffer24storesOnlyElementsOfTypeurfMqd__Sb -_TFs25_isClassOrObjCExistentialurFMxSb -_TZFVs20ManagedBufferPointer28_sanityCheckValidBufferClassfTPMPs9AnyObject_8creatingSb_T_ -_TIZFVs20ManagedBufferPointer28_sanityCheckValidBufferClassFTPMPs9AnyObject_8creatingSb_T_A0_ -_TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ -_TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ -_TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase -_TFVs12_ArrayBufferg21deferredTypeCheckMaskSi -_TFVs12_ArrayBuffer39downcastToBufferWithDeferredTypeCheckOfurfMqd__GS_qd___ -_TFVs12_ArrayBufferCfT7storageGVs14_BridgeStorageCs27_ContiguousArrayStorageBasePs16_NSArrayCoreType___GS_x_ -_TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___ _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_ _TTSg5GC10RealmSwift4ListCS_13DynamicObject____TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x @@ -1222,10 +1391,12 @@ _TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ _TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ listForProperty optionalForProperty +linkingObjectsForProperty _TF10RealmSwiftau20swiftLanguageVersionSS swiftVersion ignoredPropertiesForClass indexedPropertiesForClass +linkingObjectsPropertiesForClass _TTRXFo_oGSqSS_iP__oGSqSS_zoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___iGSqSS_zoPS___ _TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg19_allocatedByteCountSi _TTSg5SS___TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g8capacitySi @@ -1253,66 +1424,10 @@ _TTSg5SS___TFVs22_ContiguousArrayBufferg8capacitySi _TTSg5SS___TFVs22_ContiguousArrayBufferg5countSi _TTSg5SS___TFVs12_ArrayBuffer20isUniquelyReferencedfT_Sb _TTSg5SS___TFVs12_ArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TFVs17IndexingGeneratorCfxGS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer10getElementfSix -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg9subscriptFSix -_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x -_TTSg5T5labelGSqSS_5valueP_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ -_TTSg5T5labelGSqSS_5valueP_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken -_TTSg5T5labelGSqSS_5valueP_____TFSag9subscriptFSix -_TTSg5T5labelGSqSS_5valueP_____TFSag8endIndexSi -_TTSg5T5labelGSqSS_5valueP_____TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator _TTSg5SS___TFSa36_reserveCapacityAssumingUniqueBufferfSiT_ _TTSg5SS___TFSa6appendfxT_ _TTSg5SS___TFSa40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ -_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TMaGCs23_ContiguousArrayStorageT5labelGSqSS_5valueP___ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFSp18moveInitializeFromfTGSpx_5countSi_T_ -_TTSg5T5labelGSqSS_5valueP_____TFSp7destroyfSiT_ -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TTSg5T5labelGSqSS_5valueP_____TFSp14initializeFromfTGSpx_5countSi_T_ -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerlu5valuex -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg10startIndexSi -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__ -_TTSg5T5labelGSqSS_5valueP_____TFSp10initializefxT_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffers5countSi -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg8capacitySi -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg5countSi -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TTSg5T5labelGSqSS_5valueP_____TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArrayCfT_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray6appendfxT_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TTRXFo_oGSqSS_iP__dSbzoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___dSbzoPS___ _TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getGenericListPropertyNamesFPs9AnyObject_CSo7NSArrayU_FT5labelGSqSS_5valueP__Sb -_TTSg5GVs20AnyForwardCollectionT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s12SequenceTypes_GVs12AnyGeneratorT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s13GeneratorTypes_T5labelGSqSS_5valueP___GVs5SliceGS_T5labelGSqSS_5valueP_______TFEsPs12SequenceType6filterfzFzWx9Generator7Element_SbGSaWxS0_S1___ getGenericListPropertyNames initializeListProperty _TTSg5CSo15RLMOptionalBase___TFSp4movefT_x @@ -1351,29 +1466,7 @@ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage11up _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs10Dictionarys9subscriptFxGSqq__ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs10Dictionaryg9subscriptFxGSqq__ initializeOptionalProperty -_TZFVs6Mirror19_noSuperclassMirrorfT_GSqS__ -_TMaGSqPMP__ -_TFs19_isClassSuperMirrorFPMP_Sb -_TFEsPs11_MirrorType12_superMirrorfT_GSqPS___ -_TFFVs6MirrorcFT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_U_FT_GSqS__ -_TTRXFo_iT__iGSqVs6Mirror__XFo__oGSqS___ -_TPA__TTRXFo_iT__iGSqVs6Mirror__XFo__oGSqS___ -_TPA__TFFVs6MirrorcFT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_U_FT_GSqS__ -_TMaPMPs9AnyObject_ -_TWlGVs17IndexingGeneratorGVs5SliceVVs6Mirror14LegacyChildren__uRxs9IndexablerGS_x_s13GeneratorTypes -_TWlGVs5SliceVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_s12SequenceTypes -_TWlGVs17IndexingGeneratorVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_s13GeneratorTypes -_TWlGVs5SliceVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_S2_s -_TMaGVs17IndexingGeneratorGVs5SliceVVs6Mirror14LegacyChildren__ -_TMaGVs5SliceVVs6Mirror14LegacyChildren_ -_TMaGVs17IndexingGeneratorVVs6Mirror14LegacyChildren_ -_TMaGCs14_CollectionBoxVVs6Mirror14LegacyChildren_ -_TMaGCs21_RandomAccessIndexBoxSi_ -_TPA__TZFVs6Mirror19_noSuperclassMirrorfT_GSqS__ -_TTSf4n_n_n_d___TFVs6MirrorCfT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_ _TTSg5SS_Ps9AnyObject____TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ -_TFZFCs28_NativeDictionaryStorageImpl6createFSiGS_xq__U_FGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8_S1_ -_TTSg5Vs29_HashedContainerStorageHeader_Vs5UInt8___TFZFCs13ManagedBuffer6createFTSi12initialValueFGCs18ManagedProtoBufferxq__x_GS_xq__U_FTPs9AnyObject_FPS1__Si_Q_ _TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi _TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi _TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi @@ -1383,21 +1476,8 @@ _TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg41_initializedHashta _TMaGCs28_NativeDictionaryStorageImplSSPs9AnyObject__ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_ -__swift_memmove_array64_8 -__swift_memcpy_array64_8 -__swift_copy_outline_pointer -_TwalVSC28_SwiftNSFastEnumerationState -_TwTkVSC28_SwiftNSFastEnumerationState -__swift_memcpy64_8 -_TwCpVSC28_SwiftNSFastEnumerationState -_TwdeVSC28_SwiftNSFastEnumerationState -_TwprVSC28_SwiftNSFastEnumerationState -_TwCPVSC28_SwiftNSFastEnumerationState -_TwXXVSC28_SwiftNSFastEnumerationState -_TMaGSqPs9AnyObject__ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageg11_bucketMaskSi _TTSg5Ps9AnyObject____TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x -_TTSg5SS___TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_nextfSiSi _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_ @@ -1407,17 +1487,13 @@ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage20isUniquel _TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader _TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImpls6_countSi _TTSg5Ps9AnyObject____TFSp10initializefxT_ -_TTSg5SS___TFSp10initializefxT_ _TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg21_maxLoadFactorInverseSd _TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6_countSi _TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ _TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader _TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg9_capacitySi -_TMaPs17_NSStringCoreType_ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage7_bucketfxSi -_TTWSSs8HashablesFS_g9hashValueSi -_TTSf4s___TFSSg9hashValueSi _TMaCSo8NSObject throwRealmException _TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ @@ -1435,7 +1511,6 @@ _TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferCfT_GS_x_ _TTSg5TSSPs9AnyObject_____TFSaCfT19_uninitializedCountSi_GSax_ _TTSg5TSSPs9AnyObject_____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ _TTSg5TSSPs9AnyObject_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TMaPMP_ _TTSg5PMP____TFSSCurfxSS _TTSg5PMP____TFSSCurfT26stringInterpolationSegmentx_SS _TTWOVs6Mirror12DisplayStyles9EquatablesZFS1_oi2eefTxx_Sb @@ -1458,28 +1533,331 @@ _TTSg5OVs6Mirror12DisplayStyleS0_s9Equatables___TZFsoi2eeuRxs9EquatablerFTGSqx_G _TTSg5CSo15RLMOptionalBase___TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionarys9subscriptFxGSqq__ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__ -_TTSf4s_n___TFs9_abstractFTVs12StaticString4lineSu_T_ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCfT15minimumCapacitySi_GS_xq__ -_TMaGCs20_AnyGeneratorBoxBaseT5labelGSqSS_5valueP___ -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs20AnyForwardCollectionx_s12SequenceTypesFS0_8generatefT_wx9Generator -_TMaGSqSS_ -_TMaT5labelGSqSS_5valueP__ -_TMaGCs17_AnyCollectionBoxT5labelGSqSS_5valueP___ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnercfT15minimumCapacitySi_GS_xq__ _TMaGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerCfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ +_TTSg5GVs20AnyForwardCollectionT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s12SequenceTypes_GVs12AnyGeneratorT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s13GeneratorTypes_T5labelGSqSS_5valueP___GVs5SliceGS_T5labelGSqSS_5valueP_____GVs10DictionarySSPs9AnyObject_____TFEsPs12SequenceType6reduceurfzTqd__7combineFzTqd__Wx9Generator7Element__qd___qd__ +_TTRXFo_oGVs10DictionarySSPs9AnyObject__oGSqSS_iP__oGS_SSPS0___zoPs9ErrorType__XFo_iGS_SSPS0___iT5labelGSqSS_5valueP___iGS_SSPS0___zoPS1___ +getOptionalProperties +requiredPropertiesForClass +_TZFVs6Mirror19_noSuperclassMirrorfT_GSqS__ +_TMaPMP_ +_TMaGSqPMP__ +_TFs19_isClassSuperMirrorFPMP_Sb +_TFEsPs11_MirrorType12_superMirrorfT_GSqPS___ +_TFFVs6MirrorcFT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_U_FT_GSqS__ +_TTRXFo_iT__iGSqVs6Mirror__XFo__oGSqS___ +_TPA__TTRXFo_iT__iGSqVs6Mirror__XFo__oGSqS___ +_TPA__TFFVs6MirrorcFT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_U_FT_GSqS__ +_TMaPMPs9AnyObject_ +_TWlGVs17IndexingGeneratorGVs5SliceVVs6Mirror14LegacyChildren__uRxs9IndexablerGS_x_s13GeneratorTypes +_TWlGVs5SliceVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_s12SequenceTypes +_TWlGVs17IndexingGeneratorVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_s13GeneratorTypes +_TWlGVs5SliceVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_S2_s +_TMaGVs17IndexingGeneratorGVs5SliceVVs6Mirror14LegacyChildren__ +_TMaGVs5SliceVVs6Mirror14LegacyChildren_ +_TMaGVs17IndexingGeneratorVVs6Mirror14LegacyChildren_ +_TMaGCs14_CollectionBoxVVs6Mirror14LegacyChildren_ +_TMaGCs21_RandomAccessIndexBoxSi_ +_TPA__TZFVs6Mirror19_noSuperclassMirrorfT_GSqS__ +_TTSf4n_n_n_d___TFVs6MirrorCfT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_ +_TTRXFo_oGSqSS_iP__oGSqTSSC10RealmSwift18LinkingObjectsBase__zoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___iGSqTSSS0___zoPS1___ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerg19_allocatedByteCountSi +_TMaGCs23_ContiguousArrayStorageTSSC10RealmSwift18LinkingObjectsBase__ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g8capacitySi +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerg21allocatedElementCountSi +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferCfT_GS_x_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TTSg5GVs12_ArrayBufferTSSC10RealmSwift18LinkingObjectsBase__GS_TSSS1___s16_ArrayBufferTypes_TSSS1___GVs17IndexingGeneratorGS_TSSS1____GS3_GS_TSSS1____s13GeneratorTypes_TSSS1___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferTSSS1___GS8_TSSS1___s14CollectionTypes_GS3_GS8_TSSS1____GS3_GS8_TSSS1____S4_s_TSSS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_TSSS1___GS8_TSSS1___s9IndexablesGS8_TSSS1___s12SequenceTypes_GS3_GS8_TSSS1____GS3_GS8_TSSS1____S4_s_TSSS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_TSSS1____TSSS1___TSSS1___TSSS1_____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSp14initializeFromfTGSpx_5countSi_T_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer10_typeCheckfGVs5RangeSi_T_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSp18moveInitializeFromfTGSpx_5countSi_T_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSp7destroyfSiT_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGVs12_ArrayBufferx_s9IndexablesFS0_g8endIndexwx5Index +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg10startIndexSi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferx__ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerlu5valuex +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferwx7Element__ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSp10initializefxT_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferg8capacitySi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer20isUniquelyReferencedfT_Sb +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer30isMutableAndUniquelyReferencedfT_Sb +_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TFVs17IndexingGeneratorCfxGS_x_ +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg9subscriptFSix +_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5T5labelGSqSS_5valueP_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5T5labelGSqSS_5valueP_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5T5labelGSqSS_5valueP_____TFSag9subscriptFSix +_TTSg5T5labelGSqSS_5valueP_____TFSag8endIndexSi +_TTSg5T5labelGSqSS_5valueP_____TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSaCft12arrayLiteralGSax__GSax_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBuffers5countSi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffers5countSi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferCfT_GS_x_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSaCfT19_uninitializedCountSi_GSax_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa36_reserveCapacityAssumingUniqueBufferfSiT_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa6appendfxT_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ +_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ +_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5TSSGVs10DictionarySSSS_____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5Vs10_ArrayBody_TSSGVs10DictionarySSSS_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TMaTSSGVs10DictionarySSSS__ +_TTSg5Vs10_ArrayBody_TSSGVs10DictionarySSSS_____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5TSSGVs10DictionarySSSS_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5TSSGVs10DictionarySSSS_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5TSSGVs10DictionarySSSS_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5GSaTSSGVs10DictionarySSSS___GSaTSSGS_SSSS___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSGS_SSSS_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5TSSGVs10DictionarySSSS_____TFSag8endIndexSi +_TTSg5TSSGVs10DictionarySSSS_____TFSag10startIndexSi +_TTSg5Vs10_ArrayBody_TSSGVs10DictionarySSSS_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg5countSi +_TTSg5TSSGVs10DictionarySSSS_____TFSa9_getCountfT_Si +_TTSg5TSSGVs10DictionarySSSS_____TFSag5countSi +_TTSg5TSSGVs10DictionarySSSS_____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5TSSGVs10DictionarySSSS_____TFSag9subscriptFSix +_TTSg5GSaTSSGVs10DictionarySSSS___GSaTSSGS_SSSS___s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceTSSGS_SSSS___GS4_TSSGS_SSSS___s9IndexablesGS4_TSSGS_SSSS___s12SequenceTypes_GVs17IndexingGeneratorGS4_TSSGS_SSSS____GS7_GS4_TSSGS_SSSS____s13GeneratorTypes_TSSGS_SSSS___SiSiS1_s_SiSiS2_s_SiSiS3_s_Si_GS4_TSSGS_SSSS____TSSGS_SSSS___TSSGS_SSSS_____TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ +_TTSg5SS_SS___TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ +_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi +_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi +_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageg11_bucketMaskSi +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImpls6_countSi +_TTSg5SSSSs8Hashables_SS___TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb +_TTSg5TSSSS____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5TSSSS____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5TSSSS____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5TSSSS____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5TSSSS____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5TSSSS____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5TSSSS____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5TSSSS____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5GSaTSSSS__GSaTSSSS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSSS____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5TSSSS____TFSag8endIndexSi +_TTSg5TSSSS____TFSag10startIndexSi +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ +_TMaGCs28_NativeDictionaryStorageImplSSSS_ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_TSSSS____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5TSSSS____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5TSSSS____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5TSSSS____TFVs12_ArrayBufferg5countSi +_TTSg5TSSSS____TFSa9_getCountfT_Si +_TTSg5TSSSS____TFSag5countSi +_TTSg5TSSSS____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage5_nextfSiSi +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage5keyAtfSix +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage7_bucketfxSi +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg9_capacitySi +_TTSg5TSSSS____TFSag9subscriptFSix +_TTSg5GSaTSSSS__GSaTSSSS__s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceTSSSS__GS3_TSSSS__s9IndexablesGS3_TSSSS__s12SequenceTypes_GVs17IndexingGeneratorGS3_TSSSS___GS6_GS3_TSSSS___s13GeneratorTypes_TSSSS__SiSiS0_s_SiSiS1_s_SiSiS2_s_Si_GS3_TSSSS___TSSSS__TSSSS____TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ +_TTSg5TSSSS____TFSp7destroyfSiT_ +_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_TSSSS____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5TSSSS____TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_ +_TTSg5TSSSS____TFCs23_ContiguousArrayStoraged +_TTSg5SS_GVs10DictionarySSSS____TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ +_TFZFCs28_NativeDictionaryStorageImpl6createFSiGS_xq__U_FGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8_S1_ +_TTSg5Vs29_HashedContainerStorageHeader_Vs5UInt8___TFZFCs13ManagedBuffer6createFTSi12initialValueFGCs18ManagedProtoBufferxq__x_GS_xq__U_FTPs9AnyObject_FPS1__Si_Q_ +_TTSg5SS_GVs10DictionarySSSS____TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi +_TTSg5SS_GVs10DictionarySSSS____TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi +_TTSg5SS_GVs10DictionarySSSS____TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ +_TMaGCs28_NativeDictionaryStorageImplSSGVs10DictionarySSSS__ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFOs25_VariantDictionaryStorage20isUniquelyReferencedfT_Sb +__swift_memmove_array64_8 +__swift_memcpy_array64_8 +__swift_copy_outline_pointer +_TwalVSC28_SwiftNSFastEnumerationState +_TwTkVSC28_SwiftNSFastEnumerationState +__swift_memcpy64_8 +_TwCpVSC28_SwiftNSFastEnumerationState +_TwdeVSC28_SwiftNSFastEnumerationState +_TwprVSC28_SwiftNSFastEnumerationState +_TwCPVSC28_SwiftNSFastEnumerationState +_TwXXVSC28_SwiftNSFastEnumerationState +_TMaGSqPs9AnyObject__ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorageg11_bucketMaskSi +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwnercfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwnerCfT15minimumCapacitySi_GS_xq__ +_TTSg5GVs10DictionarySSSS____TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x +_TTSg5SS___TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage5_nextfSiSi +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage5keyAtfSix +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImpls6_countSi +_TTSg5GVs10DictionarySSSS____TFSp10initializefxT_ +_TTSg5SS___TFSp10initializefxT_ +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg21_maxLoadFactorInverseSd +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg6_countSi +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg9_capacitySi +_TMaPs17_NSStringCoreType_ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage7_bucketfxSi +_TTWSSs8HashablesFS_g9hashValueSi +_TTSf4s___TFSSg9hashValueSi +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg19_allocatedByteCountSi +_TMaGCs23_ContiguousArrayStorageT5labelGSqSS_5valueP___ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg21allocatedElementCountSi +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TTSg5T5labelGSqSS_5valueP_____TFSp18moveInitializeFromfTGSpx_5countSi_T_ +_TTSg5T5labelGSqSS_5valueP_____TFSp7destroyfSiT_ +_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSg5T5labelGSqSS_5valueP_____TFSp14initializeFromfTGSpx_5countSi_T_ +_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerlu5valuex +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg10startIndexSi +_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__ +_TTSf4s_n___TFs9_abstractFTVs12StaticString4lineSu_T_ +_TTSg5T5labelGSqSS_5valueP_____TFSp10initializefxT_ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffers5countSi +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg8capacitySi +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb +_TTSg5C10RealmSwift18LinkingObjectsBaseS0_s9EquatableS____TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs10Dictionarys9subscriptFxGSqq__ +_TTSg5SSSSs8Hashables_SS___TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TMaGCs29_NativeDictionaryStorageOwnerSSSS_ +_TTSg5SSSSs8Hashables_SS___TFCs29_NativeDictionaryStorageOwnerCfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_SS___TFVs10DictionaryCfT14_nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5TSSSS____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5TSSSS____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__ +_TTSg5SSSSs8Hashables_SS___TFVs10DictionaryCft17dictionaryLiteralGSaTxq____GS_xq__ +_TTSg5TSSSS____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5TSSSS____TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5TSSSS____TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TMaTSSSS_ +_TMaGCs23_ContiguousArrayStorageTSSSS__ +_TTSg5TSSSS____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TMaTSSC10RealmSwift18LinkingObjectsBase_ +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferg9subscriptFSix +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5GSaTSSC10RealmSwift18LinkingObjectsBase__GSaTSSS0___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSS0_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg5countSi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa9_getCountfT_Si +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSag8endIndexSi +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TMaGVs10DictionarySSSS_ +_TMaGCs29_NativeDictionaryStorageOwnerSSGVs10DictionarySSSS__ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwnerCfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs10DictionaryCft17dictionaryLiteralGSaTxq____GS_xq__ +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_TSSGVs10DictionarySSSS_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_TSSGVs10DictionarySSSS_____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5TSSGVs10DictionarySSSS_____TFVs22_ContiguousArrayBuffers5countSi +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBuffers5countSi +_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferCfT_GS_x_ +_TTSg5TSSGVs10DictionarySSSS_____TFSaCfT19_uninitializedCountSi_GSax_ +_TTSg5TSSGVs10DictionarySSSS_____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ +_TTSg5TSSGVs10DictionarySSSS_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5T5labelGSqSS_5valueP_____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__ +_TTSg5T5labelGSqSS_5valueP_____TTWurGVs20AnyForwardCollectionx_s12SequenceTypesFS0_8generatefT_wx9Generator +_TMaGSqSS_ +_TMaT5labelGSqSS_5valueP__ +_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ +_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArrayCfT_GS_x_ +_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfT_GS_x_ _TMaPs17CustomReflectable_ _TMaP_ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ _TTSg5T5labelGSqSS_5valueP_____TFVs12AnyGenerator4nextfT_GSqx_ _TTSg5T5labelGSqSS_5valueP_____TFCs20_AnyGeneratorBoxBase4nextfT_GSqx_ _TTSg5T5labelGSqSS_5valueP_____TFVs20AnyForwardCollection8generatefT_GVs12AnyGeneratorx_ _TTSg5T5labelGSqSS_5valueP_____TFCs15_AnySequenceBox8generatefT_GVs12AnyGeneratorx_ -_TTSg5GVs20AnyForwardCollectionT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s12SequenceTypes_GVs12AnyGeneratorT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s13GeneratorTypes_T5labelGSqSS_5valueP___GVs5SliceGS_T5labelGSqSS_5valueP_____GVs10DictionarySSPs9AnyObject_____TFEsPs12SequenceType6reduceurfzTqd__7combineFzTqd__Wx9Generator7Element__qd___qd__ -_TTRXFo_oGVs10DictionarySSPs9AnyObject__oGSqSS_iP__oGS_SSPS0___zoPs9ErrorType__XFo_iGS_SSPS0___iT5labelGSqSS_5valueP___iGS_SSPS0___zoPS1___ +_TTSg5Vs10_ArrayBody_TSSSS____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5GSaTSSC10RealmSwift18LinkingObjectsBase__GSaTSSS0___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSS0_____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ +_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSag9subscriptFSix +_TTRXFo_oGVs10DictionarySSGS_SSSS__oSSoC10RealmSwift18LinkingObjectsBase_oGS_SSGS_SSSS__zoPs9ErrorType__XFo_iGS_SSGS_SSSS__iTSSS1___iGS_SSGS_SSSS__zoPS2___ +_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs10DictionaryCfT14_nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5GSaTSSC10RealmSwift18LinkingObjectsBase__GSaTSSS0___s12SequenceTypes_GVs17IndexingGeneratorGSaTSSS0____GS2_GSaTSSS0____s13GeneratorTypes_TSSS0___GVs10ArraySliceTSSS0____GVs10DictionarySSGS5_SSSS_____TFEsPs12SequenceType6reduceurfzTqd__7combineFzTqd__Wx9Generator7Element__qd___qd__ +_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ +_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ +_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray6appendfxT_ +_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ +_TTSg5C10RealmSwift18LinkingObjectsBaseS0_s9EquatableS____TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb +_TTRXFo_oGSqSS_iP__dSbzoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___dSbzoPS___ +_TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getLinkingObjectsPropertiesFPs9AnyObject_CSo12NSDictionaryU_FT5labelGSqSS_5valueP__Sb +_TTSg5GVs20AnyForwardCollectionT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s12SequenceTypes_GVs12AnyGeneratorT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s13GeneratorTypes_T5labelGSqSS_5valueP___GVs5SliceGS_T5labelGSqSS_5valueP_______TFEsPs12SequenceType6filterfzFzWx9Generator7Element_SbGSaWxS0_S1___ _TFVs6MirrorCfT10reflectingP__S_ -getOptionalProperties -requiredPropertiesForClass +getLinkingObjectsProperties +initializeLinkingObjectsProperty _TMaGVs10DictionarySSCSo15RLMOptionalBase_ _TMaGVs10DictionarySSGC10RealmSwift4ListCS0_13DynamicObject__ _TMaC10RealmSwift10ObjectUtil @@ -1507,7 +1885,6 @@ _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs10Dictionary _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__ _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs10Dictionaryg9subscriptFxGSqq__ dynamicList -linkingObjects _TTSg5SS___TFSaCft12arrayLiteralGSax__GSax_ _TTSg5SS___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ _TTSg5SS___TFVs12_ArrayBufferg9_isNativeSb @@ -1522,7 +1899,7 @@ objectUtilClass className.get objectSchema.get _TMaCSo9RLMSchema -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Object.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Object.swift _TTSg5C10RealmSwift8Property___TFVs15ContiguousArray15reserveCapacityfSiT_ _TTSg5GVs22_ContiguousArrayBufferC10RealmSwift8Property_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ _TTSg5GVs22_ContiguousArrayBufferC10RealmSwift8Property_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ @@ -1533,7 +1910,6 @@ _TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferC10RealmSwift8Property_GS_S1__ _TMaGCs23_ContiguousArrayStorageC10RealmSwift8Property_ L_selector_data(properties) L_selector(properties) -_TMLCSo11RLMProperty L_selector_data(primaryKeyProperty) L_selector(primaryKeyProperty) L_selector(objectForKeyedSubscript:) @@ -1620,7 +1996,6 @@ _TTSg5CSo11RLMProperty___TTWurGSax_s14CollectionTypesFS_g5countWx5Index8Distance _TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg9_isNativeSb _TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg5countSi _TTSg5CSo11RLMProperty___TFSa9_getCountfT_Si -_TMaCSo11RLMProperty _TTWSis14_IncrementablesFS_9successorfT_x _TTSg5C10RealmSwift8Property___TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ _TTSg5C10RealmSwift8Property___TFVs15ContiguousArray6appendfxT_ @@ -1636,7 +2011,7 @@ _TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ _TTSg5CSo11RLMProperty___TFSag5countSi _TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ properties.get -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/ObjectSchema.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/ObjectSchema.swift _TF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24realmOptionalToAnyObjectuRxS_17RealmOptionalTyperFGSqx_GSqPs9AnyObject__ _TF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24anyObjectToRealmOptionaluRxS_17RealmOptionalTyperFGSqPs9AnyObject__GSqx_ _TFF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24anyObjectToRealmOptionaluRxS_17RealmOptionalTyperFGSqPs9AnyObject__GSqx_U_FSiVs4Int8 @@ -1685,7 +2060,7 @@ _TWaVs4Int810RealmSwift17RealmOptionalTypeS0_ _TWaSi10RealmSwift17RealmOptionalTypeS_ value.set value.get -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Optional.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Optional.swift get_field_types_Property L_selector_data(indexed) L_selector(indexed) @@ -1700,17 +2075,17 @@ Property.swift _TMaC10RealmSwift8Property _TWaC10RealmSwift8Propertys9EquatableS_ _TWaC10RealmSwift8Propertys23CustomStringConvertibleS_ -objectClassName.get optional.get indexed.get type.get name.get -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Property.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Property.swift _TTRXFo__dT__XFdCb__dT__ +_TFFC10RealmSwift5Realm20addNotificationBlockFFT12notificationOS_12Notification5realmS0__T_CSo20RLMNotificationTokenU_FTSSCSo8RLMRealm_T_ _TTRXFo_oSSoCSo8RLMRealm_dT__XFdCb_dCSo8NSStringdS__dT__ -_TFF10RealmSwift41rlmNotificationBlockFromNotificationBlockFFT12notificationOS_12Notification5realmCS_5Realm_T_FTSSCSo8RLMRealm_T_U_FTSSS2__T_ _TTSg5SS___TFCs23_ContiguousArrayStoraged -_TPA__TFF10RealmSwift41rlmNotificationBlockFromNotificationBlockFFT12notificationOS_12Notification5realmCS_5Realm_T_FTSSCSo8RLMRealm_T_U_FTSSS2__T_ +objectdestroy.79 +_TPA__TFFC10RealmSwift5Realm20addNotificationBlockFFT12notificationOS_12Notification5realmS0__T_CSo20RLMNotificationTokenU_FTSSCSo8RLMRealm_T_ get_field_types_Realm _TwxsO10RealmSwift12Notification _TwxgO10RealmSwift12Notification @@ -1718,7 +2093,6 @@ _TwugO10RealmSwift12Notification _TwupO10RealmSwift12Notification _TwuiO10RealmSwift12Notification get_field_types_Notification -objectdestroy.13 objectdestroy.16 objectdestroy.19 objectdestroy.22 @@ -1736,7 +2110,6 @@ objectdestroy.61 objectdestroy.64 objectdestroy.67 objectdestroy.70 -objectdestroy.79 block_destroy_helper.26 block_destroy_helper.50 block_destroy_helper.74 @@ -1765,8 +2138,6 @@ _TPA__TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT_ _TPA__TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_.66 _TPA__TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFo_iTS_S0___iT__.69 _TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__.72 -L_selector_data(isReadOnly) -L_selector(isReadOnly) L_selector_data(schema) L_selector(schema) L_selector_data(configuration) @@ -1775,7 +2146,6 @@ _TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__.72 L_selector(isEmpty) L_selector_data(realmWithConfiguration:error:) L_selector(realmWithConfiguration:error:) -metadata.14 metadata.17 metadata.20 metadata.23 @@ -1814,8 +2184,6 @@ block_descriptor.78 _TMLGC10RealmSwift7ResultsCS_13DynamicObject_ metadata.80 block_descriptor.83 -L_selector_data(removeNotification:) -L_selector(removeNotification:) L_selector_data(autorefresh) L_selector(autorefresh) L_selector_data(setAutorefresh:) @@ -1824,10 +2192,8 @@ block_descriptor.83 L_selector(refresh) L_selector_data(invalidate) L_selector(invalidate) -L_selector_data(writeCopyToPath:error:) -L_selector(writeCopyToPath:error:) -L_selector_data(writeCopyToPath:encryptionKey:error:) -L_selector(writeCopyToPath:encryptionKey:error:) +L_selector_data(writeCopyToURL:encryptionKey:error:) +L_selector(writeCopyToURL:encryptionKey:error:) _METACLASS_DATA__TtC10RealmSwift5Realm _IVARS__TtC10RealmSwift5Realm _DATA__TtC10RealmSwift5Realm @@ -1836,17 +2202,6 @@ _TMfO10RealmSwift12Notification field_type_vector_Notification field_type_vector_Realm _TMLCSo8RLMRealm -_TTSg5Vs18_StringBufferIVars_Vs6UInt16___TFVs11_HeapBufferg6_valueGSpx_ -_TTSf4s_n_n___TFVs13_StringBuffer4growfTGVs5RangeGSPVs7RawByte__12newUsedCountSi_Sb -_TFVs13_StringBufferg8capacitySi -_TMaGCs18_HeapBufferStorageVs18_StringBufferIVarsVs6UInt16_ -_TTSf4n_n_n_d___TFVs13_StringBufferCfT8capacitySi11initialSizeSi12elementWidthSi_S_ -_TFFVs11_StringCoreg11cocoaBufferGSqPs9AnyObject__U_FPS0__PS0__ -_TFVs11_StringCore12_copyInPlacefT7newSizeSi11newCapacitySi15minElementWidthSi_T_ -_TFVs11_StringCore14_claimCapacityfTSi15minElementWidthSi_TSiVs14COpaquePointer_ -_TTSf1cl57_TTRXFo_dVs6UInt16_dSbzoPs9ErrorType__XFo_iS__dSbzoPS0___XFo_dVs6UInt16_dSbzoPs9ErrorType___n___TTSg5GSRVs6UInt16_GSRS__s12SequenceTypes_GVs28UnsafeBufferPointerGeneratorS__GS1_S__s13GeneratorTypes_S__GVs5SliceGSRS______TFEsPs12SequenceType8containsfzFzWx9Generator7Element_SbSb -_TFFVs11_StringCore20representableAsASCIIFT_SbU_FVs6UInt16Sb -_TTSf4gs_n___TFVs11_StringCore6appendfS_T_ _TTSg5SS___TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_ _TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffer10getElementfSix _TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ @@ -1877,13 +2232,11 @@ _TWaO10RealmSwift12Notifications8HashableS_ _TWaO10RealmSwift12Notifications9EquatableS_ _TWaC10RealmSwift5Realms9EquatableS_ add -writeCopyToPath +writeCopyToURL invalidate refresh autorefresh.set autorefresh.get -removeNotification -rlmNotificationBlockFromNotificationBlock _TMaGSqC10RealmSwift13DynamicObject_ dynamicObjectForPrimaryKey _TMaGSQPs9AnyObject__ @@ -1903,16 +2256,14 @@ beginWrite write configuration.get schema.get -readOnly.get -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Realm.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Realm.swift _TFC10RealmSwift12RLMGeneratorcfT10collectionPSo13RLMCollection__GS0_x_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5realmGSqCS_5Realm_ +_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg11invalidatedSb _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5countSi _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg11descriptionSS _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffxGSqSi_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffCSo11NSPredicateGSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOfftSSGSaPs9AnyObject___GSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6filterftSSGSaPs9AnyObject___GCS_7Resultsx_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6filterfCSo11NSPredicateGCS_7Resultsx_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6sortedfTSS9ascendingSb_GCS_7Resultsx_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrfqd__GCS_7Resultsx_ @@ -1927,19 +2278,18 @@ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg8e _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase11valueForKeyfSSGSqPs9AnyObject__ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase15valueForKeyPathfSSGSqPs9AnyObject__ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase8setValuefTGSqPs9AnyObject__6forKeySS_T_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase21_addNotificationBlockfFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationToken +_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase21_addNotificationBlockfFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationToken _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasecfT_GS0_x_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseD _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBased _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectioncfT4basex_GS0_x_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectionCfT4basex_GS0_x_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong5realmGSqCS_5Realm_ +_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong11invalidatedSb _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong5countSi _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong11descriptionSS _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7indexOffwx7ElementGSqSi_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7indexOffCSo11NSPredicateGSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7indexOfftSSGSaPs9AnyObject___GSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6filterftSSGSaPs9AnyObject___GCS_7Resultswx7Element_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6filterfCSo11NSPredicateGCS_7Resultswx7Element_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6sortedfTSS9ascendingSb_GCS_7Resultswx7Element_ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrfqd__GCS_7Resultswx7Element_ @@ -1954,13 +2304,10 @@ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong8endIn _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection11valueForKeyfSSGSqPs9AnyObject__ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection15valueForKeyPathfSSGSqPs9AnyObject__ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection8setValuefTGSqPs9AnyObject__6forKeySS_T_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection21_addNotificationBlockfFTGSqGCS_18AnyRealmCollectionwx7Element__GSqCSo7NSError__T_CSo20RLMNotificationToken +_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection21_addNotificationBlockfFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionwx7Element__T_CSo20RLMNotificationToken _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectionD _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiond _TWtuRxC10RealmSwift6ObjectrGCS_12RLMGeneratorx_s13GeneratorTypeS_7Element -_TWIuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_ -_TWIuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_ -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_11SubSequence _TWIuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_ _TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_11SubSequencePs9Indexable_ _TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_11SubSequencePs12SequenceType_ @@ -1969,37 +2316,51 @@ _TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_9Generato _TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_9GeneratorPs13GeneratorType_ _TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_11SubSequence get_field_types_RLMGenerator +get_field_types_RealmCollectionChange +_TwXXO10RealmSwift21RealmCollectionChange +_TwCPO10RealmSwift21RealmCollectionChange +_TwprO10RealmSwift21RealmCollectionChange +_TwdeO10RealmSwift21RealmCollectionChange +_TwxxO10RealmSwift21RealmCollectionChange +_TwCpO10RealmSwift21RealmCollectionChange +_TwcpO10RealmSwift21RealmCollectionChange +_TwcaO10RealmSwift21RealmCollectionChange +_TwTkO10RealmSwift21RealmCollectionChange +_TwtkO10RealmSwift21RealmCollectionChange +_TwtaO10RealmSwift21RealmCollectionChange +_TwalO10RealmSwift21RealmCollectionChange +_TwTKO10RealmSwift21RealmCollectionChange +_TwXxO10RealmSwift21RealmCollectionChange +_TwCcO10RealmSwift21RealmCollectionChange +_TwTtO10RealmSwift21RealmCollectionChange +_TwtTO10RealmSwift21RealmCollectionChange +_TwugO10RealmSwift21RealmCollectionChange +_TwupO10RealmSwift21RealmCollectionChange +_TwuiO10RealmSwift21RealmCollectionChange +create_generic_metadata_RealmCollectionChange get_field_types__AnyRealmCollectionBase create_generic_metadata__AnyRealmCollectionBase get_field_types__AnyRealmCollection create_generic_metadata__AnyRealmCollection get_field_types_AnyRealmCollection create_generic_metadata_AnyRealmCollection -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_9Generator -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_9Generator +_TTSg5CSo8NSNumber___TFVs12_ArrayBuffer19_getElementSlowPathfSiPs9AnyObject_ +_TTSf4g___TTSg5CSo8NSNumber_Si___TFs31_arrayConditionalBridgeElementsu0_rFGSax_GSqGSaq___ _TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_9Generator -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_7Element -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s9IndexableS_8_Element _TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_7Element _TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s9IndexableS_8_Element -_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_11SubSequencePs9Indexable_ -_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_11SubSequencePs12SequenceType_ -_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_9GeneratorPs13GeneratorType_ -_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_9GeneratorPs13GeneratorType_ _TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_9GeneratorPs13GeneratorType_ create_generic_metadata_RLMGenerator -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_11SubSequence _TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_11SubSequence -_TWGuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_ _TWGuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_ _TWGuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_ _TWGuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_ _TWvdvC10RealmSwift12RLMGeneratorP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E13generatorBaseC10Foundation15NSFastGenerator _IVARS__TtC10RealmSwift12RLMGenerator +_TMLGSaSi_ _TMnC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5realmGSqCS_5Realm_ +_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg11invalidatedSb _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5countSi _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg11descriptionSS _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffxGSqSi_ @@ -2020,7 +2381,7 @@ _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase11valueForKeyfSSGSqPs9AnyObject__ _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase15valueForKeyPathfSSGSqPs9AnyObject__ _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase8setValuefTGSqPs9AnyObject__6forKeySS_T_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase21_addNotificationBlockfFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationToken +_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase21_addNotificationBlockfFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationToken _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseCfT_GS0_x_ _TMPC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase _TMnC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection @@ -2030,19 +2391,75 @@ _TMPC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection _TWvdvC10RealmSwift18AnyRealmCollectionP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E4baseGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_ _IVARS__TtC10RealmSwift18AnyRealmCollection got._TMps13GeneratorType +_TMLCSo7NSError +L_selector_data(deletions) +L_selector(deletions) +L_selector_data(insertions) +L_selector(insertions) +L_selector_data(modifications) +L_selector(modifications) +_TMLGCs23_ContiguousArrayStorageSi_ RealmCollectionType.swift +_TTSg5CSo8NSNumber_Ps9AnyObject____TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___ +_TTSg5CSo8NSNumber___TFVs22_ContiguousArrayBufferg5countSi +_TTSg5Vs10_ArrayBody_CSo8NSNumber___TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Si___TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5Si___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Si___TFVs22_ContiguousArrayBuffers5countSi +_TTSg5Vs10_ArrayBody_CSo8NSNumber___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_CSo8NSNumber___TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5CSo8NSNumber___TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5CSo8NSNumber___TFVs22_ContiguousArrayBufferg9subscriptFSix +_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5Vs10_ArrayBody_CSo8NSNumber___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_CSo8NSNumber___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5CSo8NSNumber___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5CSo8NSNumber___TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ +_TTSg5Si___TFSp10initializefxT_ +_TTSg5Si___TZFsoi2eeurFTGSqx_Vs26_OptionalNilComparisonType_Sb +_TTSg5Si___TFs34_conditionallyBridgeFromObjectiveCurFTPs9AnyObject_Mx_GSqx_ +_TTSg5CSo8NSNumber___TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5CSo8NSNumber___TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5CSo8NSNumber___TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg32arrayPropertyIsNativeTypeCheckedSb +_TTSg5CSo8NSNumber___TFSa29_hoistableIsNativeTypeCheckedfT_Sb +_TTSg5GSaCSo8NSNumber_GSaS__s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS4_S__s9IndexablesGS4_S__s12SequenceTypes_GVs17IndexingGeneratorGS4_S___GS7_GS4_S___s13GeneratorTypes_S__SiSiS1_s_SiSiS2_s_SiSiS3_s_Si_GS4_S___S__S____TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ +_TTSg5CSo8NSNumber___TFSag8endIndexSi +_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Si___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerg19_allocatedByteCountSi +_TTSg5Vs10_ArrayBody_Si___TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TMaGCs23_ContiguousArrayStorageSi_ +_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg9_isNativeSb +_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg5countSi +_TTSg5CSo8NSNumber___TFSa9_getCountfT_Si +_TTSg5GSaCSo8NSNumber_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5CSo8NSNumber___TFSag9subscriptFSix +_TTSg5CSo8NSNumber___TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerg21allocatedElementCountSi +_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_Si___TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5Si___TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TTSg5Vs10_ArrayBody_Si___TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Si___TFVs22_ContiguousArrayBufferCfT_GS_x_ +_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ +_TTSg5CSo8NSNumber___TFSag5countSi +_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5CSo8NSNumber_Si___TFs15_arrayForceCastu0_rFGSax_GSaq__ +_TTSg5GSaSi____TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb +fromObjc +_TMaCSo7NSError +_TMaGSaSi_ _TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_ _TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s9IndexableS_ _TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s23CustomStringConvertibleS_ _TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_ _TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s9IndexableS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s23CustomStringConvertibleS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_ _TWauRxC10RealmSwift6ObjectrGCS_12RLMGeneratorx_s13GeneratorTypeS_ -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmCollectionType.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/RealmCollectionType.swift _TTSg5MC10RealmSwift6Object___TFVs15ContiguousArray15reserveCapacityfSiT_ _TTSg5GVs22_ContiguousArrayBufferMC10RealmSwift6Object_GS_MS1__s16_ArrayBufferTypes_MS1__GVs17IndexingGeneratorGS_MS1___GS3_GS_MS1___s13GeneratorTypes_MS1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferMS1__GS8_MS1__s14CollectionTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1__GS8_MS1__s9IndexablesGS8_MS1__s12SequenceTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1___MS1__MS1__MS1____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ _TTSg5GVs22_ContiguousArrayBufferMC10RealmSwift6Object_GS_MS1__s16_ArrayBufferTypes_MS1__GVs17IndexingGeneratorGS_MS1___GS3_GS_MS1___s13GeneratorTypes_MS1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferMS1__GS8_MS1__s14CollectionTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1__GS8_MS1__s9IndexablesGS8_MS1__s12SequenceTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1___MS1__MS1__MS1____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ @@ -2059,12 +2476,12 @@ _TwCpVC10RealmSwift5Realm13Configuration _TwcpVC10RealmSwift5Realm13Configuration _TwcaVC10RealmSwift5Realm13Configuration _TwTkVC10RealmSwift5Realm13Configuration -__swift_memcpy113_8 +__swift_memcpy121_8 _TwtaVC10RealmSwift5Realm13Configuration _TwalVC10RealmSwift5Realm13Configuration _TwXxVC10RealmSwift5Realm13Configuration _TwCcVC10RealmSwift5Realm13Configuration -__swift_memmove_array120_8 +__swift_memmove_array128_8 get_field_types_Configuration _TMaGCs23_ContiguousArrayStoragePMPs9AnyObject__ _TPA__TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__.30 @@ -2184,24 +2601,17 @@ _TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBufferCfT_GS_x_ _TTSg5GSaCSo15RLMObjectSchema_GSaS__s14CollectionTypes_GVs17IndexingGeneratorGSaS___GS1_GSaS___s13GeneratorTypes_S__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS6_S__s9IndexablesGS6_S__s12SequenceTypes_GS1_GS6_S___GS1_GS6_S___S2_s_S__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_S___S__S__MC10RealmSwift6Object___TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___ _TTSg5MC10RealmSwift6Object___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ _TTSg5CSo15RLMObjectSchema___TFSag5countSi -_TTSg5VSC26NSRegularExpressionOptions___TFSag8endIndexSi -_TTSg5VSC26NSRegularExpressionOptions___TFSag10startIndexSi -_TTSg5VSC26NSRegularExpressionOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator -_TTSg5GSaVSC26NSRegularExpressionOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ -_TTSg5VSC26NSRegularExpressionOptions___TFSag9subscriptFSix -_TTSg5VSC17NSMatchingOptions___TFSag8endIndexSi -_TTSg5VSC17NSMatchingOptions___TFSag10startIndexSi -_TTSg5VSC17NSMatchingOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator -_TTSg5GSaVSC17NSMatchingOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ -_TTSg5VSC17NSMatchingOptions___TFSag9subscriptFSix -_TTWSus21BitwiseOperationsTypesZFS_oi1ofTxx_x _TMaGSqCSo9RLMSchema_ _TMaT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_ _TMaFT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T_ _TMaGSqFT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T__ _TMaVC10RealmSwift5Realm13Configuration _TWaVC10RealmSwift5Realm13Configurations23CustomStringConvertibleS_ +_TTRXFo_oSS_oCSo5NSURLzoPs9ErrorType__XFo_iSS_iS_zoPS0___ defaultConfiguration.set +deleteRealmIfMigrationNeeded.materialize +deleteRealmIfMigrationNeeded.set +deleteRealmIfMigrationNeeded.get migrationBlock.materialize migrationBlock.set migrationBlock.get @@ -2210,6 +2620,7 @@ schemaVersion.set schemaVersion.get readOnly.materialize readOnly.set +readOnly.get encryptionKey.materialize encryptionKey.set encryptionKey.get @@ -2223,11 +2634,12 @@ _TTSg5GSaMC10RealmSwift6Object__CSo9RLMSchema___TFSq3mapurfzFzxqd__GSqqd___ _TTRXFo_oGSaMC10RealmSwift6Object__oCSo9RLMSchemazoPs9ErrorType__XFo_iGSaMS0___iS1_zoPS2___ _TTSg5GSaPMPs9AnyObject_____TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb inMemoryIdentifier.set -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmConfiguration.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/RealmConfiguration.swift _TToFC10RealmSwift11ResultsBaseg10rlmResultsCSo10RLMResults _TToFC10RealmSwift11ResultsBaseg11descriptionSS _TToFC10RealmSwift11ResultsBase27countByEnumeratingWithStatefTGSpVSC22NSFastEnumerationState_7objectsGVs33AutoreleasingUnsafeMutablePointerGSqPs9AnyObject___5countSi_Si _TToFC10RealmSwift11ResultsBasecfT_S0_ +_TToFC10RealmSwift7Resultsg11invalidatedSb _TToFC10RealmSwift7Resultsg5countSi _TFC10RealmSwift7ResultscfCSo10RLMResultsGS0_x_ _TToFC10RealmSwift7ResultscfCSo10RLMResultsGS0_x_ @@ -2235,11 +2647,10 @@ _TToFC10RealmSwift7Results11valueForKeyfSSGSqPs9AnyObject__ _TToFC10RealmSwift7Results15valueForKeyPathfSSGSqPs9AnyObject__ _TToFC10RealmSwift7Results8setValuefTGSqPs9AnyObject__6forKeySS_T_ _TFFC10RealmSwift7Results6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrFqd__GS0_x_U_FS4_Ps9AnyObject_ -_TFFC10RealmSwift7Results20addNotificationBlockFFTGSqGS0_x__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS1___T_ -_TTRXFo_oGSqCSo10RLMResults_oGSqCSo7NSError__dT__XFdCb_dGSqS__dGSqS0___dT__ -_TFFC10RealmSwift7Results21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS2___T_ -_TPA__TFFC10RealmSwift7Results20addNotificationBlockFFTGSqGS0_x__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS1___T_ -_TPA__TFFC10RealmSwift7Results21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS2___T_ +_TFFC10RealmSwift7Results20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TFFC10RealmSwift7Results21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TPA__TFFC10RealmSwift7Results20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ +_TPA__TFFC10RealmSwift7Results21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_ _TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_7Element _TWIuRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_ _TWTuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_11SubSequencePs9Indexable_ @@ -2253,27 +2664,11 @@ get_field_types_Results create_generic_metadata_Results _TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_9Generator _TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s9IndexableS_8_Element -block_destroy_helper.6 -block_copy_helper.5 _TWTuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_9GeneratorPs13GeneratorType_ _TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_11SubSequence -L_selector_data(minOfProperty:) -L_selector(minOfProperty:) -L_selector_data(maxOfProperty:) -L_selector(maxOfProperty:) -L_selector_data(sumOfProperty:) -L_selector(sumOfProperty:) -L_selector_data(averageOfProperty:) -L_selector(averageOfProperty:) -_TMLCSo8NSNumber -block_descriptor.7 _TWGuRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_ _TWGuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_ _TWGuRxC10RealmSwift6ObjectrGCS_7Resultsx_s12SequenceTypeS_ -_PROTOCOL_NSFastEnumeration -l_OBJC_LABEL_PROTOCOL_$_NSFastEnumeration -l_OBJC_PROTOCOL_REFERENCE_$_NSFastEnumeration -L_selector_data(rlmResults) L_selector_data(init:) _PROTOCOLS__TtC10RealmSwift11ResultsBase _METACLASS_DATA__TtC10RealmSwift11ResultsBase @@ -2287,13 +2682,6 @@ _INSTANCE_METHODS__TtC10RealmSwift7Results _PROPERTIES__TtC10RealmSwift7Results got.OBJC_CLASS_$_NSDate field_type_vector_ResultsBase -_TMLCSo10RLMResults -_PROTOCOL_INSTANCE_METHODS_NSFastEnumeration -_PROTOCOL_METHOD_TYPES_NSFastEnumeration -_TTSg5CSo10RLMResultsCSo8NSObjects9Equatable10ObjectiveC___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb -_TTSg5CSo10RLMResultsCSo8NSObjects9Equatable10ObjectiveC___TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb -rlmResults.get -_TMaCSo10RLMResults _TMaC10RealmSwift11ResultsBase _TWauRxC10RealmSwift6ObjectrGCS_7Resultsx_s12SequenceTypeS_ _TWauRxC10RealmSwift6ObjectrGCS_7Resultsx_s9IndexableS_ @@ -2314,10 +2702,7 @@ _TWaVs4Int810RealmSwift10MinMaxTypeS0_ _TWaSi10RealmSwift10MinMaxTypeS_ _TWaSf10RealmSwift10MinMaxTypeS_ _TWaSd10RealmSwift10MinMaxTypeS_ -_TTSf4s_s___TFFs26_unimplemented_initializerFTVs12StaticString8initNameS_4fileS_4lineSu6columnSu_T_U0_FGSRVs5UInt8_T_ -countByEnumeratingWithState -_TMaCSo8NSNumber -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Results.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Results.swift _TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray15reserveCapacityfSiT_ _TTSg5GVs22_ContiguousArrayBufferC10RealmSwift12ObjectSchema_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ _TTSg5GVs22_ContiguousArrayBufferC10RealmSwift12ObjectSchema_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ @@ -2389,7 +2774,7 @@ _TTRXFo_oCSo15RLMObjectSchema_oC10RealmSwift12ObjectSchemazoPs9ErrorType__XFo_iS _TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferCfT_GS_x_ _TTSg5GSaCSo15RLMObjectSchema_GSaS__s14CollectionTypes_GVs17IndexingGeneratorGSaS___GS1_GSaS___s13GeneratorTypes_S__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS6_S__s9IndexablesGS6_S__s12SequenceTypes_GS1_GS6_S___GS1_GS6_S___S2_s_S__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_S___S__S__C10RealmSwift12ObjectSchema___TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___ _TTSg5C10RealmSwift12ObjectSchema___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Schema.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Schema.swift _TwXXV10RealmSwift14SortDescriptor _TwCPV10RealmSwift14SortDescriptor _TwprV10RealmSwift14SortDescriptor @@ -2421,8 +2806,8 @@ _TWaV10RealmSwift14SortDescriptors23CustomStringConvertibleS_ ascending.get property.get reversed -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SortDescriptor.swift -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SwiftVersion.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/SortDescriptor.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/SwiftVersion.swift Util.swift throwForNegativeIndex -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Util.swift +/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Util.swift diff --git a/Carthage/Build/iOS/Nimble.framework.dSYM/Contents/Resources/DWARF/Nimble b/Carthage/Build/iOS/Nimble.framework.dSYM/Contents/Resources/DWARF/Nimble index 43574bc..abf9841 100644 Binary files a/Carthage/Build/iOS/Nimble.framework.dSYM/Contents/Resources/DWARF/Nimble and b/Carthage/Build/iOS/Nimble.framework.dSYM/Contents/Resources/DWARF/Nimble differ diff --git a/Carthage/Build/iOS/Nimble.framework/Headers/Nimble-Swift.h b/Carthage/Build/iOS/Nimble.framework/Headers/Nimble-Swift.h index e82bc18..91616e2 100644 --- a/Carthage/Build/iOS/Nimble.framework/Headers/Nimble-Swift.h +++ b/Carthage/Build/iOS/Nimble.framework/Headers/Nimble-Swift.h @@ -1,4 +1,4 @@ -// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.1 clang-703.0.29) +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) #pragma clang diagnostic push #if defined(__has_include) && __has_include() @@ -305,10 +305,10 @@ SWIFT_CLASS("_TtC6Nimble28NMBObjCRaiseExceptionMatcher") @interface NMBObjCRaiseExceptionMatcher : NSObject - (BOOL)matches:(NSObject * _Null_unspecified (^ _Nonnull)(void))actualBlock failureMessage:(FailureMessage * _Nonnull)failureMessage location:(SourceLocation * _Nonnull)location; - (BOOL)doesNotMatch:(NSObject * _Null_unspecified (^ _Nonnull)(void))actualBlock failureMessage:(FailureMessage * _Nonnull)failureMessage location:(SourceLocation * _Nonnull)location; -@property (nonatomic, readonly, copy) NMBObjCRaiseExceptionMatcher * _Nonnull (^ _Nonnull named)(NSString * _Nonnull); -@property (nonatomic, readonly, copy) NMBObjCRaiseExceptionMatcher * _Nonnull (^ _Nonnull reason)(NSString * _Nullable); -@property (nonatomic, readonly, copy) NMBObjCRaiseExceptionMatcher * _Nonnull (^ _Nonnull userInfo)(NSDictionary * _Nullable); -@property (nonatomic, readonly, copy) NMBObjCRaiseExceptionMatcher * _Nonnull (^ _Nonnull satisfyingBlock)(void (^ _Nullable)(NSException * _Nonnull)); +@property (nonatomic, readonly, copy) NMBObjCRaiseExceptionMatcher * _Nonnull (^ _Nonnull named)(NSString * _Nonnull name); +@property (nonatomic, readonly, copy) NMBObjCRaiseExceptionMatcher * _Nonnull (^ _Nonnull reason)(NSString * _Nullable reason); +@property (nonatomic, readonly, copy) NMBObjCRaiseExceptionMatcher * _Nonnull (^ _Nonnull userInfo)(NSDictionary * _Nullable userInfo); +@property (nonatomic, readonly, copy) NMBObjCRaiseExceptionMatcher * _Nonnull (^ _Nonnull satisfyingBlock)(void (^ _Nullable block)(NSException * _Nonnull)); @end diff --git a/Carthage/Build/iOS/Nimble.framework/Info.plist b/Carthage/Build/iOS/Nimble.framework/Info.plist index 2c08953..8012260 100644 Binary files a/Carthage/Build/iOS/Nimble.framework/Info.plist and b/Carthage/Build/iOS/Nimble.framework/Info.plist differ diff --git a/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm.swiftmodule b/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm.swiftmodule index 9e25a45..9c86144 100644 Binary files a/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm.swiftmodule and b/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm.swiftmodule differ diff --git a/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm64.swiftmodule b/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm64.swiftmodule index 7e4dabb..62ad82e 100644 Binary files a/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm64.swiftmodule and b/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm64.swiftmodule differ diff --git a/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/i386.swiftmodule b/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/i386.swiftmodule index ebd327f..c4e422a 100644 Binary files a/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/i386.swiftmodule and b/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/i386.swiftmodule differ diff --git a/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftmodule b/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftmodule index e824531..cffb694 100644 Binary files a/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftmodule and b/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftmodule differ diff --git a/Carthage/Build/iOS/Nimble.framework/Nimble b/Carthage/Build/iOS/Nimble.framework/Nimble index 2b29b87..37a7cde 100755 Binary files a/Carthage/Build/iOS/Nimble.framework/Nimble and b/Carthage/Build/iOS/Nimble.framework/Nimble differ diff --git a/Carthage/Build/iOS/Quick.framework.dSYM/Contents/Resources/DWARF/Quick b/Carthage/Build/iOS/Quick.framework.dSYM/Contents/Resources/DWARF/Quick index 013822f..a40b672 100644 Binary files a/Carthage/Build/iOS/Quick.framework.dSYM/Contents/Resources/DWARF/Quick and b/Carthage/Build/iOS/Quick.framework.dSYM/Contents/Resources/DWARF/Quick differ diff --git a/Carthage/Build/iOS/Quick.framework/Headers/Quick-Swift.h b/Carthage/Build/iOS/Quick.framework/Headers/Quick-Swift.h index 5b2264a..df83528 100644 --- a/Carthage/Build/iOS/Quick.framework/Headers/Quick-Swift.h +++ b/Carthage/Build/iOS/Quick.framework/Headers/Quick-Swift.h @@ -1,4 +1,4 @@ -// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.1 clang-703.0.29) +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) #pragma clang diagnostic push #if defined(__has_include) && __has_include() @@ -131,7 +131,7 @@ SWIFT_CLASS("_TtC5Quick13Configuration") /// \param filter A filter that, given an example, returns a value indicating /// whether that example should be included in the examples /// that are run. -- (void)include:(BOOL (^ _Nonnull)(Example * _Nonnull))filter; +- (void)include:(BOOL (^ _Nonnull)(Example * _Nonnull example))filter; /// Registers an exclusion filter. /// @@ -141,8 +141,8 @@ SWIFT_CLASS("_TtC5Quick13Configuration") /// \param filter A filter that, given an example, returns a value indicating /// whether that example should be excluded from the examples /// that are run. -- (void)exclude:(BOOL (^ _Nonnull)(Example * _Nonnull))filter; -- (void)beforeEachWithMetadata:(void (^ _Nonnull)(ExampleMetadata * _Nonnull))closure; +- (void)exclude:(BOOL (^ _Nonnull)(Example * _Nonnull example))filter; +- (void)beforeEachWithMetadata:(void (^ _Nonnull)(ExampleMetadata * _Nonnull exampleMetadata))closure; /// Like Quick.DSL.beforeEach, this configures Quick to execute the given closure before each example that is run. The closure passed to this method is executed before each example Quick runs, globally across the test suite. You may call this method multiple times across mulitple +[QuickConfigure configure:] methods in order to define several closures to run before each example. /// @@ -155,7 +155,7 @@ SWIFT_CLASS("_TtC5Quick13Configuration") /// \param closure The closure to be executed before each example /// in the test suite. - (void)beforeEach:(void (^ _Nonnull)(void))closure; -- (void)afterEachWithMetadata:(void (^ _Nonnull)(ExampleMetadata * _Nonnull))closure; +- (void)afterEachWithMetadata:(void (^ _Nonnull)(ExampleMetadata * _Nonnull exampleMetadata))closure; /// Like Quick.DSL.afterEach, this configures Quick to execute the given closure after each example that is run. The closure passed to this method is executed after each example Quick runs, globally across the test suite. You may call this method multiple times across mulitple +[QuickConfigure configure:] methods in order to define several closures to run after each example. /// diff --git a/Carthage/Build/iOS/Quick.framework/Info.plist b/Carthage/Build/iOS/Quick.framework/Info.plist index 1a473bd..e0079bd 100644 Binary files a/Carthage/Build/iOS/Quick.framework/Info.plist and b/Carthage/Build/iOS/Quick.framework/Info.plist differ diff --git a/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm.swiftmodule b/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm.swiftmodule index c1dd6f4..efc47d1 100644 Binary files a/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm.swiftmodule and b/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm.swiftmodule differ diff --git a/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm64.swiftmodule b/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm64.swiftmodule index 35f9316..ae04ecc 100644 Binary files a/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm64.swiftmodule and b/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm64.swiftmodule differ diff --git a/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/i386.swiftmodule b/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/i386.swiftmodule index ea8cdd8..2e87295 100644 Binary files a/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/i386.swiftmodule and b/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/i386.swiftmodule differ diff --git a/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/x86_64.swiftmodule b/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/x86_64.swiftmodule index 9cf2bb9..0328f63 100644 Binary files a/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/x86_64.swiftmodule and b/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/x86_64.swiftmodule differ diff --git a/Carthage/Build/iOS/Quick.framework/Quick b/Carthage/Build/iOS/Quick.framework/Quick index 22a52a5..83c4c74 100755 Binary files a/Carthage/Build/iOS/Quick.framework/Quick and b/Carthage/Build/iOS/Quick.framework/Quick differ diff --git a/Carthage/Build/iOS/Realm.framework.dSYM/Contents/Info.plist b/Carthage/Build/iOS/Realm.framework.dSYM/Contents/Info.plist index d8f0315..d5cf74d 100644 --- a/Carthage/Build/iOS/Realm.framework.dSYM/Contents/Info.plist +++ b/Carthage/Build/iOS/Realm.framework.dSYM/Contents/Info.plist @@ -13,8 +13,8 @@ CFBundleSignature ???? CFBundleShortVersionString - 0.98.6 + 1.0.0 CFBundleVersion - 0.98.6 + 1.0.0 diff --git a/Carthage/Build/iOS/Realm.framework.dSYM/Contents/Resources/DWARF/Realm b/Carthage/Build/iOS/Realm.framework.dSYM/Contents/Resources/DWARF/Realm index 5e0e6c8..7f18de1 100644 Binary files a/Carthage/Build/iOS/Realm.framework.dSYM/Contents/Resources/DWARF/Realm and b/Carthage/Build/iOS/Realm.framework.dSYM/Contents/Resources/DWARF/Realm differ diff --git a/Carthage/Build/iOS/Realm.framework/CHANGELOG.md b/Carthage/Build/iOS/Realm.framework/CHANGELOG.md index 23bdb96..08dbbe8 100644 --- a/Carthage/Build/iOS/Realm.framework/CHANGELOG.md +++ b/Carthage/Build/iOS/Realm.framework/CHANGELOG.md @@ -1,3 +1,281 @@ +1.0.0 Release notes (2016-05-25) +============================================================= + +No changes since 0.103.2. + +0.103.2 Release notes (2016-05-24) +============================================================= + +### API breaking changes + +* None. + +### Enhancements + +* Improve the error messages when an I/O error occurs in `writeCopyToURL`. + +### Bugfixes + +* Fix an assertion failure which could occur when opening a Realm after opening + that Realm failed previously in some specific ways in the same run of the + application. +* Reading optional integers, floats, and doubles from within a migration block + now correctly returns `nil` rather than 0 when the stored value is `nil`. + +0.103.1 Release notes (2016-05-19) +============================================================= + +### API breaking changes + +* None. + +### Enhancements + +* None. + +### Bugfixes + +* Fix a bug that sometimes resulted in a single object's NSData properties + changing from `nil` to a zero-length non-`nil` NSData when a different object + of the same type was deleted. + +0.103.0 Release notes (2016-05-18) +============================================================= + +### API breaking changes + +* All functionality deprecated in previous releases has been removed entirely. +* Support for Xcode 6.x & Swift prior to 2.2 has been completely removed. +* `RLMResults`/`Results` now become empty when a `RLMArray`/`List` or object + they depend on is deleted, rather than throwing an exception when accessed. +* Migrations are no longer run when `deleteRealmIfMigrationNeeded` is set, + recreating the file instead. + +### Enhancements + +* Added `invalidated` properties to `RLMResults`/`Results`, `RLMLinkingObjects`/`LinkingObjects`, + `RealmCollectionType` and `AnyRealmCollection`. These properties report whether the Realm + the object is associated with has been invalidated. +* Some `NSError`s created by Realm now have more descriptive user info payloads. + +### Bugfixes + +* None. + +0.102.1 Release notes (2016-05-13) +============================================================= + +### API breaking changes + +* None. + +### Enhancements + +* Return `RLMErrorSchemaMismatch` error rather than the more generic `RLMErrorFail` + when a migration is required. +* Improve the performance of allocating instances of `Object` subclasses + that have `LinkingObjects` properties. + +### Bugfixes + +* `RLMLinkingObjects` properties declared in Swift subclasses of `RLMObject` + now work correctly. +* Fix an assertion failure when deleting all objects of a type, inserting more + objects, and then deleting some of the newly inserted objects within a single + write transaction when there is an active notification block for a different + object type which links to the objects being deleted. +* Fix crashes and/or incorrect results when querying over multiple levels of + `LinkingObjects` properties. +* Fix opening read-only Realms on multiple threads at once. +* Fix a `BadTransactLog` exception when storing dates before the unix epoch (1970-01-01). + +0.102.0 Release notes (2016-05-09) +============================================================= + +### API breaking changes + +* None. + +### Enhancements + +* Add a method to rename properties during migrations: + * Swift: `Migration.renamePropertyForClass(_:oldName:newName:)` + * Objective-C: `-[RLMMigration renamePropertyForClass:oldName:newName:]` +* Add `deleteRealmIfMigrationNeeded` to + `RLMRealmConfiguration`/`Realm.Configuration`. When this is set to `true`, + the Realm file will be automatically deleted and recreated when there is a + schema mismatch rather than migrated to the new schema. + +### Bugfixes + +* Fix `BETWEEN` queries that traverse `RLMArray`/`List` properties to ensure that + a single related object satisfies the `BETWEEN` criteria, rather than allowing + different objects in the array to satisfy the lower and upper bounds. +* Fix a race condition when a Realm is opened on one thread while it is in the + middle of being closed on another thread which could result in crashes. +* Fix a bug which could result in changes made on one thread being applied + incorrectly on other threads when those threads are refreshed. +* Fix crash when migrating to the new date format introduced in 0.101.0. +* Fix crash when querying inverse relationships when objects are deleted. + +0.101.0 Release notes (2016-05-04) +============================================================= + +### API breaking changes + +* Files written by this version of Realm cannot be read by older versions of + Realm. Existing files will automatically be upgraded when they are opened. + +### Enhancements + +* Greatly improve performance of collection change calculation for complex + object graphs, especially for ones with cycles. +* NSDate properties now support nanoseconds precision. +* Opening a single Realm file on multiple threads now shares a single memory + mapping of the file for all threads, significantly reducing the memory + required to work with large files. +* Crashing while in the middle of a write transaction no longer blocks other + processes from performing write transactions on the same file. +* Improve the performance of refreshing a Realm (including via autorefresh) + when there are live Results/RLMResults objects for that Realm. + +### Bugfixes + +* Fix an assertion failure of "!more_before || index >= std::prev(it)->second)" + in `IndexSet::do_add()`. +* Fix a crash when an `RLMArray` or `List` object is destroyed from the wrong + thread. + +0.100.0 Release notes (2016-04-29) +============================================================= + +### API breaking changes + +* `-[RLMObject linkingObjectsOfClass:forProperty]` and `Object.linkingObjects(_:forProperty:)` + are deprecated in favor of properties of type `RLMLinkingObjects` / `LinkingObjects`. + +### Enhancements + +* The automatically-maintained inverse direction of relationships can now be exposed as + properties of type `RLMLinkingObjects` / `LinkingObjects`. These properties automatically + update to reflect the objects that link to the target object, can be used in queries, and + can be filtered like other Realm collection types. +* Queries that compare objects for equality now support multi-level key paths. + +### Bugfixes + +* Fix an assertion failure when a second write transaction is committed after a + write transaction deleted the object containing an RLMArray/List which had an + active notification block. +* Queries that compare `RLMArray` / `List` properties using != now give the correct results. + +0.99.1 Release notes (2016-04-26) +============================================================= + +### API breaking changes + +* None. + +### Enhancements + +* None. + +### Bugfixes + +* Fix a scenario that could lead to the assertion failure + "m_advancer_sg->get_version_of_current_transaction() == + new_notifiers.front()->version()". + +0.99.0 Release notes (2016-04-22) +============================================================= + +### API breaking changes + +* Deprecate properties of type `id`/`AnyObject`. This type was rarely used, + rarely useful and unsupported in every other Realm binding. +* The block for `-[RLMArray addNotificationBlock:]` and + `-[RLMResults addNotificationBlock:]` now takes another parameter. +* The following Objective-C APIs have been deprecated in favor of newer or preferred versions: + +| Deprecated API | New API | +|:-------------------------------------------------------|:------------------------------------------------------| +| `-[RLMRealm removeNotification:]` | `-[RLMNotificationToken stop]` | +| `RLMRealmConfiguration.path` | `RLMRealmConfiguration.fileURL` | +| `RLMRealm.path` | `RLMRealmConfiguration.fileURL` | +| `RLMRealm.readOnly` | `RLMRealmConfiguration.readOnly` | +| `+[RLMRealm realmWithPath:]` | `+[RLMRealm realmWithURL:]` | +| `+[RLMRealm writeCopyToPath:error:]` | `+[RLMRealm writeCopyToURL:encryptionKey:error:]` | +| `+[RLMRealm writeCopyToPath:encryptionKey:error:]` | `+[RLMRealm writeCopyToURL:encryptionKey:error:]` | +| `+[RLMRealm schemaVersionAtPath:error:]` | `+[RLMRealm schemaVersionAtURL:encryptionKey:error:]` | +| `+[RLMRealm schemaVersionAtPath:encryptionKey:error:]` | `+[RLMRealm schemaVersionAtURL:encryptionKey:error:]` | + +* The following Swift APIs have been deprecated in favor of newer or preferred versions: + +| Deprecated API | New API | +|:----------------------------------------------|:-----------------------------------------| +| `Realm.removeNotification(_:)` | `NotificationToken.stop()` | +| `Realm.Configuration.path` | `Realm.Configuration.fileURL` | +| `Realm.path` | `Realm.Configuration.fileURL` | +| `Realm.readOnly` | `Realm.Configuration.readOnly` | +| `Realm.writeCopyToPath(_:encryptionKey:)` | `Realm.writeCopyToURL(_:encryptionKey:)` | +| `schemaVersionAtPath(_:encryptionKey:error:)` | `schemaVersionAtURL(_:encryptionKey:)` | + +### Enhancements + +* Add information about what rows were added, removed, or modified to the + notifications sent to the Realm collections. +* Improve error when illegally appending to an `RLMArray` / `List` property from a default value + or the standalone initializer (`init()`) before the schema is ready. + +### Bugfixes + +* Fix a use-after-free when an associated object's dealloc method is used to + remove observers from an RLMObject. +* Fix a small memory leak each time a Realm file is opened. +* Return a recoverable `RLMErrorAddressSpaceExhausted` error rather than + crash when there is insufficient available address space on Realm + initialization or write commit. + +0.98.8 Release notes (2016-04-15) +============================================================= + +### API breaking changes + +* None. + +### Enhancements + +* None. + +### Bugfixes + +* Fixed a bug that caused some encrypted files created using + `-[RLMRealm writeCopyToPath:encryptionKey:error:]` to fail to open. + +0.98.7 Release notes (2016-04-13) +============================================================= + +### API breaking changes + +* None. + +### Enhancements + +* None. + +### Bugfixes + +* Mark further initializers in Objective-C as NS_DESIGNATED_INITIALIZER to prevent that these aren't + correctly defined in Swift Object subclasses, which don't qualify for auto-inheriting the required initializers. +* `-[RLMResults indexOfObjectWithPredicate:]` now returns correct results + for `RLMResults` instances that were created by filtering an `RLMArray`. +* Adjust how RLMObjects are destroyed in order to support using an associated + object on an RLMObject to remove KVO observers from that RLMObject. +* `-[RLMResults indexOfObjectWithPredicate:]` now returns the index of the first matching object for a + sorted `RLMResults`, matching its documented behavior. +* Fix a crash when canceling a transaction that set a relationship. +* Fix a crash when a query referenced a deleted object. + 0.98.6 Release notes (2016-03-25) ============================================================= diff --git a/Carthage/Build/iOS/Realm.framework/Headers/RLMArray.h b/Carthage/Build/iOS/Realm.framework/Headers/RLMArray.h index c1fe14a..fc2ef9f 100644 --- a/Carthage/Build/iOS/Realm.framework/Headers/RLMArray.h +++ b/Carthage/Build/iOS/Realm.framework/Headers/RLMArray.h @@ -19,67 +19,65 @@ #import #import -#import -RLM_ASSUME_NONNULL_BEGIN +NS_ASSUME_NONNULL_BEGIN -@class RLMObject, RLMRealm, RLMResults RLM_GENERIC_COLLECTION, RLMNotificationToken; +@class RLMObject, RLMRealm, RLMResults, RLMNotificationToken; /** + `RLMArray` is the container type in Realm used to define to-many relationships. - RLMArray is the container type in Realm used to define to-many relationships. - - Unlike an NSArray, RLMArrays hold a single type, specified by the `objectClassName` property. + Unlike an `NSArray`, `RLMArray`s hold a single type, specified by the `objectClassName` property. This is referred to in these docs as the “type” of the array. - When declaring an RLMArray property, the type must be marked as conforming to a + When declaring an `RLMArray` property, the type must be marked as conforming to a protocol by the same name as the objects it should contain (see the - `RLM_ARRAY_TYPE` macro). RLMArray properties can also use Objective-C generics - if available. For example: + `RLM_ARRAY_TYPE` macro). In addition, the property can be declared using Objective-C + generics for better compile-time type safety. RLM_ARRAY_TYPE(ObjectType) ... @property RLMArray *arrayOfObjectTypes; - RLMArrays can be queried with the same predicates as RLMObject and RLMResults. + `RLMArray`s can be queried with the same predicates as `RLMObject` and `RLMResult`s. - RLMArrays cannot be created directly. RLMArray properties on RLMObjects are + `RLMArray`s cannot be created directly. `RLMArray` properties on `RLMObject`s are lazily created when accessed, or can be obtained by querying a Realm. ### Key-Value Observing - RLMArray supports array key-value observing on RLMArray properties on RLMObject - subclasses, and the `invalidated` property on RLMArray instances themselves is - key-value observing compliant when the RLMArray is attached to a persisted - RLMObject (RLMArrays on standalone RLMObjects will never become invalidated). + `RLMArray` supports array key-value observing on `RLMArray` properties on `RLMObject` + subclasses, and the `invalidated` property on `RLMArray` instances themselves is + key-value observing compliant when the `RLMArray` is attached to a managed + `RLMObject` (`RLMArray`s on unmanaged `RLMObject`s will never become invalidated). - Because RLMArrays are attached to the object which they are a property of, they + Because `RLMArray`s are attached to the object which they are a property of, they do not require using the mutable collection proxy objects from `-mutableArrayValueForKey:` or KVC-compatible mutation methods on the containing - object. Instead, you can call the mutation methods on the RLMArray directly. + object. Instead, you can call the mutation methods on the `RLMArray` directly. */ -@interface RLMArray RLM_GENERIC_COLLECTION : NSObject +@interface RLMArray : NSObject #pragma mark - Properties - + /** - Number of objects in the array. + The number of objects in the array. */ @property (nonatomic, readonly, assign) NSUInteger count; /** - The class name (i.e. type) of the RLMObjects contained in this RLMArray. + The class name (i.e. type) of the `RLMObject`s contained in the array. */ @property (nonatomic, readonly, copy) NSString *objectClassName; /** - The Realm in which this array is persisted. Returns nil for standalone arrays. + The Realm which manages the array. Returns `nil` for unmanaged arrays. */ @property (nonatomic, readonly, nullable) RLMRealm *realm; /** - Indicates if an array can no longer be accessed. + Indicates if the array can no longer be accessed. */ @property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated; @@ -90,25 +88,25 @@ RLM_ASSUME_NONNULL_BEGIN @param index The index to look up. - @return An RLMObject of the type contained in this RLMArray. + @return An `RLMObject` of the type contained in the array. */ - (RLMObjectType)objectAtIndex:(NSUInteger)index; /** Returns the first object in the array. - Returns `nil` if called on an empty RLMArray. + Returns `nil` if called on an empty array. - @return An RLMObject of the type contained in this RLMArray. + @return An `RLMObject` of the type contained in the array. */ - (nullable RLMObjectType)firstObject; /** Returns the last object in the array. - Returns `nil` if called on an empty RLMArray. + Returns `nil` if called on an empty array. - @return An RLMObject of the type contained in this RLMArray. + @return An `RLMObject` of the type contained in the array. */ - (nullable RLMObjectType)lastObject; @@ -119,77 +117,77 @@ RLM_ASSUME_NONNULL_BEGIN /** Adds an object to the end of the array. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. - @param object An RLMObject of the type contained in this RLMArray. + @param object An `RLMObject` of the type contained in the array. */ -- (void)addObject:(RLMObjectArgument)object; +- (void)addObject:(RLMObjectType)object; /** - Adds an array of objects at the end of the array. + Adds an array of objects to the end of the array. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. - @param objects An enumerable object such as NSArray or RLMResults which contains objects of the - same class as this RLMArray. + @param objects An enumerable object such as `NSArray` or `RLMResults` which contains objects of the + same class as the array. */ - (void)addObjects:(id)objects; /** Inserts an object at the given index. - Throws an exception when the index exceeds the bounds of this RLMArray. + Throws an exception if the index exceeds the bounds of the array. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. - @param anObject An RLMObject of the type contained in this RLMArray. - @param index The array index at which the object is inserted. + @param anObject An `RLMObject` of the type contained in the array. + @param index The index at which to insert the object. */ -- (void)insertObject:(RLMObjectArgument)anObject atIndex:(NSUInteger)index; +- (void)insertObject:(RLMObjectType)anObject atIndex:(NSUInteger)index; /** - Removes an object at a given index. + Removes an object at the given index. - Throws an exception when the index exceeds the bounds of this RLMArray. + Throws an exception if the index exceeds the bounds of the array. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. @param index The array index identifying the object to be removed. */ - (void)removeObjectAtIndex:(NSUInteger)index; /** - Removes the last object in an RLMArray. + Removes the last object in the array. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. */ - (void)removeLastObject; /** - Removes all objects from an RLMArray. + Removes all objects from the array. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. */ - (void)removeAllObjects; /** Replaces an object at the given index with a new object. - Throws an exception when the index exceeds the bounds of this RLMArray. + Throws an exception if the index exceeds the bounds of the array. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. - @param index The array index of the object to be replaced. - @param anObject An object (of the same type as returned from the objectClassName selector). + @param index The index of the object to be replaced. + @param anObject An object (of the same type as returned from the `objectClassName` selector). */ -- (void)replaceObjectAtIndex:(NSUInteger)index withObject:(RLMObjectArgument)anObject; +- (void)replaceObjectAtIndex:(NSUInteger)index withObject:(RLMObjectType)anObject; /** Moves the object at the given source index to the given destination index. - Throws an exception when the index exceeds the bounds of this RLMArray. + Throws an exception if the index exceeds the bounds of the array. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. @param sourceIndex The index of the object to be moved. @param destinationIndex The index to which the object at `sourceIndex` should be moved. @@ -197,34 +195,34 @@ RLM_ASSUME_NONNULL_BEGIN - (void)moveObjectAtIndex:(NSUInteger)sourceIndex toIndex:(NSUInteger)destinationIndex; /** - Exchanges the objects in the array at given indexes. + Exchanges the objects in the array at given indices. - Throws an exception when either index exceeds the bounds of this RLMArray. + Throws an exception if either index exceeds the bounds of the array. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. - @param index1 The index of the object with which to replace the object at index `index2`. - @param index2 The index of the object with which to replace the object at index `index1`. + @param index1 The index of the object which should replace the object at index `index2`. + @param index2 The index of the object which should replace the object at index `index1`. */ - (void)exchangeObjectAtIndex:(NSUInteger)index1 withObjectAtIndex:(NSUInteger)index2; #pragma mark - Querying an Array /** - Gets the index of an object. + Returns the index of an object in the array. - Returns NSNotFound if the object is not found in this RLMArray. + Returns `NSNotFound` if the object is not found in the array. - @param object An object (of the same type as returned from the objectClassName selector). + @param object An object (of the same type as returned from the `objectClassName` selector). */ -- (NSUInteger)indexOfObject:(RLMObjectArgument)object; +- (NSUInteger)indexOfObject:(RLMObjectType)object; /** - Gets the index of the first object matching the predicate. + Returns the index of the first object in the array matching the predicate. - @param predicateFormat The predicate format string which can accept variable arguments. + @param predicateFormat A predicate format string, optionally followed by a variable number of arguments. - @return Index of object or NSNotFound if the object is not found in this RLMArray. + @return The index of the object, or `NSNotFound` if the object is not found in the array. */ - (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...; @@ -232,53 +230,53 @@ RLM_ASSUME_NONNULL_BEGIN - (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args; /** - Gets the index of the first object matching the predicate. + Returns the index of the first object in the array matching the predicate. - @param predicate The predicate to filter the objects. + @param predicate The predicate with which to filter the objects. - @return Index of object or NSNotFound if the object is not found in this RLMArray. + @return The index of the object, or `NSNotFound` if the object is not found in the array. */ - (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate; /** - Get objects matching the given predicate in the RLMArray. + Returns all the objects matching the given predicate in the array. - @param predicateFormat The predicate format string which can accept variable arguments. + @param predicateFormat A predicate format string, optionally followed by a variable number of arguments. - @return An RLMResults of objects that match the given predicate + @return An `RLMResults` of objects that match the given predicate. */ -- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat, ...; +- (RLMResults *)objectsWhere:(NSString *)predicateFormat, ...; /// :nodoc: -- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat args:(va_list)args; +- (RLMResults *)objectsWhere:(NSString *)predicateFormat args:(va_list)args; /** - Get objects matching the given predicate in the RLMArray. + Returns all the objects matching the given predicate in the array. - @param predicate The predicate to filter the objects. + @param predicate The predicate with which to filter the objects. - @return An RLMResults of objects that match the given predicate + @return An `RLMResults` of objects that match the given predicate */ -- (RLMResults RLM_GENERIC_RETURN*)objectsWithPredicate:(NSPredicate *)predicate; +- (RLMResults *)objectsWithPredicate:(NSPredicate *)predicate; /** - Get a sorted RLMResults from an RLMArray + Returns a sorted `RLMResults` from the array. @param property The property name to sort by. - @param ascending The direction to sort by. + @param ascending The direction to sort in. - @return An RLMResults sorted by the specified property. + @return An `RLMResults` sorted by the specified property. */ -- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending; +- (RLMResults *)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending; /** - Get a sorted RLMResults from an RLMArray + Returns a sorted `RLMResults` from the array. @param properties An array of `RLMSortDescriptor`s to sort by. - @return An RLMResults sorted by the specified properties. + @return An `RLMResults` sorted by the specified properties. */ -- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingDescriptors:(NSArray *)properties; +- (RLMResults *)sortedResultsUsingDescriptors:(NSArray *)properties; /// :nodoc: - (RLMObjectType)objectAtIndexedSubscript:(NSUInteger)index; @@ -289,76 +287,83 @@ RLM_ASSUME_NONNULL_BEGIN #pragma mark - Notifications /** - Register a block to be called each time the RLMArray changes. + Registers a block to be called each time the array changes. The block will be asynchronously called with the initial array, and then - called again after each write transaction which changes the array or any - items contained in the array. You must retain the returned token for as long as - you want the block to continue to be called. To stop receiving updates, call - `-stop` on the token. - - The error parameter will always be `nil`, and is present only for compatiblity - with the RLMResults version of this method, which can potentially fail. + called again after each write transaction which changes any of the objects in + the array, which objects are in the results, or the order of the objects in the + array. + + The `changes` parameter will be `nil` the first time the block is called. + For each call after that, it will contain information about + which rows in the array were added, removed or modified. If a write transaction + did not modify any objects in the array, the block is not called at all. + See the `RLMCollectionChange` documentation for information on how the changes + are reported and an example of updating a `UITableView`. + + If an error occurs the block will be called with `nil` for the results + parameter and a non-`nil` error. Currently the only errors that can occur are + when opening the Realm on the background worker thread. + + Notifications are delivered via the standard run loop, and so can't be + delivered while the run loop is blocked by other activity. When + notifications can't be delivered instantly, multiple notifications may be + coalesced into a single notification. This can include the notification + with the initial results. For example, the following code performs a write + transaction immediately after adding the notification block, so there is no + opportunity for the initial notification to be delivered first. As a + result, the initial notification will reflect the state of the Realm after + the write transaction. + + Person *person = [[Person allObjectsInRealm:realm] firstObject]; + NSLog(@"person.dogs.count: %zu", person.dogs.count); // => 0 + self.token = [person.dogs addNotificationBlock(RLMArray *dogs, + RLMCollectionChange *changes, + NSError *error) { + // Only fired once for the example + NSLog(@"dogs.count: %zu", dogs.count) // => 1 + }]; + [realm transactionWithBlock:^{ + Dog *dog = [[Dog alloc] init]; + dog.name = @"Rex"; + [person.dogs addObject:dog]; + }]; + // end of run loop execution context + + You must retain the returned token for as long as you want updates to continue + to be sent to the block. To stop receiving updates, call `-stop` on the token. + + @warning This method cannot be called during a write transaction, or when the + containing Realm is read-only. + @warning This method may only be called on a managed array. @param block The block to be called each time the array changes. - @return A token which must be held for as long as you want notifications to be delivered. + @return A token which must be held for as long as you want updates to be delivered. */ -- (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMArray RLM_GENERIC_RETURN *array, NSError *))block RLM_WARN_UNUSED_RESULT; +- (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMArray *__nullable array, + RLMCollectionChange *__nullable changes, + NSError *__nullable error))block __attribute__((warn_unused_result)); #pragma mark - Unavailable Methods /** - -[RLMArray init] is not available because RLMArrays cannot be created directly. - RLMArray properties on RLMObjects are lazily created when accessed, or can be obtained by querying a Realm. + `-[RLMArray init]` is not available because `RLMArray`s cannot be created directly. + `RLMArray` properties on `RLMObject`s are lazily created when accessed, or can be obtained by querying a Realm. */ - (instancetype)init __attribute__((unavailable("RLMArrays cannot be created directly"))); /** - +[RLMArray new] is not available because RLMArrays cannot be created directly. - RLMArray properties on RLMObjects are lazily created when accessed, or can be obtained by querying a Realm. + `+[RLMArray new]` is not available because `RLMArray`s cannot be created directly. + `RLMArray` properties on `RLMObject`s are lazily created when accessed, or can be obtained by querying a Realm. */ + (instancetype)new __attribute__((unavailable("RLMArrays cannot be created directly"))); @end -/** - An RLMSortDescriptor stores a property name and a sort order for use with - `sortedResultsUsingDescriptors:`. It is similar to NSSortDescriptor, but supports - only the subset of functionality which can be efficiently run by the query - engine. RLMSortDescriptor instances are immutable. - */ -@interface RLMSortDescriptor : NSObject - -#pragma mark - Properties - -/** - The name of the property which this sort descriptor orders results by. - */ -@property (nonatomic, readonly) NSString *property; - -/** - Whether this descriptor sorts in ascending or descending order. - */ -@property (nonatomic, readonly) BOOL ascending; - -#pragma mark - Methods - -/** - Returns a new sort descriptor for the given property name and order. - */ -+ (instancetype)sortDescriptorWithProperty:(NSString *)propertyName ascending:(BOOL)ascending; - -/** - Returns a copy of the receiver with the sort order reversed. - */ -- (instancetype)reversedSortDescriptor; - -@end - /// :nodoc: @interface RLMArray (Swift) // for use only in Swift class definitions - (instancetype)initWithObjectClassName:(NSString *)objectClassName; @end -RLM_ASSUME_NONNULL_END +NS_ASSUME_NONNULL_END diff --git a/Carthage/Build/iOS/Realm.framework/Headers/RLMCollection.h b/Carthage/Build/iOS/Realm.framework/Headers/RLMCollection.h index a1a4efb..030fcc7 100644 --- a/Carthage/Build/iOS/Realm.framework/Headers/RLMCollection.h +++ b/Carthage/Build/iOS/Realm.framework/Headers/RLMCollection.h @@ -16,14 +16,15 @@ // //////////////////////////////////////////////////////////////////////////// -#import +#import -RLM_ASSUME_NONNULL_BEGIN +NS_ASSUME_NONNULL_BEGIN -@class RLMRealm, RLMResults, RLMObject, RLMSortDescriptor, RLMNotificationToken; +@class RLMRealm, RLMResults, RLMObject, RLMSortDescriptor, RLMNotificationToken, RLMCollectionChange; /** - A homogenous collection of `RLMObject`s like `RLMArray` or `RLMResults`. + A homogenous collection of `RLMObject` instances. Examples of conforming types include `RLMArray`, + `RLMResults`, and `RLMLinkingObjects`. */ @protocol RLMCollection @@ -32,17 +33,17 @@ RLM_ASSUME_NONNULL_BEGIN #pragma mark - Properties /** - Number of objects in the collection. + The number of objects in the collection. */ @property (nonatomic, readonly, assign) NSUInteger count; /** - The class name (i.e. type) of the RLMObjects contained in this RLMCollection. + The class name (i.e. type) of the `RLMObject`s contained in the collection. */ @property (nonatomic, readonly, copy) NSString *objectClassName; /** - The Realm in which this collection is persisted. Returns nil for standalone collections. + The Realm which manages the collection, or `nil` for unmanaged collections. */ @property (nonatomic, readonly) RLMRealm *realm; @@ -50,48 +51,48 @@ RLM_ASSUME_NONNULL_BEGIN /** Returns the object at the index specified. - + @param index The index to look up. - - @return An RLMObject of the type contained in this RLMCollection. + + @return An `RLMObject` of the type contained in the collection. */ - (id)objectAtIndex:(NSUInteger)index; /** Returns the first object in the collection. - - Returns `nil` if called on an empty RLMCollection. - - @return An RLMObject of the type contained in this RLMCollection. + + Returns `nil` if called on an empty collection. + + @return An `RLMObject` of the type contained in the collection. */ - (nullable id)firstObject; /** Returns the last object in the collection. - - Returns `nil` if called on an empty RLMCollection. - - @return An RLMObject of the type contained in this RLMCollection. + + Returns `nil` if called on an empty collection. + + @return An `RLMObject` of the type contained in the collection. */ - (nullable id)lastObject; #pragma mark - Querying a Collection /** - Gets the index of an object. - - Returns NSNotFound if the object is not found in this RLMCollection. - - @param object An object (of the same type as returned from the objectClassName selector). + Returns the index of an object in the collection. + + Returns `NSNotFound` if the object is not found in the collection. + + @param object An object (of the same type as returned from the `objectClassName` selector). */ - (NSUInteger)indexOfObject:(RLMObject *)object; /** - Gets the index of the first object matching the predicate. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return Index of object or NSNotFound if the object is not found in this RLMCollection. + Returns the index of the first object in the collection matching the predicate. + + @param predicateFormat A predicate format string, optionally followed by a variable number of arguments. + + @return The index of the object, or `NSNotFound` if the object is not found in the collection. */ - (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...; @@ -99,20 +100,20 @@ RLM_ASSUME_NONNULL_BEGIN - (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args; /** - Gets the index of the first object matching the predicate. - - @param predicate The predicate to filter the objects. - - @return Index of object or NSNotFound if the object is not found in this RLMCollection. + Returns the index of the first object in the collection matching the predicate. + + @param predicate The predicate with which to filter the objects. + + @return The index of the object, or `NSNotFound` if the object is not found in the collection. */ - (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate; /** - Get objects matching the given predicate in the RLMCollection. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return An RLMResults of objects that match the given predicate + Returns all objects matching the given predicate in the collection. + + @param predicateFormat A predicate format string, optionally followed by a variable number of arguments. + + @return An `RLMResults` containing objects that match the given predicate. */ - (RLMResults *)objectsWhere:(NSString *)predicateFormat, ...; @@ -120,49 +121,49 @@ RLM_ASSUME_NONNULL_BEGIN - (RLMResults *)objectsWhere:(NSString *)predicateFormat args:(va_list)args; /** - Get objects matching the given predicate in the RLMCollection. - - @param predicate The predicate to filter the objects. - - @return An RLMResults of objects that match the given predicate + Returns all objects matching the given predicate in the collection. + + @param predicate The predicate with which to filter the objects. + + @return An `RLMResults` containing objects that match the given predicate. */ - (RLMResults *)objectsWithPredicate:(NSPredicate *)predicate; /** - Get a sorted RLMResults from an RLMCollection. - + Returns a sorted `RLMResults` from the collection. + @param property The property name to sort by. - @param ascending The direction to sort by. - - @return An RLMResults sorted by the specified property. + @param ascending The direction to sort in. + + @return An `RLMResults` sorted by the specified property. */ - (RLMResults *)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending; /** - Get a sorted RLMResults from an RLMCollection. - + Returns a sorted `RLMResults` from the collection. + @param properties An array of `RLMSortDescriptor`s to sort by. - - @return An RLMResults sorted by the specified properties. + + @return An `RLMResults` sorted by the specified properties. */ -- (RLMResults *)sortedResultsUsingDescriptors:(NSArray RLM_GENERIC(RLMSortDescriptor *) *)properties; +- (RLMResults *)sortedResultsUsingDescriptors:(NSArray *)properties; /// :nodoc: - (id)objectAtIndexedSubscript:(NSUInteger)index; /** - Returns an NSArray containing the results of invoking `valueForKey:` using key on each of the collection's objects. + Returns an `NSArray` containing the results of invoking `valueForKey:` using `key` on each of the collection's objects. @param key The name of the property. - @return NSArray containing the results of invoking `valueForKey:` using key on each of the collection's objects. + @return An `NSArray` containing results. */ - (nullable id)valueForKey:(NSString *)key; /** - Invokes `setValue:forKey:` on each of the collection's objects using the specified value and key. + 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. + @warning This method may only be called during a write transaction. @param value The object value. @param key The name of the property. @@ -172,13 +173,153 @@ RLM_ASSUME_NONNULL_BEGIN #pragma mark - Notifications /** - Register a block to be called each time the collection changes. + Registers a block to be called each time the collection changes. + + The block will be asynchronously called with the initial collection, and then + called again after each write transaction which changes either any of the + objects in the collection, or which objects are in the collection. + + The `change` parameter will be `nil` the first time the block is called. + For each call after that, it will contain information about + which rows in the collection were added, removed or modified. If a write transaction + did not modify any objects in this collection, the block is not called at all. + See the `RLMCollectionChange` documentation for information on how the changes + are reported and an example of updating a `UITableView`. + + If an error occurs the block will be called with `nil` for the collection + parameter and a non-`nil` error. Currently the only errors that can occur are + when opening the Realm on the background worker thread. + + At the time when the block is called, the collection object will be fully + evaluated and up-to-date, and as long as you do not perform a write transaction + on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will + never perform blocking work. + + Notifications are delivered via the standard run loop, and so can't be + delivered while the run loop is blocked by other activity. When + notifications can't be delivered instantly, multiple notifications may be + coalesced into a single notification. This can include the notification + with the initial collection. For example, the following code performs a write + transaction immediately after adding the notification block, so there is no + opportunity for the initial notification to be delivered first. As a + result, the initial notification will reflect the state of the Realm after + the write transaction. + + id collection = [Dog allObjects]; + NSLog(@"dogs.count: %zu", dogs.count); // => 0 + self.token = [collection addNotificationBlock:^(id dogs, + RLMCollectionChange *changes, + NSError *error) { + // Only fired once for the example + NSLog(@"dogs.count: %zu", dogs.count); // => 1 + }]; + [realm transactionWithBlock:^{ + Dog *dog = [[Dog alloc] init]; + dog.name = @"Rex"; + [realm addObject:dog]; + }]; + // end of run loop execution context + + You must retain the returned token for as long as you want updates to continue + to be sent to the block. To stop receiving updates, call `-stop` on the token. + + @warning This method cannot be called during a write transaction, or when the + containing Realm is read-only. @param block The block to be called each time the collection changes. - @return A token which must be held for as long as you want notifications to be delivered. + @return A token which must be held for as long as you want collection notifications to be delivered. + */ +- (RLMNotificationToken *)addNotificationBlock:(void (^)(id __nullable collection, + RLMCollectionChange *__nullable change, + NSError *__nullable error))block __attribute__((warn_unused_result)); + +@end + +/** + An `RLMSortDescriptor` stores a property name and a sort order for use with + `sortedResultsUsingDescriptors:`. It is similar to `NSSortDescriptor`, but supports + only the subset of functionality which can be efficiently run by Realm's query + engine. + + `RLMSortDescriptor` instances are immutable. + */ +@interface RLMSortDescriptor : NSObject + +#pragma mark - Properties + +/** + The name of the property which the sort descriptor orders results by. + */ +@property (nonatomic, readonly) NSString *property; + +/** + Whether the descriptor sorts in ascending or descending order. */ -- (RLMNotificationToken *)addNotificationBlock:(void (^)(id collection))block RLM_WARN_UNUSED_RESULT; +@property (nonatomic, readonly) BOOL ascending; + +#pragma mark - Methods + +/** + Returns a new sort descriptor for the given property name and sort direction. + */ ++ (instancetype)sortDescriptorWithProperty:(NSString *)propertyName ascending:(BOOL)ascending; + +/** + Returns a copy of the receiver with the sort direction reversed. + */ +- (instancetype)reversedSortDescriptor; + +@end + +/** + A `RLMCollectionChange` object encapsulates information about changes to collections + that are reported by Realm notifications. + + `RLMCollectionChange` is passed to the notification blocks registered with + `-addNotificationBlock` on `RLMArray` and `RLMResults`, and reports what rows in the + collection changed since the last time the notification block was called. + + The change information is available in two formats: a simple array of row + indices in the collection for each type of change, and an array of index paths + in a requested section suitable for passing directly to `UITableView`'s batch + update methods. A complete example of updating a `UITableView` named `tv`: + + [tv beginUpdates]; + [tv deleteRowsAtIndexPaths:[changes deletionsInSection:0] withRowAnimation:UITableViewRowAnimationAutomatic]; + [tv insertRowsAtIndexPaths:[changes insertionsInSection:0] withRowAnimation:UITableViewRowAnimationAutomatic]; + [tv reloadRowsAtIndexPaths:[changes modificationsInSection:0] withRowAnimation:UITableViewRowAnimationAutomatic]; + [tv endUpdates]; + + All of the arrays in an `RLMCollectionChange` are always sorted in ascending order. + */ +@interface RLMCollectionChange : NSObject +/// The indices of objects in the previous version of the collection which have +/// been removed from this one. +@property (nonatomic, readonly) NSArray *deletions; + +/// The indices in the new version of the collection which were newly inserted. +@property (nonatomic, readonly) NSArray *insertions; + +/** + The indices in the new version of the collection which were modified. + + For `RLMResults`, this means that one or more of the properties of the object at + that index were modified (or an object linked to by that object was + modified). + + For `RLMArray`, the array itself being modified to contain a + different object at that index will also be reported as a modification. + */ +@property (nonatomic, readonly) NSArray *modifications; + +/// Returns the index paths of the deletion indices in the given section. +- (NSArray *)deletionsInSection:(NSUInteger)section; + +/// Returns the index paths of the insertion indices in the given section. +- (NSArray *)insertionsInSection:(NSUInteger)section; +/// Returns the index paths of the modification indices in the given section. +- (NSArray *)modificationsInSection:(NSUInteger)section; @end -RLM_ASSUME_NONNULL_END +NS_ASSUME_NONNULL_END diff --git a/Carthage/Build/iOS/Realm.framework/Headers/RLMConstants.h b/Carthage/Build/iOS/Realm.framework/Headers/RLMConstants.h index 3befba1..4faf442 100644 --- a/Carthage/Build/iOS/Realm.framework/Headers/RLMConstants.h +++ b/Carthage/Build/iOS/Realm.framework/Headers/RLMConstants.h @@ -21,66 +21,103 @@ #pragma mark - Enums /** - Property types supported in Realm models. + `RLMPropertyType` is an enumeration describing all property types supported in Realm models. - See [Realm Models](https://realm.io/docs/objc/latest/#models) + For more information, see [Realm Models](https://realm.io/docs/objc/latest/#models). */ // Make sure numbers match those in typedef NS_ENUM(int32_t, RLMPropertyType) { #pragma mark - Primitive types - /** Integer type: NSInteger, int, long, Int (Swift) */ + /** Integers: `NSInteger`, `int`, `long`, `Int` (Swift) */ RLMPropertyTypeInt = 0, - /** Boolean type: BOOL, bool, Bool (Swift) */ + /** Booleans: `BOOL`, `bool`, `Bool` (Swift) */ RLMPropertyTypeBool = 1, - /** Float type: float, Float (Swift) */ + /** Floating-point numbers: `float`, `Float` (Swift) */ RLMPropertyTypeFloat = 9, - /** Double type: double, Double (Swift) */ + /** Double-precision floating-point numbers: `double`, `Double` (Swift) */ RLMPropertyTypeDouble = 10, #pragma mark - Object types - /** String type: NSString, String (Swift) */ + /** Strings: `NSString`, `String` (Swift) */ RLMPropertyTypeString = 2, - /** Data type: NSData */ + /** Binary data: `NSData` */ RLMPropertyTypeData = 4, - /** Any type: id, **not supported in Swift** */ + /** + Any object: `id`. + + This property type is no longer supported for new models. However, old models with any-typed properties are still + supported for migration purposes. + */ RLMPropertyTypeAny = 6, - /** Date type: NSDate */ - RLMPropertyTypeDate = 7, + /** Dates: `NSDate` */ + RLMPropertyTypeDate = 8, #pragma mark - Array/Linked object types - /** Object type. See [Realm Models](https://realm.io/docs/objc/latest/#models) */ + /** Realm model objects. See [Realm Models](https://realm.io/docs/objc/latest/#models) for more information. */ RLMPropertyTypeObject = 12, - /** Array type. See [Realm Models](http://realms.io/docs/objc/latest/#models) */ + /** Realm arrays. See [Realm Models](https://realm.io/docs/objc/latest/#models) for more information. */ RLMPropertyTypeArray = 13, + /** Realm linking objects. See [Realm Models](https://realm.io/docs/objc/latest/#models) for more information. */ + RLMPropertyTypeLinkingObjects = 14, }; /** - Enum representing all recoverable errors in Realm. + `RLMError` is an enumeration representing all recoverable errors. It is associated with the + Realm error domain specified in `RLMErrorDomain`. */ typedef NS_ENUM(NSInteger, RLMError) { - /** Returned by RLMRealm if no other specific error is returned when a realm is opened. */ + /** Denotes a general error that occurred when trying to open a Realm. */ RLMErrorFail = 1, - /** Returned by RLMRealm for any I/O related exception scenarios when a realm is opened. */ + + /** Denotes a file I/O error that occurred when trying to open a Realm. */ RLMErrorFileAccess = 2, - /** Returned by RLMRealm if the user does not have permission to open or create - the specified file in the specified access mode when the realm is opened. */ + + /** + Denotes a file permission error that ocurred when trying to open a Realm. + + This error can occur if the user does not have permission to open or create + the specified file in the specified access mode when opening a Realm. + */ RLMErrorFilePermissionDenied = 3, - /** Returned by RLMRealm if the file already exists when a copy should be written. */ + + /** Denotes an error where a file was to be written to disk, but another file with the same name already exists. */ RLMErrorFileExists = 4, - /** Returned by RLMRealm if no file was found when a realm was opened as - read-only or if the directory part of the specified path was not - found when a copy should be written. */ + + /** + Denotes an error that occurs if a file could not be found. + + This error may occur if a Realm file could not be found on disk when trying to open a + Realm as read-only, or if the directory part of the specified path was not found when + trying to write a copy. + */ RLMErrorFileNotFound = 5, - /** Returned by RLMRealm if a file format upgrade is required to open the file, but upgrades were explicilty disabled. */ + + /** + Denotes an error that occurs if a file format upgrade is required to open the file, + but upgrades were explicitly disabled. + */ RLMErrorFileFormatUpgradeRequired = 6, - /** Returned by RLMRealm if the database file is currently open in another - process which cannot share with the current process due to an - architecture mismatch. */ + + /** + Denotes an error that occurs if the database file is currently open in another + process which cannot share with the current process due to an + architecture mismatch. + + This error may occur if trying to share a Realm file between an i386 (32-bit) iOS + Simulator and the Realm Browser application. In this case, please use the 64-bit + version of the iOS Simulator. + */ RLMErrorIncompatibleLockFile = 8, + + /** Denotes an error that occurs when there is insufficient available address space. */ + RLMErrorAddressSpaceExhausted = 9, + + /** Denotes an error that occurs if there is a schema version mismatch, so that a migration is required. */ + RLMErrorSchemaMismatch = 10, }; #pragma mark - Constants @@ -88,44 +125,49 @@ typedef NS_ENUM(NSInteger, RLMError) { #pragma mark - Notification Constants /** - Posted by RLMRealm when the data in the realm has changed. + This notification is posted by a Realm when the data in that Realm has changed. - DidChange are posted after a realm has been refreshed to reflect a write - transaction, i.e. when an autorefresh occurs, `[RLMRealm refresh]` is - called, after an implicit refresh from `[RLMRealm beginWriteTransaction]`, - and after a local write transaction is committed. + More specifically, this notification is posted after a Realm has been refreshed to + reflect a write transaction. This can happen when an autorefresh occurs, when + `-[RLMRealm refresh]` is called, after an implicit refresh from `-[RLMRealm beginWriteTransaction]`, + or after a local write transaction is completed. */ extern NSString * const RLMRealmRefreshRequiredNotification; /** - Posted by RLMRealm when a write transaction has been committed to an RLMRealm on - a different thread for the same file. This is not posted if - `[RLMRealm autorefresh]` is enabled or if the RLMRealm is - refreshed before the notifcation has a chance to run. - - Realms with autorefresh disabled should normally have a handler for this - notification which calls `[RLMRealm refresh]` after doing some work. - While not refreshing is allowed, it may lead to large Realm files as Realm has - to keep an extra copy of the data for the un-refreshed RLMRealm. + This notification is posted by a Realm when a write transaction has been + committed to a Realm on a different thread for the same file. + + It is not posted if `-[RLMRealm autorefresh]` is enabled, or if the Realm is + refreshed before the notification has a chance to run. + + Realms with autorefresh disabled should normally install a handler for this + notification which calls `-[RLMRealm refresh]` after doing some work. Refreshing + the Realm is optional, but not refreshing the Realm may lead to large Realm + files. This is because Realm must keep an extra copy of the data for the stale + Realm. */ extern NSString * const RLMRealmDidChangeNotification; #pragma mark - Other Constants -/** Schema version used for uninitialized Realms */ +/** The schema version used for uninitialized Realms */ extern const uint64_t RLMNotVersioned; -/** Error domain used in Realm. */ +/** An error domain identifying Realm-specific errors. */ extern NSString * const RLMErrorDomain; -/** Key for name of Realm exceptions. */ +/** An error domain identifying non-specific system errors. */ +extern NSString * const RLMUnknownSystemErrorDomain; + +/** The corresponding value is the name of an exception thrown by Realm. */ extern NSString * const RLMExceptionName; -/** Key for Realm file version. */ +/** The corresponding value is a Realm file version. */ extern NSString * const RLMRealmVersionKey; -/** Key for Realm core version. */ +/** The corresponding key is the version of the underlying database engine. */ extern NSString * const RLMRealmCoreVersionKey; -/** Key for Realm invalidated property name. */ +/** The corresponding key is the Realm invalidated property name. */ extern NSString * const RLMInvalidatedKey; diff --git a/Carthage/Build/iOS/Realm.framework/Headers/RLMDefines.h b/Carthage/Build/iOS/Realm.framework/Headers/RLMDefines.h deleted file mode 100644 index 73afc03..0000000 --- a/Carthage/Build/iOS/Realm.framework/Headers/RLMDefines.h +++ /dev/null @@ -1,95 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2015 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMObject; - -#ifndef __has_feature -#define __has_feature(x) 0 -#endif - -#pragma mark - Generics - -#if __has_extension(objc_generics) -#define RLM_GENERIC(...) <__VA_ARGS__> -#define RLM_GENERIC_COLLECTION -#define RLM_GENERIC_RETURN -#define RLMObjectArgument RLMObjectType -#else -#define RLM_GENERIC(...) -#define RLM_GENERIC_COLLECTION -#define RLM_GENERIC_RETURN -typedef id RLMObjectType; -typedef RLMObject * RLMObjectArgument; -#endif - -#pragma mark - Nullability - -#if !__has_feature(nullability) -#ifndef __nullable -#define __nullable -#endif -#ifndef __nonnull -#define __nonnull -#endif -#ifndef __null_unspecified -#define __null_unspecified -#endif -#ifndef nullable -#define nullable -#endif -#ifndef nonnull -#define nonnull -#endif -#ifndef null_unspecified -#define null_unspecified -#endif -#endif - -#if defined(NS_ASSUME_NONNULL_BEGIN) && defined(NS_ASSUME_NONNULL_END) -#define RLM_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_BEGIN -#define RLM_ASSUME_NONNULL_END NS_ASSUME_NONNULL_END -#else -#define RLM_ASSUME_NONNULL_BEGIN -#define RLM_ASSUME_NONNULL_END -#endif - -#pragma mark - Escaping - -#if __has_attribute(noescape) -# define RLM_NOESCAPE __attribute__((noescape)) -#else -# define RLM_NOESCAPE -#endif - -#pragma mark - Unused Result - -#if __has_attribute(warn_unused_result) -# define RLM_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define RLM_WARN_UNUSED_RESULT -#endif - -#pragma mark - Swift Availability - -#if defined(NS_SWIFT_UNAVAILABLE) -# define RLM_SWIFT_UNAVAILABLE(msg) NS_SWIFT_UNAVAILABLE(msg) -#else -# define RLM_SWIFT_UNAVAILABLE(msg) -#endif diff --git a/Carthage/Build/iOS/Realm.framework/Headers/RLMMigration.h b/Carthage/Build/iOS/Realm.framework/Headers/RLMMigration.h index 3eb9b67..e3bcd48 100644 --- a/Carthage/Build/iOS/Realm.framework/Headers/RLMMigration.h +++ b/Carthage/Build/iOS/Realm.framework/Headers/RLMMigration.h @@ -17,42 +17,44 @@ //////////////////////////////////////////////////////////////////////////// #import -#import -RLM_ASSUME_NONNULL_BEGIN +NS_ASSUME_NONNULL_BEGIN @class RLMSchema; @class RLMArray; @class RLMObject; /** -Provides both the old and new versions of an object in this Realm. Object properties can only be -accessed using keyed subscripting. - -@param oldObject Object in original RLMRealm (read-only). -@param newObject Object in migrated RLMRealm (read-write). + A block type which provides both the old and new versions of an object in the Realm. Object + properties can only be accessed using keyed subscripting. + + @see `-[RLMMigration enumerateObjects:block:]` + + @param oldObject The object from the original Realm (read-only). + @param newObject The object from the migrated Realm (read-write). */ typedef void (^RLMObjectMigrationBlock)(RLMObject * __nullable oldObject, RLMObject * __nullable newObject); /** - RLMMigration is the object passed into a user defined RLMMigrationBlock when updating the version - of an RLMRealm instance. - - This object provides access to the RLMSchema current to this migration. + `RLMMigration` instances encapsulate information intended to facilitate a schema migration. + + A `RLMMigration` instance is passed into a user-defined `RLMMigrationBlock` block when updating + the version of a Realm. This instance provides access to the old and new database schemas, the + objects in the Realm, and provides functionality for modifying the Realm during the migration. */ @interface RLMMigration : NSObject #pragma mark - Properties /** - Get the old RLMSchema for the migration. This is the schema which describes the RLMRealm before the + Returns the old `RLMSchema`. This is the schema which describes the Realm before the migration is applied. */ @property (nonatomic, readonly) RLMSchema *oldSchema; /** - Get the new RLMSchema for the migration. This is the schema which describes the RLMRealm after applying - a migration. + Returns the new `RLMSchema`. This is the schema which describes the Realm after the + migration is applied. */ @property (nonatomic, readonly) RLMSchema *newSchema; @@ -60,32 +62,36 @@ typedef void (^RLMObjectMigrationBlock)(RLMObject * __nullable oldObject, RLMObj #pragma mark - Altering Objects during a Migration /** - Enumerates objects of a given type in this Realm, providing both the old and new versions of each object. - Objects properties can be accessed using keyed subscripting. + Enumerates all the objects of a given type in the Realm, providing both the old and new versions + of each object. Within the block, object properties can only be accessed using keyed subscripting. - @param className The name of the RLMObject class to enumerate. + @param className The name of the `RLMObject` class to enumerate. - @warning All objects returned are of a type specific to the current migration and should not be casted - to className. Instead you should access them as RLMObjects and use keyed subscripting to access + @warning All objects returned are of a type specific to the current migration and should not be cast + to `className`. Instead, treat them as `RLMObject`s and use keyed subscripting to access properties. */ - (void)enumerateObjects:(NSString *)className block:(RLMObjectMigrationBlock)block; /** - Create an RLMObject of type `className` in the Realm being migrated. + Creates and returns an `RLMObject` instance of type `className` in the Realm being migrated. - @param className The name of the RLMObject class to create. - @param value The value used to populate the created object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. + @param className The name of the `RLMObject` class to create. + @param value The value used to populate the object. This can be any key-value coding compliant + object, or an array or dictionary returned from the methods in `NSJSONSerialization`, or + an `NSArray` containing one element for each persisted property. An exception will be + thrown if any required properties are not present and those properties were not defined with + default values. - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. + When passing in an `NSArray`, all properties must be present, + valid and in the same order as the properties defined in the model. */ --(RLMObject *)createObject:(NSString *)className withValue:(id)value; +- (RLMObject *)createObject:(NSString *)className withValue:(id)value; /** - Delete an object from a Realm during a migration. This can be called within `enumerateObjects:block:`. + Deletes an object from a Realm during a migration. + + It is permitted to call this method from within the block passed to `-[enumerateObjects:block:]`. @param object Object to be deleted from the Realm being migrated. */ @@ -93,15 +99,28 @@ typedef void (^RLMObjectMigrationBlock)(RLMObject * __nullable oldObject, RLMObj /** Deletes the data for the class with the given name. - This deletes all objects of the given class, and if the RLMObject subclass no longer exists in your program, - cleans up any remaining metadata for the class in the Realm file. - @param name The name of the RLMObject class to delete. + All objects of the given class will be deleted. If the `RLMObject` subclass no longer exists in your program, + any remaining metadata for the class will be removed from the Realm file. - @return whether there was any data to delete. + @param name The name of the `RLMObject` class to delete. + + @return A Boolean value indicating whether there was any data to delete. */ - (BOOL)deleteDataForClassName:(NSString *)name; +/** + Renames a property of the given class from `oldName` to `newName`. + + @param className The name of the class whose property should be renamed. This class must be present + in both the old and new Realm schemas. + @param oldName The old name for the property to be renamed. There must not be a property with this name in the + class as defined by the new Realm schema. + @param newName The new name for the property to be renamed. There must not be a property with this name in the + class as defined by the old Realm schema. + */ +- (void)renamePropertyForClass:(NSString *)className oldName:(NSString *)oldName newName:(NSString *)newName; + @end -RLM_ASSUME_NONNULL_END +NS_ASSUME_NONNULL_END diff --git a/Carthage/Build/iOS/Realm.framework/Headers/RLMObject.h b/Carthage/Build/iOS/Realm.framework/Headers/RLMObject.h index 0047be1..1598d52 100644 --- a/Carthage/Build/iOS/Realm.framework/Headers/RLMObject.h +++ b/Carthage/Build/iOS/Realm.framework/Headers/RLMObject.h @@ -20,17 +20,19 @@ #import -RLM_ASSUME_NONNULL_BEGIN +NS_ASSUME_NONNULL_BEGIN +@class RLMPropertyDescriptor; @class RLMRealm; @class RLMResults; @class RLMObjectSchema; /** - - In Realm you define your model classes by subclassing `RLMObject` and adding properties to be persisted. - You then instantiate and use your custom subclasses instead of using the `RLMObject` class directly. - + `RLMObject` is a base class for model objects representing data stored in Realms. + + Define your model classes by subclassing `RLMObject` and adding properties to be persisted. + Then instantiate and use your custom subclasses instead of using the `RLMObject` class directly. + // Dog.h @interface Dog : RLMObject @property NSString *name; @@ -48,15 +50,19 @@ RLM_ASSUME_NONNULL_BEGIN - `BOOL` or `bool` - `NSDate` - `NSData` - - `NSNumber`, where X is one of RLMInt, RLMFloat, RLMDouble or RLMBool, for optional number properties - - `RLMObject` subclasses, so you can have many-to-one relationships. - - `RLMArray`, where X is an `RLMObject` subclass, so you can have many-to-many relationships. + - `NSNumber`, where `X` is one of `RLMInt`, `RLMFloat`, `RLMDouble` or `RLMBool`, for optional number properties + - `RLMObject` subclasses, to model many-to-one relationships. + - `RLMArray`, where `X` is an `RLMObject` subclass, to model many-to-many relationships. ### Querying - You can query an object directly via the class methods: `allObjects`, `objectsWhere:`, and `objectsWithPredicate:`. - These methods allow you to easily query a custom subclass for instances of this class in the - default Realm. To search in a Realm other than the default Realm use the interface on an RLMRealm instance. + You can initiate queries directly via the class methods: `allObjects`, `objectsWhere:`, and `objectsWithPredicate:`. + These methods allow you to easily query a custom subclass for instances of that class in the default Realm. + + To search in a Realm other than the default Realm, use the `allObjectsInRealm:`, `objectsInRealm:where:`, + and `objectsInRealm:withPredicate:` class methods. + + @see `RLMRealm` ### Relationships @@ -66,18 +72,19 @@ RLM_ASSUME_NONNULL_BEGIN All `RLMObject` properties (including properties you create in subclasses) are [Key-Value Observing compliant](https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/KeyValueObserving/KeyValueObserving.html), - except for `realm` and `objectSchema`. There are several Realm-specific things - to keep in mind when observing Realm objects: + except for `realm` and `objectSchema`. + + Keep the following tips in mind when observing Realm objects: 1. Unlike `NSMutableArray` properties, `RLMArray` properties do not require using the proxy object returned from `-mutableArrayValueForKey:`, or defining KVC mutation methods on the containing class. You can simply call methods on - the RLMArray directly and the changes will be observed by the containing + the `RLMArray` directly; any changes will be automatically observed by the containing object. - 2. Standalone `RLMObjects` cannot be added to a Realm while they have any + 2. Unmanaged `RLMObject` instances cannot be added to a Realm while they have any observed properties. - 3. Modifying persisted `RLMObjects` in `-observeValueForKeyPath:ofObject:change:context:` - is problematic. Properties may change when the Realm is not in a write + 3. Modifying managed `RLMObject`s within `-observeValueForKeyPath:ofObject:change:context:` + is not recommended. Properties may change even when the Realm is not in a write transaction (for example, when `-[RLMRealm refresh]` is called after changes are made on a different thread), and notifications sent prior to the change being applied (when `NSKeyValueObservingOptionPrior` is used) may be sent at @@ -89,29 +96,29 @@ RLM_ASSUME_NONNULL_BEGIN #pragma mark - Creating & Initializing Objects /** - Initialize a standalone RLMObject - - Initialize an unpersisted instance of this object. - Call addObject: on an RLMRealm to add standalone object to a realm. + Initializes an unmanaged instance of a Realm object. + + Call `addObject:` on a `RLMRealm` instance to add an unmanaged object into that Realm. - @see [RLMRealm addObject:]: + @see `[RLMRealm addObject:]` */ - (instancetype)init NS_DESIGNATED_INITIALIZER; /** - Initialize a standalone RLMObject with values from an NSArray or NSDictionary + Initializes an unmanaged instance of a Realm object. - Initialize an unpersisted instance of this object. - Call addObject: on an RLMRealm to add standalone object to a realm. + Pass in an `NSArray` or `NSDictionary` instance to set the values of the object's properties. + + Call `addObject:` on a `RLMRealm` instance to add an unmanaged object into that Realm. - @see [RLMRealm addObject:]: + @see `[RLMRealm addObject:]` */ - (instancetype)initWithValue:(id)value NS_DESIGNATED_INITIALIZER; /** - Helper to return the class name for an RLMObject subclass. + Returns the class name for a Realm object subclass. @warning Do not override. Realm relies on this method returning the exact class name. @@ -121,110 +128,114 @@ RLM_ASSUME_NONNULL_BEGIN + (NSString *)className; /** - Create an RLMObject in the default Realm with a given value. - - Creates an instance of this object and adds it to the default Realm populating - the object with the given value. + Creates an instance of a Realm object with a given value, and adds it to the default Realm. - If nested objects are included in the argument, `createInDefaultRealmWithValue:` will be called + If nested objects are included in the argument, `createInDefaultRealmWithValue:` will be recursively called on them. - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. + @param value The value used to populate the object. This can be any key-value coding compliant + object, or an array or dictionary returned from the methods in `NSJSONSerialization`, or + an `NSArray` containing one element for each persisted property. An exception will be + thrown if any required properties are not present and those properties were not defined with + default values. - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. + When passing in an `NSArray`, all properties must be present, + valid and in the same order as the properties defined in the model. - @see defaultPropertyValues + @see `defaultPropertyValues` */ + (instancetype)createInDefaultRealmWithValue:(id)value; /** - Create an RLMObject in a Realm with a given object. + Creates an instance of a Realm object with a given value, and adds it to the specified Realm. - Creates an instance of this object and adds it to the given Realm populating - the object with the given object. - - If nested objects are included in the argument, `createInRealm:withValue:` will be called + If nested objects are included in the argument, `createInRealm:withValue:` will be recursively called on them. - @param realm The Realm in which this object is persisted. - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. - - @see defaultPropertyValues + @param realm The Realm which should manage the newly-created object. + @param value The value used to populate the object. This can be any key-value coding compliant + object, or an array or dictionary returned from the methods in `NSJSONSerialization`, or + an `NSArray` containing one element for each persisted property. An exception will be + thrown if any required properties are not present and those properties were not defined with + default values. + + When passing in an `NSArray`, all properties must be present, + valid and in the same order as the properties defined in the model. + + @see `defaultPropertyValues` */ + (instancetype)createInRealm:(RLMRealm *)realm withValue:(id)value; /** - Create or update an RLMObject in the default Realm with a given object. + Creates or updates a Realm object within the default Realm. - This method can only be called on object types with a primary key defined. If there is already - an object with the same primary key value in the default RLMRealm its values are updated and the object - is returned. Otherwise this creates and populates a new instance of this object in the default Realm. + This method may only be called on Realm object types with a primary key defined. If there is already + an object with the same primary key value in the default Realm, its values are updated and the object + is returned. Otherwise, this method creates and populates a new instance of the object in the default Realm. If nested objects are included in the argument, `createOrUpdateInDefaultRealmWithValue:` will be - called on them if have a primary key (`createInDefaultRealmWithValue:` otherwise). - - This is a no-op if the argument is an RLMObject of the same type already backed by the target realm. + recursively called on them if they have primary keys, `createInDefaultRealmWithValue:` if they do not. + + If the argument is a Realm object already managed by the default Realm, the argument's type is the same + as the receiver, and the objects have identical values for their persisted properties, this method does nothing. - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. + @param value The value used to populate the object. This can be any key-value coding compliant + object, or an array or dictionary returned from the methods in `NSJSONSerialization`, or + an `NSArray` containing one element for each persisted property. An exception will be + thrown if any required properties are not present and those properties were not defined with + default values. - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. + When passing in an `NSArray`, all properties must be present, + valid and in the same order as the properties defined in the model. - @see defaultPropertyValues, primaryKey + @see `defaultPropertyValues`, `primaryKey` */ + (instancetype)createOrUpdateInDefaultRealmWithValue:(id)value; /** - Create or update an RLMObject with a given object. + Creates or updates an Realm object within a specified Realm. - This method can only be called on object types with a primary key defined. If there is already - an object with the same primary key value in the provided RLMRealm its values are updated and the object - is returned. Otherwise this creates and populates a new instance of this object in the provided Realm. + This method may only be called on Realm object types with a primary key defined. If there is already + an object with the same primary key value in the given Realm, its values are updated and the object + is returned. Otherwise this method creates and populates a new instance of this object in the given Realm. If nested objects are included in the argument, `createOrUpdateInRealm:withValue:` will be - called on them if have a primary key (`createInRealm:withValue:` otherwise). + recursively called on them if they have primary keys, `createInRealm:withValue:` if they do not. - This is a no-op if the argument is an RLMObject of the same type already backed by the target realm. + If the argument is a Realm object already managed by the given Realm, the argument's type is the same + as the receiver, and the objects have identical values for their persisted properties, this method does nothing. - @param realm The Realm in which this object is persisted. - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. + @param realm The Realm which should own the object. + @param value The value used to populate the object. This can be any key-value coding compliant + object, or an array or dictionary returned from the methods in `NSJSONSerialization`, or + an `NSArray` containing one element for each persisted property. An exception will be + thrown if any required properties are not present and those properties were not defined with + default values. - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. + When passing in an `NSArray`, all properties must be present, + valid and in the same order as the properties defined in the model. - @see defaultPropertyValues, primaryKey + @see `defaultPropertyValues`, `primaryKey` */ + (instancetype)createOrUpdateInRealm:(RLMRealm *)realm withValue:(id)value; #pragma mark - Properties /** - The Realm in which this object is persisted. Returns nil for standalone objects. + The Realm which manages the object, or `nil` if the object is unmanaged. */ @property (nonatomic, readonly, nullable) RLMRealm *realm; /** - The ObjectSchema which lists the persisted properties for this object. + The object schema which lists the persisted properties for the object. */ @property (nonatomic, readonly) RLMObjectSchema *objectSchema; /** - Indicates if an object can no longer be accessed. + Indicates if the object can no longer be accessed because it is now invalid. - An object can no longer be accessed if the object has been deleted from the containing `realm` or - if `invalidate` is called on the containing `realm`. + An object can no longer be accessed if the object has been deleted from the Realm that manages it, or + if `invalidate` is called on that Realm. */ @property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated; @@ -232,68 +243,84 @@ RLM_ASSUME_NONNULL_BEGIN #pragma mark - Customizing your Objects /** - Return an array of property names for properties which should be indexed. Only supported - for string and int properties. - @return NSArray of property names. + Returns an array of property names for properties which should be indexed. + + Only string, integer, boolean, and `NSDate` properties are supported. + + @return An array of property names. */ -+ (NSArray RLM_GENERIC(NSString *) *)indexedProperties; ++ (NSArray *)indexedProperties; /** - Implement to indicate the default values to be used for each property. + Override this method to specify the default values to be used for each property. - @return NSDictionary mapping property names to their default values. + @return A dictionary mapping property names to their default values. */ + (nullable NSDictionary *)defaultPropertyValues; /** - Implement to designate a property as the primary key for an RLMObject subclass. Only properties of - type RLMPropertyTypeString and RLMPropertyTypeInt can be designated as the primary key. Primary key - properties enforce uniqueness for each value whenever the property is set which incurs some overhead. + Override this method to specify the name of a property to be used as the primary key. + + Only properties of types `RLMPropertyTypeString` and `RLMPropertyTypeInt` can be designated as the primary key. + Primary key properties enforce uniqueness for each value whenever the property is set, which incurs minor overhead. Indexes are created automatically for primary key properties. - @return Name of the property designated as the primary key. + @return The name of the property designated as the primary key. */ + (nullable NSString *)primaryKey; /** - Implement to return an array of property names to ignore. These properties will not be persisted - and are treated as transient. - - @return NSArray of property names to ignore. + Override this method to specify the names of properties to ignore. These properties will not be persisted within + the Realm that manages the object. + + @return An array of property names to ignore. */ -+ (nullable NSArray RLM_GENERIC(NSString *) *)ignoredProperties; ++ (nullable NSArray *)ignoredProperties; /** - Implement to return an array of property names that should not allow storing nil. + Override this method to specify the names of properties that are non-optional (i.e. cannot be assigned a `nil` value). - By default, all properties of a type that support storing nil are considered optional properties. - To require that an object in a Realm always have a non-nil value for a property, + By default, all properties of a type whose values can be set to `nil` are considered optional properties. + To require that an object in a Realm always store a non-`nil` value for a property, add the name of the property to the array returned from this method. - Currently Object properties cannot be required. Array and NSNumber properties - can, but it makes little sense to do so: arrays do not support storing nil, and + Properties of `RLMObject` type cannot be non-optional. Array and `NSNumber` properties + can be non-optional, but there is no reason to do so: arrays do not support storing nil, and if you want a non-optional number you should instead use the primitive type. - @return NSArray of property names that are required. + @return An array of property names that are required. */ -+ (NSArray RLM_GENERIC(NSString *) *)requiredProperties; ++ (NSArray *)requiredProperties; + +/** + Override this method to provide information related to properties containing linking objects. + + Each property of type `RLMLinkingObjects` must have a key in the dictionary returned by this method consisting + of the property name. The corresponding value must be an instance of `RLMPropertyDescriptor` that describes the class + and property that the property is linked to. + + return @{ @"owners": [RLMPropertyDescriptor descriptorWithClass:Owner.class propertyName:@"dogs"] }; + + @return A dictionary mapping property names to `RLMPropertyDescriptor` instances. + */ ++ (NSDictionary *)linkingObjectsProperties; #pragma mark - Getting & Querying Objects from the Default Realm /** - Get all objects of this type from the default Realm. + Returns all objects of this object type from the default Realm. - @return An RLMResults of all objects of this type in the default Realm. + @return An `RLMResults` containing all objects of this type in the default Realm. */ + (RLMResults *)allObjects; /** - Get objects matching the given predicate for this type from the default Realm. + Returns all objects of this object type matching the given predicate from the default Realm. - @param predicateFormat The predicate format string which can accept variable arguments. + @param predicateFormat A predicate format string, optionally followed by a variable number of arguments. - @return An RLMResults of objects of the subclass type in the default Realm that match the given predicate + @return An `RLMResults` containing all objects of this type in the default Realm that match the given predicate. */ + (RLMResults *)objectsWhere:(NSString *)predicateFormat, ...; @@ -302,16 +329,16 @@ RLM_ASSUME_NONNULL_BEGIN /** - Get objects matching the given predicate for this type from the default Realm. + Returns all objects of this object type matching the given predicate from the default Realm. - @param predicate The predicate to filter the objects. + @param predicate The predicate with which to filter the objects. - @return An RLMResults of objects of the subclass type in the default Realm that match the given predicate + @return An `RLMResults` containing all objects of this type in the default Realm that match the given predicate. */ + (RLMResults *)objectsWithPredicate:(nullable NSPredicate *)predicate; /** - Get the single object with the given primary key from the default Realm. + Retrieves the single instance of this object type with the given primary key from the default Realm. Returns the object from the default Realm which has the given primary key, or `nil` if the object does not exist. This is slightly faster than the otherwise @@ -319,8 +346,8 @@ RLM_ASSUME_NONNULL_BEGIN This method requires that `primaryKey` be overridden on the receiving subclass. - @return An object of the subclass type or nil if an object with the given primary key does not exist. - @see -primaryKey + @return An object of this object type, or `nil` if an object with the given primary key does not exist. + @see `-primaryKey` */ + (nullable instancetype)objectForPrimaryKey:(nullable id)primaryKey; @@ -328,21 +355,21 @@ RLM_ASSUME_NONNULL_BEGIN #pragma mark - Querying Specific Realms /** - Get all objects of this type from the specified Realm. + Returns all objects of this object type from the specified Realm. - @param realm The Realm instance to query. + @param realm The Realm to query. - @return An RLMResults of all objects of this type in the specified Realm. + @return An `RLMResults` containing all objects of this type in the specified Realm. */ + (RLMResults *)allObjectsInRealm:(RLMRealm *)realm; /** - Get objects matching the given predicate for this type from the specified Realm. + Returns all objects of this object type matching the given predicate from the specified Realm. - @param predicateFormat The predicate format string which can accept variable arguments. - @param realm The Realm instance to query. + @param predicateFormat A predicate format string, optionally followed by a variable number of arguments. + @param realm The Realm to query. - @return An RLMResults of objects of the subclass type in the specified Realm that match the given predicate + @return An `RLMResults` containing all objects of this type in the specified Realm that match the given predicate. */ + (RLMResults *)objectsInRealm:(RLMRealm *)realm where:(NSString *)predicateFormat, ...; @@ -350,17 +377,17 @@ RLM_ASSUME_NONNULL_BEGIN + (RLMResults *)objectsInRealm:(RLMRealm *)realm where:(NSString *)predicateFormat args:(va_list)args; /** - Get objects matching the given predicate for this type from the specified Realm. + Returns all objects of this object type matching the given predicate from the specified Realm. - @param predicate The predicate to filter the objects. - @param realm The Realm instance to query. + @param predicate A predicate to use to filter the elements. + @param realm The Realm to query. - @return An RLMResults of objects of the subclass type in the specified Realm that match the given predicate + @return An `RLMResults` containing all objects of this type in the specified Realm that match the given predicate. */ + (RLMResults *)objectsInRealm:(RLMRealm *)realm withPredicate:(nullable NSPredicate *)predicate; /** - Get the single object with the given primary key from the specified Realm. + Retrieves the single instance of this object type with the given primary key from the specified Realm. Returns the object from the specified Realm which has the given primary key, or `nil` if the object does not exist. This is slightly faster than the otherwise @@ -368,32 +395,23 @@ RLM_ASSUME_NONNULL_BEGIN This method requires that `primaryKey` be overridden on the receiving subclass. - @return An object of the subclass type or nil if an object with the given primary key does not exist. - @see -primaryKey + @return An object of this object type, or `nil` if an object with the given primary key does not exist. + @see `-primaryKey` */ + (nullable instancetype)objectInRealm:(RLMRealm *)realm forPrimaryKey:(nullable id)primaryKey; #pragma mark - Other Instance Methods /** - Get an `NSArray` of objects of type `className` which have this object as the given property value. This can - be used to get the inverse relationship value for `RLMObject` and `RLMArray` properties. - - @param className The type of object on which the relationship to query is defined. - @param property The name of the property which defines the relationship. - - @return An NSArray of objects of type `className` which have this object as their value for the `property` property. - */ -- (NSArray *)linkingObjectsOfClass:(NSString *)className forProperty:(NSString *)property; - -/** - Returns YES if another RLMObject points to the same object in an RLMRealm. For RLMObject types - with a primary, key, `isEqual:` is overridden to use this method (along with a corresponding - implementation for `hash`. + Returns YES if another Realm object instance points to the same object as the receiver in the Realm managing + the receiver. + + For object types with a primary, key, `isEqual:` is overridden to use this method (along with a corresponding + implementation for `hash`). - @param object The object to compare to. + @param object The object to compare the receiver to. - @return YES if the object represents the same object in the same RLMRealm. + @return A Boolean indicating whether the object represents the same object as the receiver. */ - (BOOL)isEqualToObject:(RLMObject *)object; @@ -410,9 +428,9 @@ RLM_ASSUME_NONNULL_BEGIN #pragma mark - RLMArray Property Declaration /** - Properties on RLMObjects of type RLMArray must have an associated type. A type is associated - with an RLMArray property by defining a protocol for the object type which the RLMArray will - hold. To define the protocol for an object you can use the macro RLM_ARRAY_TYPE: + Properties on `RLMObject`s of type `RLMArray` must have an associated type. A type is associated + with an `RLMArray` property by defining a protocol for the object type that the array should contain. + To define the protocol for an object, you can use the macro RLM_ARRAY_TYPE: RLM_ARRAY_TYPE(ObjectType) ... @@ -422,4 +440,4 @@ RLM_ASSUME_NONNULL_BEGIN @protocol RLM_OBJECT_SUBCLASS \ @end -RLM_ASSUME_NONNULL_END +NS_ASSUME_NONNULL_END diff --git a/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectBase.h b/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectBase.h index 739e0f0..fae8893 100644 --- a/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectBase.h +++ b/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectBase.h @@ -17,9 +17,8 @@ //////////////////////////////////////////////////////////////////////////// #import -#import -RLM_ASSUME_NONNULL_BEGIN +NS_ASSUME_NONNULL_BEGIN @class RLMRealm; @class RLMSchema; @@ -30,7 +29,7 @@ RLM_ASSUME_NONNULL_BEGIN @property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated; -- (instancetype)init; +- (instancetype)init NS_DESIGNATED_INITIALIZER; + (NSString *)className; @@ -39,4 +38,4 @@ RLM_ASSUME_NONNULL_BEGIN @end -RLM_ASSUME_NONNULL_END +NS_ASSUME_NONNULL_END diff --git a/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectBase_Dynamic.h b/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectBase_Dynamic.h index 247bdf1..c71037d 100644 --- a/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectBase_Dynamic.h +++ b/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectBase_Dynamic.h @@ -21,64 +21,59 @@ @class RLMObjectSchema, RLMRealm; /** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to retrieve `realm` via `RLMObject`. + Returns the Realm that manages the object, if one exists. - @param object an RLMObjectBase obtained via a Swift Object or RLMObject + @warning This function is useful only in specialized circumstances, for example, when building components + that integrate with Realm. If you are simply building an app on Realm, it is + recommended to retrieve the Realm that manages the object via `RLMObject`. + + @param object An `RLMObjectBase` obtained via a Swift `Object` or `RLMObject`. - @return The Realm in which this object is persisted. Returns nil for standalone objects. + @return The Realm which manages this object. Returns `nil `for unmanaged objects. */ FOUNDATION_EXTERN RLMRealm *RLMObjectBaseRealm(RLMObjectBase *object); /** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to retrieve `objectSchema` via `RLMObject`. + Returns an `RLMObjectSchema` which describes the persisted properties of the object. - @param object an RLMObjectBase obtained via a Swift Object or RLMObject + @warning This function is useful only in specialized circumstances, for example, when building components + that integrate with Realm. If you are simply building an app on Realm, it is + recommended to retrieve `objectSchema` via `RLMObject`. + + @param object An `RLMObjectBase` obtained via a Swift `Object` or `RLMObject`. - @return The ObjectSchema which lists the persisted properties for this object. + @return The object schema which lists the persisted properties for the object. */ FOUNDATION_EXTERN RLMObjectSchema *RLMObjectBaseObjectSchema(RLMObjectBase *object); /** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to retrieve the linking objects via `RLMObject`. - - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - @param className The type of object on which the relationship to query is defined. - @param property The name of the property which defines the relationship. - - @return An NSArray of objects of type `className` which have this object as their value for the `property` property. - */ -FOUNDATION_EXTERN NSArray *RLMObjectBaseLinkingObjectsOfClass(RLMObjectBase *object, NSString *className, NSString *property); + Returns the object corresponding to a key value. -/** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to retrieve key values via `RLMObject`. - - @warning Will throw `NSUndefinedKeyException` if key is not present on the object + @warning This function is useful only in specialized circumstances, for example, when building components + that integrate with Realm. If you are simply building an app on Realm, it is + recommended to retrieve key values via `RLMObject`. + + @warning Will throw an `NSUndefinedKeyException` if `key` is not present on the object. - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - @param key The name of the property + @param object An `RLMObjectBase` obtained via a Swift `Object` or `RLMObject`. + @param key The name of the property. - @return the object for the property requested + @return The object for the property requested. */ FOUNDATION_EXTERN id RLMObjectBaseObjectForKeyedSubscript(RLMObjectBase *object, NSString *key); /** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to set key values via `RLMObject`. + Sets a value for a key on the object. - @warning Will throw `NSUndefinedKeyException` if key is not present on the object + @warning This function is useful only in specialized circumstances, for example, when building components + that integrate with Realm. If you are simply building an app on Realm, it is + recommended to set key values via `RLMObject`. + + @warning Will throw an `NSUndefinedKeyException` if `key` is not present on the object. - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - @param key The name of the property - @param obj The object to set as the value of the key + @param object An `RLMObjectBase` obtained via a Swift `Object` or `RLMObject`. + @param key The name of the property. + @param obj The object to set as the value of the key. */ FOUNDATION_EXTERN void RLMObjectBaseSetObjectForKeyedSubscript(RLMObjectBase *object, NSString *key, id obj); diff --git a/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectSchema.h b/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectSchema.h index 3aa15d7..f90f539 100644 --- a/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectSchema.h +++ b/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectSchema.h @@ -17,16 +17,15 @@ //////////////////////////////////////////////////////////////////////////// #import -#import -RLM_ASSUME_NONNULL_BEGIN +NS_ASSUME_NONNULL_BEGIN @class RLMProperty; /** This class represents Realm model object schemas. - When using Realm, RLMObjectSchema objects allow performing migrations and + When using Realm, `RLMObjectSchema` instances allow performing migrations and introspecting the database's schema. Object schemas map to tables in the core database. @@ -36,38 +35,38 @@ RLM_ASSUME_NONNULL_BEGIN #pragma mark - Properties /** - Array of persisted RLMProperty objects for an object. + An array of `RLMProperty` instances representing the persisted properties of a class described by the schema. - @see RLMProperty + @see `RLMProperty` */ -@property (nonatomic, readonly, copy) NSArray RLM_GENERIC(RLMProperty *) *properties; +@property (nonatomic, readonly, copy) NSArray *properties; /** - The name of the class this schema describes. + The name of the class the schema describes. */ @property (nonatomic, readonly) NSString *className; /** - The property which is the primary key for this object (if any). + The property which serves as the primary key for the class the schema describes, if any. */ @property (nonatomic, readonly, nullable) RLMProperty *primaryKeyProperty; #pragma mark - Methods /** - Retrieve an RLMProperty object by name. + Retrieves an `RLMProperty` object by the property name. @param propertyName The property's name. - @return RLMProperty object or nil if there is no property with the given name. + @return An `RLMProperty` object, or `nil` if there is no property with the given name. */ - (nullable RLMProperty *)objectForKeyedSubscript:(id )propertyName; /** - Returns YES if equal to objectSchema + Returns a Boolean value that indicates whether two `RLMObjectSchema` instances are equal. */ - (BOOL)isEqualToObjectSchema:(RLMObjectSchema *)objectSchema; @end -RLM_ASSUME_NONNULL_END +NS_ASSUME_NONNULL_END diff --git a/Carthage/Build/iOS/Realm.framework/Headers/RLMProperty.h b/Carthage/Build/iOS/Realm.framework/Headers/RLMProperty.h index 2f61020..d9e7eb2 100644 --- a/Carthage/Build/iOS/Realm.framework/Headers/RLMProperty.h +++ b/Carthage/Build/iOS/Realm.framework/Headers/RLMProperty.h @@ -18,9 +18,8 @@ #import #import -#import -RLM_ASSUME_NONNULL_BEGIN +NS_ASSUME_NONNULL_BEGIN /// :nodoc: @protocol RLMInt @@ -43,53 +42,79 @@ RLM_ASSUME_NONNULL_BEGIN @end /** - This class models properties persisted to Realm in an RLMObjectSchema. + `RLMProperty` instances represent properties persisted to Realm in the context of an object schema. - When using Realm, RLMProperty objects allow performing migrations and - introspecting the database's schema. + When using Realm, `RLMProperty` instances allow performing migrations and introspecting the database's schema. - These properties map to columns in the core database. + These property instances map to columns in the core database. */ @interface RLMProperty : NSObject #pragma mark - Properties /** - Property name. + The name of the property. */ @property (nonatomic, readonly) NSString *name; /** - Property type. + The type of the property. - @see RLMPropertyType + @see `RLMPropertyType` */ @property (nonatomic, readonly) RLMPropertyType type; /** - Indicates if this property is indexed. + Indicates whether this property is indexed. - @see RLMObject + @see `RLMObject` */ @property (nonatomic, readonly) BOOL indexed; /** - Object class name - specify object types for RLMObject and RLMArray properties. + For `RLMObject` and `RLMArray` properties, the name of the class of object stored in the property. */ @property (nonatomic, readonly, copy, nullable) NSString *objectClassName; /** - Whether this property is optional. + For linking objects properties, the property name of the property the linking objects property is linked to. + */ +@property (nonatomic, readonly, copy, nullable) NSString *linkOriginPropertyName; + +/** + Indicates whether this property is optional. */ @property (nonatomic, readonly) BOOL optional; #pragma mark - Methods /** - Returns YES if property objects are equal. + Returns a Boolean value that indicates whether a given property object is equal to the receiver. */ - (BOOL)isEqualToProperty:(RLMProperty *)property; @end -RLM_ASSUME_NONNULL_END + +/** + An `RLMPropertyDescriptor` instance represents a specific property on a given class. + */ +@interface RLMPropertyDescriptor : NSObject + +/** + Creates and returns a property descriptor. + + @param objectClass The class of this property descriptor. + @param propertyName The name of this property descriptor. + */ ++ (instancetype)descriptorWithClass:(Class)objectClass propertyName:(NSString *)propertyName; + +/// The class of the property. +@property (nonatomic, readonly) Class objectClass; + +/// The name of the property. +@property (nonatomic, readonly) NSString *propertyName; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Carthage/Build/iOS/Realm.framework/Headers/RLMRealm.h b/Carthage/Build/iOS/Realm.framework/Headers/RLMRealm.h index 0672725..f3153a5 100644 --- a/Carthage/Build/iOS/Realm.framework/Headers/RLMRealm.h +++ b/Carthage/Build/iOS/Realm.framework/Headers/RLMRealm.h @@ -17,33 +17,35 @@ //////////////////////////////////////////////////////////////////////////// #import -#import @class RLMRealmConfiguration, RLMObject, RLMSchema, RLMMigration, RLMNotificationToken; -RLM_ASSUME_NONNULL_BEGIN +NS_ASSUME_NONNULL_BEGIN /** - An RLMRealm instance (also referred to as "a realm") represents a Realm + An `RLMRealm` instance (also referred to as "a Realm") represents a Realm database. - Realms can either be stored on disk (see +[RLMRealm realmWithPath:]) or in - memory (see RLMRealmConfiguration). + Realms can either be stored on disk (see `+[RLMRealm realmWithURL:]`) or in + memory (see `RLMRealmConfiguration`). - RLMRealm instances are cached internally, and constructing equivalent RLMRealm - objects (with the same path or identifier) multiple times on a single thread + `RLMRealm` instances are cached internally, and constructing equivalent `RLMRealm` + objects (for example, by using the same path or identifier) multiple times on a single thread within a single iteration of the run loop will normally return the same - RLMRealm object. If you specifically want to ensure a RLMRealm object is - destroyed (for example, if you wish to open a realm, check some property, and - then possibly delete the realm file and re-open it), place the code which uses - the realm within an `@autoreleasepool {}` and ensure you have no other + `RLMRealm` object. + + If you specifically want to ensure a `RLMRealm` instance is + destroyed (for example, if you wish to open a Realm, check some property, and + then possibly delete the Realm file and re-open it), place the code which uses + the Realm within an `@autoreleasepool {}` and ensure you have no other strong references to it. - @warning RLMRealm instances are not thread safe and can not be shared across - threads or dispatch queues. You must call this method on each thread you want - to interact with the realm on. For dispatch queues, this means that you must + @warning `RLMRealm` instances are not thread safe and cannot be shared across + threads or dispatch queues. Trying to do so will cause an exception to be thrown. + You must call this method on each thread you want + to interact with the Realm on. For dispatch queues, this means that you must call it in each block which is dispatched, as a queue is not guaranteed to run - on a consistent thread. + all of its blocks on the same thread. */ @interface RLMRealm : NSObject @@ -69,7 +71,7 @@ RLM_ASSUME_NONNULL_BEGIN /** Obtains an `RLMRealm` instance with the given configuration. - @param configuration The configuration for the realm. + @param configuration A configuration object to use when creating the Realm. @param error If an error occurs, upon return contains an `NSError` object that describes the problem. If you are not interested in possible errors, pass in `NULL`. @@ -79,31 +81,21 @@ RLM_ASSUME_NONNULL_BEGIN + (nullable instancetype)realmWithConfiguration:(RLMRealmConfiguration *)configuration error:(NSError **)error; /** - Obtains an `RLMRealm` instance persisted at a specific file path. + Obtains an `RLMRealm` instance persisted at a specified file URL. - @param path Path to the file you want the data saved in. + @param fileURL The local URL of the file the Realm should be saved at. @return An `RLMRealm` instance. */ -+ (instancetype)realmWithPath:(NSString *)path; ++ (instancetype)realmWithURL:(NSURL *)fileURL; /** - Path to the file where this Realm is persisted. - */ -@property (nonatomic, readonly) NSString *path; - -/** - Indicates if this Realm was opened in read-only mode. - */ -@property (nonatomic, readonly, getter = isReadOnly) BOOL readOnly; - -/** - The RLMSchema used by this RLMRealm. + The `RLMSchema` used by the Realm. */ @property (nonatomic, readonly, null_unspecified) RLMSchema *schema; /** - Indicates if this Realm is currently in a write transaction. + Indicates if the Realm is currently engaged in a write transaction. @warning Wrapping mutating operations in a write transaction if this property returns `NO` may cause a large number of write transactions to be created, which could negatively @@ -113,7 +105,7 @@ RLM_ASSUME_NONNULL_BEGIN @property (nonatomic, readonly) BOOL inWriteTransaction; /** - Returns the `RLMRealmConfiguration` that was used to create this `RLMRealm` instance. + The `RLMRealmConfiguration` object that was used to create this `RLMRealm` instance. */ @property (nonatomic, readonly) RLMRealmConfiguration *configuration; @@ -124,19 +116,24 @@ RLM_ASSUME_NONNULL_BEGIN #pragma mark - Notifications -/// Block to run when the data in a Realm was modified. +/** + The type of a block to run whenever the data within the Realm is modified. + + @see `-[RLMRealm addNotificationBlock:]` + */ typedef void (^RLMNotificationBlock)(NSString *notification, RLMRealm *realm); #pragma mark - Receiving Notification when a Realm Changes /** - Add a notification handler for changes in this RLMRealm. + Adds a notification handler for changes in this Realm, and returns a notification token. Notification handlers are called after each write transaction is committed, - either on the current thread or other threads. The block is called on the same - thread as they were added on, and can only be added on threads which are - currently within a run loop. Unless you are specifically creating and running a - run loop on a background thread, this normally will only be the main thread. + either on the current thread or other threads. + + Handler blocks are called on the same thread that they were added on, and may only be added on threads which are + currently within a run loop. Unless you are specifically creating and running a run loop on a background thread, this + will normally only be the main thread. The block has the following definition: @@ -145,25 +142,16 @@ typedef void (^RLMNotificationBlock)(NSString *notification, RLMRealm *realm); It receives the following parameters: - `NSString` \***notification**: The name of the incoming notification. See - RLMRealmNotification for information on what + `RLMRealmNotification` for information on what notifications are sent. - - `RLMRealm` \***realm**: The realm for which this notification occurred + - `RLMRealm` \***realm**: The Realm for which this notification occurred. - @param block A block which is called to process RLMRealm notifications. + @param block A block which is called to process Realm notifications. - @return A token object which must be stored as long as you wish to continue + @return A token object which must be retained as long as you wish to continue receiving change notifications. */ -- (RLMNotificationToken *)addNotificationBlock:(RLMNotificationBlock)block RLM_WARN_UNUSED_RESULT; - -/** - Remove a previously registered notification handler using the token returned - from `-addNotificationBlock:` - - @param notificationToken The token returned from `-addNotificationBlock:` - corresponding to the notification block to remove. - */ -- (void)removeNotification:(RLMNotificationToken *)notificationToken; +- (RLMNotificationToken *)addNotificationBlock:(RLMNotificationBlock)block __attribute__((warn_unused_result)); #pragma mark - Transactions @@ -171,22 +159,22 @@ typedef void (^RLMNotificationBlock)(NSString *notification, RLMRealm *realm); #pragma mark - Writing to a Realm /** - Begins a write transaction in an `RLMRealm`. + Begins a write transaction on the Realm. Only one write transaction can be open at a time. Write transactions cannot be - nested, and trying to begin a write transaction on a `RLMRealm` which is + nested, and trying to begin a write transaction on a Realm which is already in a write transaction will throw an exception. Calls to `beginWriteTransaction` from `RLMRealm` instances in other threads will block until the current write transaction completes. Before beginning the write transaction, `beginWriteTransaction` updates the - `RLMRealm` to the latest Realm version, as if refresh was called, and - generates notifications if applicable. This has no effect if the `RLMRealm` + `RLMRealm` instance to the latest Realm version, as if `refresh` had been called, and + generates notifications if applicable. This has no effect if the Realm was already up to date. It is rarely a good idea to have write transactions span multiple cycles of the run loop, but if you do wish to do so you will need to ensure that the - `RLMRealm` in the write transaction is kept alive until the write transaction + Realm participating in the write transaction is kept alive until the write transaction is committed. */ - (void)beginWriteTransaction; @@ -195,15 +183,15 @@ typedef void (^RLMNotificationBlock)(NSString *notification, RLMRealm *realm); Commits all write operations in the current write transaction, and ends the transaction. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. */ -- (void)commitWriteTransaction RLM_SWIFT_UNAVAILABLE(""); +- (void)commitWriteTransaction NS_SWIFT_UNAVAILABLE(""); /** Commits all write operations in the current write transaction, and ends the transaction. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. @param error If an error occurs, upon return contains an `NSError` object that describes the problem. If you are not interested in @@ -214,14 +202,14 @@ typedef void (^RLMNotificationBlock)(NSString *notification, RLMRealm *realm); - (BOOL)commitWriteTransaction:(NSError **)error; /** - Reverts all writes made in the current write transaction and ends the transaction. + Reverts all writes made during the current write transaction and ends the transaction. This rolls back all objects in the Realm to the state they were in at the beginning of the write transaction, and then ends the transaction. This restores the data for deleted objects, but does not revive invalidated object instances. Any `RLMObject`s which were added to the Realm will be - invalidated rather than switching back to standalone objects. + invalidated rather than becoming unmanaged. Given the following code: ObjectType *oldObject = [[ObjectType objectsWhere:@"..."] firstObject]; @@ -236,123 +224,115 @@ typedef void (^RLMNotificationBlock)(NSString *notification, RLMRealm *realm); but re-running the query which provided `oldObject` will once again return the valid object. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. */ - (void)cancelWriteTransaction; /** - Helper to perform a block within a transaction. + Performs actions contained within the given block inside a write transaction. + + @see `[RLMRealm transactionWithBlock:error:]` */ -- (void)transactionWithBlock:(RLM_NOESCAPE void(^)(void))block RLM_SWIFT_UNAVAILABLE(""); +- (void)transactionWithBlock:(__attribute__((noescape)) void(^)(void))block NS_SWIFT_UNAVAILABLE(""); /** - Performs actions contained within the given block inside a write transation. + Performs actions contained within the given block inside a write transaction. Write transactions cannot be nested, and trying to execute a write transaction - on a `RLMRealm` which is already in a write transaction will throw an + on a Realm which is already participating in a write transaction will throw an exception. Calls to `transactionWithBlock:` from `RLMRealm` instances in other threads will block until the current write transaction completes. Before beginning the write transaction, `transactionWithBlock:` updates the - `RLMRealm` to the latest Realm version, as if refresh was called, and - generates notifications if applicable. This has no effect if the `RLMRealm` + `RLMRealm` instance to the latest Realm version, as if `refresh` had been called, and + generates notifications if applicable. This has no effect if the Realm was already up to date. - @param block The block to perform. + @param block The block containing actions to perform. @param error If an error occurs, upon return contains an `NSError` object that describes the problem. If you are not interested in possible errors, pass in `NULL`. @return Whether the transaction succeeded. */ -- (BOOL)transactionWithBlock:(RLM_NOESCAPE void(^)(void))block error:(NSError **)error; +- (BOOL)transactionWithBlock:(__attribute__((noescape)) void(^)(void))block error:(NSError **)error; /** - Update an `RLMRealm` and outstanding objects to point to the most recent data for this `RLMRealm`. + Updates the Realm and outstanding objects managed by the Realm to point to the most recent data. - @return Whether the realm had any updates. Note that this may return YES even if no data has actually changed. + @return Whether there were any updates for the Realm. Note that `YES` may be returned even if no data actually + changed. */ - (BOOL)refresh; /** - Set to YES to automatically update this Realm when changes happen in other threads. + Set this property to `YES` to automatically update this Realm when changes happen in other threads. - If set to YES (the default), changes made on other threads will be reflected + If set to `YES` (the default), changes made on other threads will be reflected in this Realm on the next cycle of the run loop after the changes are - committed. If set to NO, you must manually call `-refresh` on the Realm to - update it to get the latest version. + committed. If set to `NO`, you must manually call `-refresh` on the Realm to + update it to get the latest data. Note that by default, background threads do not have an active run loop and you will need to manually call `-refresh` in order to update to the latest version, - even if `autorefresh` is set to `true`. + even if `autorefresh` is set to `YES`. Even with this enabled, you can still call `-refresh` at any time to update the Realm before the automatic refresh would occur. Notifications are sent when a write transaction is committed whether or not - this is enabled. + automatic refreshing is enabled. - Disabling this on an `RLMRealm` without any strong references to it will not - have any effect, and it will switch back to YES the next time the `RLMRealm` - object is created. This is normally irrelevant as it means that there is + Disabling `autorefresh` on a Realm without any strong references to it will not + have any effect, and `autorefresh` will revert back to `YES` the next time the Realm is created. + This is normally irrelevant as it means that there is nothing to refresh (as persisted `RLMObject`s, `RLMArray`s, and `RLMResults` have strong - references to the containing `RLMRealm`), but it means that setting + references to the Realm that manages them), but it means that setting `RLMRealm.defaultRealm.autorefresh = NO` in `application:didFinishLaunchingWithOptions:` and only later storing Realm objects will not work. - Defaults to YES. + Defaults to `YES`. */ @property (nonatomic) BOOL autorefresh; /** - Write a compacted copy of the RLMRealm to the given path. + Writes a compacted and optionally encrypted copy of the Realm to the given local URL. The destination file cannot already exist. - Note that if this is called from within a write transaction it writes the - *current* data, and not data when the last write transaction was committed. - - @param path Path to save the Realm to. - @param error On input, a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information. - @return YES if the realm was copied successfully. Returns NO if an error occurred. -*/ -- (BOOL)writeCopyToPath:(NSString *)path error:(NSError **)error; - -/** - Write an encrypted and compacted copy of the RLMRealm to the given path. - - The destination file cannot already exist. + Note that if this method is called from within a write transaction, the *current* data is written, not the data from + the point when the previous write transaction was committed. - Note that if this is called from within a write transaction it writes the - *current* data, and not data when the last write transaction was committed. + @param fileURL Local URL to save the Realm to. + @param key Optional 64-byte encryption key to encrypt the new file with. + @param error If an error occurs, upon return contains an `NSError` object + that describes the problem. If you are not interested in + possible errors, pass in `NULL`. - @param path Path to save the Realm to. - @param key 64-byte encryption key to encrypt the new file with - @param error On input, a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information. - @return YES if the realm was copied successfully. Returns NO if an error occurred. + @return `YES` if the Realm was successfully written to disk, `NO` if an error occurred. */ -- (BOOL)writeCopyToPath:(NSString *)path encryptionKey:(NSData *)key error:(NSError **)error; +- (BOOL)writeCopyToURL:(NSURL *)fileURL encryptionKey:(nullable NSData *)key error:(NSError **)error; /** - Invalidate all RLMObjects and RLMResults read from this Realm. + Invalidates all `RLMObject`s and `RLMResults` managed by the Realm. - An RLMRealm holds a read lock on the version of the data accessed by it, so + A Realm holds a read lock on the version of the data accessed by it, so that changes made to the Realm on different threads do not modify or delete the - data seen by this RLMRealm. Calling this method releases the read lock, + data seen by this Realm. Calling this method releases the read lock, allowing the space used on disk to be reused by later write transactions rather than growing the file. This method should be called before performing long blocking operations on a background thread on which you previously read data from the Realm which you no longer need. All `RLMObject`, `RLMResults` and `RLMArray` instances obtained from this - `RLMRealm` on the current thread are invalidated, and can not longer be used. - The `RLMRealm` itself remains valid, and a new read transaction is implicitly - begun the next time data is read from the Realm. + `RLMRealm` instance on the current thread are invalidated. `RLMObject`s and `RLMArray`s + cannot be used. `RLMResults` will become empty. The Realm itself remains valid, + and a new read transaction is implicitly begun the next time data is read from the Realm. Calling this method multiple times in a row without reading any data from the - Realm, or before ever reading any data from the Realm is a no-op. This method - cannot be called on a read-only Realm. + Realm, or before ever reading any data from the Realm, is a no-op. This method + may not be called on a read-only Realm. */ - (void)invalidate; @@ -362,89 +342,99 @@ typedef void (^RLMNotificationBlock)(NSString *notification, RLMRealm *realm); #pragma mark - Adding and Removing Objects from a Realm /** - Adds an object to be persisted in this Realm. - - Once added, this object can be retrieved using the `objectsWhere:` selectors - on `RLMRealm` and on subclasses of `RLMObject`. When added, all (child) - relationships referenced by this object will also be added to the Realm if they are - not already in it. If the object or any related objects already belong to a - different Realm an exception will be thrown. Use - `-[RLMObject createInRealm:withObject]` to insert a copy of a persisted object + Adds an object to the Realm. + + Once added, this object is considered to be managed by the Realm. It can be retrieved + using the `objectsWhere:` selectors on `RLMRealm` and on subclasses of `RLMObject`. + + When added, all child relationships referenced by this object will also be added to + the Realm if they are not already in it. + + If the object or any related objects are already being managed by a different Realm + an exception will be thrown. Use `-[RLMObject createInRealm:withObject:]` to insert a copy of a managed object into a different Realm. The object to be added must be valid and cannot have been previously deleted - from a Realm (i.e. `isInvalidated`) must be false. + from a Realm (i.e. `isInvalidated` must be `NO`). - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. - @param object Object to be added to this Realm. + @param object The object to be added to this Realm. */ - (void)addObject:(RLMObject *)object; /** - Adds objects in the given array to be persisted in this Realm. + Adds all the objects in a collection to the Realm. - This is the equivalent of `addObject:` except for an array of objects. + This is the equivalent of calling `addObject:` for every object in a collection. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. - @param array An enumerable object such as NSArray or RLMResults which contains objects to be added to - this Realm. + @param array An enumerable object such as `NSArray` or `RLMResults` which contains objects to be added to + the Realm. - @see addObject: + @see `addObject:` */ - (void)addObjects:(id)array; /** - Adds or updates an object to be persisted in this Realm. The object provided must have a designated - primary key. If no objects exist in the RLMRealm instance with the same primary key value, the object is - inserted. Otherwise, the existing object is updated with any changed values. + Adds or updates an existing object into the Realm. + + The object provided must have a designated primary key. If no objects exist in the Realm + with the same primary key value, the object is inserted. Otherwise, the existing object is + updated with any changed values. - As with `addObject:`, the object cannot already be persisted in a different + As with `addObject:`, the object cannot already be managed by a different Realm. Use `-[RLMObject createOrUpdateInRealm:withValue:]` to copy values to a different Realm. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. - @param object Object to be added or updated. + @param object The object to be added or updated. */ - (void)addOrUpdateObject:(RLMObject *)object; /** - Adds or updates objects in the given array to be persisted in this Realm. + Adds or updates all the objects in a collection into the Realm. - This is the equivalent of `addOrUpdateObject:` except for an array of objects. + This is the equivalent of calling `addOrUpdateObject:` for every object in a collection. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. - @param array `NSArray`, `RLMArray`, or `RLMResults` of `RLMObject`s (or subclasses) to be added to this Realm. + @param array An `NSArray`, `RLMArray`, or `RLMResults` of `RLMObject`s (or subclasses) to be added to the Realm. - @see addOrUpdateObject: + @see `addOrUpdateObject:` */ - (void)addOrUpdateObjectsFromArray:(id)array; /** - Delete an object from this Realm. + Deletes an object from the Realm. Once the object is deleted it is considered invalidated. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. - @param object Object to be deleted from this Realm. + @param object The object to be deleted. */ - (void)deleteObject:(RLMObject *)object; /** - Delete an `NSArray`, `RLMArray`, or `RLMResults` of objects from this Realm. + Deletes one or more objects from the Realm. + + This is the equivalent of calling `deleteObject:` for every object in a collection. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. - @param array `RLMArray`, `NSArray`, or `RLMResults` of `RLMObject`s to be deleted. + @param array An `RLMArray`, `NSArray`, or `RLMResults` of `RLMObject`s (or subclasses) to be deleted. + + @see `deleteObject:` */ - (void)deleteObjects:(id)array; /** - Deletes all objects in this Realm. + Deletes all objects from the Realm. - @warning This method can only be called during a write transaction. + @warning This method may only be called during a write transaction. + + @see `deleteObject:` */ - (void)deleteAllObjects; @@ -452,40 +442,28 @@ typedef void (^RLMNotificationBlock)(NSString *notification, RLMRealm *realm); #pragma mark - Migrations /** - Migration block used to migrate a Realm. + The type of a migration block used to migrate a Realm. - @param migration `RLMMigration` object used to perform the migration. The + @param migration A `RLMMigration` object used to perform the migration. The migration object allows you to enumerate and alter any existing objects which require migration. - @param oldSchemaVersion The schema version of the `RLMRealm` being migrated. + @param oldSchemaVersion The schema version of the Realm being migrated. */ typedef void (^RLMMigrationBlock)(RLMMigration *migration, uint64_t oldSchemaVersion); /** - Get the schema version for a Realm at a given path. - - @param realmPath Path to a Realm file - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. - - @return The version of the Realm at `realmPath` or RLMNotVersioned if the version cannot be read. - */ -+ (uint64_t)schemaVersionAtPath:(NSString *)realmPath error:(NSError **)error; - -/** - Get the schema version for an encrypted Realm at a given path. + Returns the schema version for a Realm at a given local URL. - @param realmPath Path to a Realm file - @param key 64-byte encryption key. - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. + @param fileURL Local URL to a Realm file. + @param key 64-byte key used to encrypt the file, or `nil` if it is unencrypted. + @param error If an error occurs, upon return contains an `NSError` object + that describes the problem. If you are not interested in + possible errors, pass in `NULL`. - @return The version of the Realm at `realmPath` or RLMNotVersioned if the version cannot be read. + @return The version of the Realm at `fileURL`, or `RLMNotVersioned` if the version cannot be read. */ -+ (uint64_t)schemaVersionAtPath:(NSString *)realmPath encryptionKey:(nullable NSData *)key error:(NSError **)error; ++ (uint64_t)schemaVersionAtURL:(NSURL *)fileURL encryptionKey:(nullable NSData *)key error:(NSError **)error; /** Performs the given Realm configuration's migration block on a Realm at the given path. @@ -506,14 +484,15 @@ typedef void (^RLMMigrationBlock)(RLMMigration *migration, uint64_t oldSchemaVer /** A token which is returned from methods which subscribe to changes to a Realm. - Change subscriptions in Realm return an RLMNotificationToken which can be used - to unsubscribe from the changes. You must store a strong reference to the token - for as long as you want to continue to receive notifications. When you wish to - stop, call the `-stop` method. + Change subscriptions in Realm return an `RLMNotificationToken` instance, + which can be used to unsubscribe from the changes. You must store a strong + reference to the token for as long as you want to continue to receive notifications. + When you wish to stop, call the `-stop` method. Notifications are also stopped if + the token is deallocated. */ @interface RLMNotificationToken : NSObject -/// Stop receiving notifications for the subcription that returned this token. +/// Stops notifications for the change subscription that returned this token. - (void)stop; @end -RLM_ASSUME_NONNULL_END +NS_ASSUME_NONNULL_END diff --git a/Carthage/Build/iOS/Realm.framework/Headers/RLMRealmConfiguration.h b/Carthage/Build/iOS/Realm.framework/Headers/RLMRealmConfiguration.h index 094016f..598c0c0 100644 --- a/Carthage/Build/iOS/Realm.framework/Headers/RLMRealmConfiguration.h +++ b/Carthage/Build/iOS/Realm.framework/Headers/RLMRealmConfiguration.h @@ -19,18 +19,20 @@ #import #import -RLM_ASSUME_NONNULL_BEGIN +NS_ASSUME_NONNULL_BEGIN /** - An `RLMRealmConfiguration` is used to describe the different options used to - create an `RLMRealm` instance. - - `RLMRealmConfiguration` instances are just plain NSObjects, and unlike RLMRealm - and RLMObjects can be freely shared between threads as long as you do not - mutate them. Creating configuration objects for class subsets (by setting the - `objectClasses` property) can be expensive, and so you will normally want to - cache and reuse a single configuration object for each distinct configuration - that you are using rather than creating a new one each time you open a Realm. + An `RLMRealmConfiguration` instance describes the different options used to + create an instance of a Realm. + + `RLMRealmConfiguration` instances are just plain `NSObject`s. Unlike `RLMRealm`s + and `RLMObject`s, they can be freely shared between threads as long as you do not + mutate them. + + Creating configuration objects for class subsets (by setting the + `objectClasses` property) can be expensive. Because of this, you will normally want to + cache and reuse a single configuration object for each distinct configuration rather than + creating a new object each time you open a Realm. */ @interface RLMRealmConfiguration : NSObject @@ -53,16 +55,16 @@ RLM_ASSUME_NONNULL_BEGIN #pragma mark - Properties -/// The path to the realm file. Mutually exclusive with `inMemoryIdentifier`. -@property (nonatomic, copy, nullable) NSString *path; +/// The local URL of the Realm file. Mutually exclusive with `inMemoryIdentifier`. +@property (nonatomic, copy, nullable) NSURL *fileURL; /// A string used to identify a particular in-memory Realm. Mutually exclusive with `path`. @property (nonatomic, copy, nullable) NSString *inMemoryIdentifier; -/// 64-byte key to use to encrypt the data. +/// A 64-byte key to use to encrypt the data, or `nil` if encryption is not enabled. @property (nonatomic, copy, nullable) NSData *encryptionKey; -/// Whether the Realm is read-only (must be YES for read-only files). +/// Whether the Realm is read-only (must be `YES` for read-only files). @property (nonatomic) BOOL readOnly; /// The current schema version. @@ -71,9 +73,19 @@ RLM_ASSUME_NONNULL_BEGIN /// The block which migrates the Realm to the current version. @property (nonatomic, copy, nullable) RLMMigrationBlock migrationBlock; +/** + Whether to recreate the Realm file with the provided schema if a migration is required. + This is the case when the stored schema differs from the provided schema or + the stored schema version differs from the version on this configuration. + Setting this property to `YES` deletes the file if a migration would otherwise be required or executed. + + @note Setting this property to `YES` doesn't disable file format migrations. + */ +@property (nonatomic) BOOL deleteRealmIfMigrationNeeded; + /// The classes persisted in the Realm. @property (nonatomic, copy, nullable) NSArray *objectClasses; @end -RLM_ASSUME_NONNULL_END +NS_ASSUME_NONNULL_END diff --git a/Carthage/Build/iOS/Realm.framework/Headers/RLMRealm_Dynamic.h b/Carthage/Build/iOS/Realm.framework/Headers/RLMRealm_Dynamic.h index d778678..9954880 100644 --- a/Carthage/Build/iOS/Realm.framework/Headers/RLMRealm_Dynamic.h +++ b/Carthage/Build/iOS/Realm.framework/Headers/RLMRealm_Dynamic.h @@ -28,102 +28,85 @@ #pragma mark - Getting Objects from a Realm /** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use the class methods on `RLMObject`. - - Get all objects of a given type in this Realm. - - The preferred way to get objects of a single class is to use the class methods on RLMObject. - - @warning This method is useful only in specialized circumstances. + Returns all objects of a given type from the Realm. - @param className The name of the RLMObject subclass to retrieve on e.g. `MyClass.className`. + @warning This method is useful only in specialized circumstances, for example, when building components + that integrate with Realm. The preferred way to get objects of a single class is to use the class + methods on `RLMObject`. - @return An RLMResults of all objects in this realm of the given type. + @param className The name of the `RLMObject` subclass to retrieve on (e.g. `MyClass.className`). - @see RLMObject allObjects + @return An `RLMResults` containing all objects in the Realm of the given type. + + @see `+[RLMObject allObjects]` */ - (RLMResults *)allObjects:(NSString *)className; /** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use the class methods on `RLMObject`. - - Get objects matching the given predicate from the this Realm. + Returns all objects matching the given predicate from the Realm. - The preferred way to get objects of a single class is to use the class methods on RLMObject. - - @warning This method is useful only in specialized circumstances. + @warning This method is useful only in specialized circumstances, for example, when building components + that integrate with Realm. The preferred way to get objects of a single class is to use the class + methods on `RLMObject`. @param className The type of objects you are looking for (name of the class). - @param predicateFormat The predicate format string which can accept variable arguments. + @param predicateFormat A predicate format string, optionally followed by a variable number of arguments. - @return An RLMResults of results matching the given predicate. + @return An `RLMResults` containing results matching the given predicate. - @see RLMObject objectsWhere: + @see `+[RLMObject objectsWhere:]` */ - (RLMResults *)objects:(NSString *)className where:(NSString *)predicateFormat, ...; /** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use the class methods on `RLMObject`. - - Get objects matching the given predicate from the this Realm. + Returns all objects matching the given predicate from the Realm. - The preferred way to get objects of a single class is to use the class methods on RLMObject. - - @warning This method is useful only in specialized circumstances. + @warning This method is useful only in specialized circumstances, for example, when building components + that integrate with Realm. The preferred way to get objects of a single class is to use the class + methods on `RLMObject`. @param className The type of objects you are looking for (name of the class). - @param predicate The predicate to filter the objects. + @param predicate The predicate with which to filter the objects. - @return An RLMResults of results matching the given predicate. + @return An `RLMResults` containing results matching the given predicate. - @see RLMObject objectsWhere: + @see `+[RLMObject objectsWhere:]` */ - (RLMResults *)objects:(NSString *)className withPredicate:(NSPredicate *)predicate; /** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use the class methods on `RLMObject`. - - Get an object of a given class name with a primary key - - The preferred way to get an object of a single class is to use the class methods on RLMObject. - - @warning This method is useful only in specialized circumstances. + Returns the object of the given type with the given primary key from the Realm. + + @warning This method is useful only in specialized circumstances, for example, when building components + that integrate with Realm. The preferred way to get an object of a single class is to use the class + methods on `RLMObject`. - @param className The class name for the object you are looking for - @param primaryKey The primary key value for the object you are looking for + @param className The class name for the object you are looking for. + @param primaryKey The primary key value for the object you are looking for. - @return An object or nil if an object with the given primary key does not exist. + @return An object, or `nil` if an object with the given primary key does not exist. - @see RLMObject objectForPrimaryKey: + @see `+[RLMObject objectForPrimaryKey:]` */ - (RLMObject *)objectWithClassName:(NSString *)className forPrimaryKey:(id)primaryKey; /** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use [RLMObject createInDefaultRealmWithValue:]. - - Create an RLMObject of type `className` in the Realm with a given object. - - @warning This method is useful only in specialized circumstances. + Creates a `RLMObject` instance of type `className` in the Realm, and populates it using a given object. - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. + @warning This method is useful only in specialized circumstances, for example, when building components + that integrate with Realm. If you are simply building an app on Realm, it is recommended to + use `[RLMObject createInDefaultRealmWithValue:]`. - When passing in an NSArray, all properties must be present, valid and in the same order as - the properties defined in the model. - - @return An RLMObject of type `className` + @param value The value used to populate the object. This can be any key-value coding compliant + object, or an array or dictionary returned from the methods in `NSJSONSerialization`, or + an `NSArray` containing one element for each persisted property. An exception will be + thrown if any required properties are not present and those properties were not defined with + default values. + + When passing in an `NSArray`, all properties must be present, + valid and in the same order as the properties defined in the model. + + @return An `RLMObject` instance of type `className`. */ -(RLMObject *)createObject:(NSString *)className withValue:(id)value; diff --git a/Carthage/Build/iOS/Realm.framework/Headers/RLMResults.h b/Carthage/Build/iOS/Realm.framework/Headers/RLMResults.h index 6f355fe..b0066d6 100644 --- a/Carthage/Build/iOS/Realm.framework/Headers/RLMResults.h +++ b/Carthage/Build/iOS/Realm.framework/Headers/RLMResults.h @@ -18,56 +18,63 @@ #import #import -#import -RLM_ASSUME_NONNULL_BEGIN +NS_ASSUME_NONNULL_BEGIN @class RLMObject, RLMRealm, RLMNotificationToken; /** - RLMResults is an auto-updating container type in Realm returned from object - queries. + `RLMResults` is an auto-updating container type in Realm returned from object + queries. It represents the results of the query in the form of a collection of objects. - RLMResults can be queried with the same predicates as RLMObject and RLMArray - and you can chain queries to further filter query results. + `RLMResults` can be queried using the same predicates as `RLMObject` and `RLMArray`, + and you can chain queries to further filter results. - RLMResults always reflect the current state of the Realm on the current thread, + `RLMResults` always reflect the current state of the Realm on the current thread, including during write transactions on the current thread. The one exception to this is when using `for...in` fast enumeration, which will always enumerate over the objects which matched the query when the enumeration is begun, even if some of them are deleted or modified to be excluded by the filter during the enumeration. - RLMResults are initially lazily evaluated, and only run queries when the result - of the query is requested. This means that chaining several temporary - RLMResults to sort and filter your data does not perform any extra work - processing the intermediate state. + `RLMResults` are lazily evaluated the first time they are accessed; they only + run queries when the result of the query is requested. This means that + chaining several temporary `RLMResults` to sort and filter your data does not + perform any extra work processing the intermediate state. Once the results have been evaluated or a notification block has been added, the results are eagerly kept up-to-date, with the work done to keep them up-to-date done on a background thread whenever possible. - RLMResults cannot be created directly. + `RLMResults` cannot be directly instantiated. */ -@interface RLMResults RLM_GENERIC_COLLECTION : NSObject +@interface RLMResults : NSObject #pragma mark - Properties /** - Number of objects in the results. + The number of objects in the results collection. */ @property (nonatomic, readonly, assign) NSUInteger count; /** - The class name (i.e. type) of the RLMObjects contained in this RLMResults. + The class name (i.e. type) of the `RLMObject`s contained in the results collection. */ @property (nonatomic, readonly, copy) NSString *objectClassName; /** - The Realm this `RLMResults` is associated with. + The Realm which manages this results collection. */ @property (nonatomic, readonly) RLMRealm *realm; +/** + Indicates if the results collection is no longer valid. + + The results collection becomes invalid if `invalidate` is called on the containing `realm`. + An invalidated results collection can be accessed, but will always be empty. + */ +@property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated; + #pragma mark - Accessing Objects from an RLMResults /** @@ -75,45 +82,45 @@ RLM_ASSUME_NONNULL_BEGIN @param index The index to look up. - @return An RLMObject of the type contained in this RLMResults. + @return An `RLMObject` of the type contained in the results collection. */ - (RLMObjectType)objectAtIndex:(NSUInteger)index; /** - Returns the first object in the results. + Returns the first object in the results collection. - Returns `nil` if called on an empty RLMResults. + Returns `nil` if called on an empty results collection. - @return An RLMObject of the type contained in this RLMResults. + @return An `RLMObject` of the type contained in the results collection. */ - (nullable RLMObjectType)firstObject; /** - Returns the last object in the results. + Returns the last object in the results collection. - Returns `nil` if called on an empty RLMResults. + Returns `nil` if called on an empty results collection. - @return An RLMObject of the type contained in this RLMResults. + @return An `RLMObject` of the type contained in the results collection. */ - (nullable RLMObjectType)lastObject; #pragma mark - Querying Results /** - Gets the index of an object. + Returns the index of an object in the results collection. - Returns NSNotFound if the object is not found in this RLMResults. + Returns `NSNotFound` if the object is not found in the results collection. - @param object An object (of the same type as returned from the objectClassName selector). + @param object An object (of the same type as returned from the `objectClassName` selector). */ -- (NSUInteger)indexOfObject:(RLMObjectArgument)object; +- (NSUInteger)indexOfObject:(RLMObjectType)object; /** - Gets the index of the first object matching the predicate. + Returns the index of the first object in the results collection matching the predicate. - @param predicateFormat The predicate format string which can accept variable arguments. + @param predicateFormat A predicate format string, optionally followed by a variable number of arguments. - @return Index of object or NSNotFound if the object is not found in this RLMResults. + @return The index of the object, or `NSNotFound` if the object is not found in the results collection. */ - (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...; @@ -121,140 +128,175 @@ RLM_ASSUME_NONNULL_BEGIN - (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args; /** - Gets the index of the first object matching the predicate. + Returns the index of the first object in the results collection matching the predicate. - @param predicate The predicate to filter the objects. + @param predicate The predicate with which to filter the objects. - @return Index of object or NSNotFound if the object is not found in this RLMResults. + @return The index of the object, or `NSNotFound` if the object is not found in the results collection. */ - (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate; /** - Get objects matching the given predicate in the RLMResults. + Returns all the objects matching the given predicate in the results collection. - @param predicateFormat The predicate format string which can accept variable arguments. + @param predicateFormat A predicate format string, optionally followed by a variable number of arguments. - @return An RLMResults of objects that match the given predicate + @return An `RLMResults` of objects that match the given predicate. */ -- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat, ...; +- (RLMResults *)objectsWhere:(NSString *)predicateFormat, ...; /// :nodoc: -- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat args:(va_list)args; +- (RLMResults *)objectsWhere:(NSString *)predicateFormat args:(va_list)args; /** - Get objects matching the given predicate in the RLMResults. + Returns all the objects matching the given predicate in the results collection. - @param predicate The predicate to filter the objects. + @param predicate The predicate with which to filter the objects. - @return An RLMResults of objects that match the given predicate + @return An `RLMResults` of objects that match the given predicate. */ -- (RLMResults RLM_GENERIC_RETURN*)objectsWithPredicate:(NSPredicate *)predicate; +- (RLMResults *)objectsWithPredicate:(NSPredicate *)predicate; /** - Get a sorted `RLMResults` from an existing `RLMResults` sorted by a property. + Returns a sorted `RLMResults` from an existing results collection. @param property The property name to sort by. - @param ascending The direction to sort by. + @param ascending The direction to sort in. - @return An RLMResults sorted by the specified property. + @return An `RLMResults` sorted by the specified property. */ -- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending; +- (RLMResults *)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending; /** - Get a sorted `RLMResults` from an existing `RLMResults` sorted by an `NSArray`` of `RLMSortDescriptor`s. + Returns a sorted `RLMResults` from an existing results collection. @param properties An array of `RLMSortDescriptor`s to sort by. - @return An RLMResults sorted by the specified properties. + @return An `RLMResults` sorted by the specified properties. */ -- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingDescriptors:(NSArray *)properties; +- (RLMResults *)sortedResultsUsingDescriptors:(NSArray *)properties; #pragma mark - Notifications /** - Register a block to be called each time the RLMResults changes. + Registers a block to be called each time the results collection changes. - The block will be asynchronously called with the initial results, and then - called again after each write transaction which causes the results to change. - You must retain the returned token for as long as you want the results to - continue to be sent to the block. To stop receiving updates, call -stop on the - token. + The block will be asynchronously called with the initial results collection, + and then called again after each write transaction which changes either any + of the objects in the results, or which objects are in the results. - The determination for whether or not a write transaction has changed the - results is currently very coarse, and the block may be called even if no - changes occurred. The opposite (not being called despite changes) will not - happen. This will become more precise in future versions. + The `change` parameter will be `nil` the first time the block is called. + For each call after that, it will contain information about + which rows in the results collection were added, removed or modified. If a + write transaction did not modify any objects in the results collection, + the block is not called at all. See the `RLMCollectionChange` documentation for + information on how the changes are reported and an example of updating a + `UITableView`. If an error occurs the block will be called with `nil` for the results parameter and a non-`nil` error. Currently the only errors that can occur are - when opening the RLMRealm on the background worker thread or the destination - queue fails. + when opening the Realm on the background worker thread. - At the time when the block is called, the RLMResults object will be fully + At the time when the block is called, the `RLMResults` object will be fully evaluated and up-to-date, and as long as you do not perform a write transaction on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will never perform blocking work. + Notifications are delivered via the standard run loop, and so can't be + delivered while the run loop is blocked by other activity. When + notifications can't be delivered instantly, multiple notifications may be + coalesced into a single notification. This can include the notification + with the initial results. For example, the following code performs a write + transaction immediately after adding the notification block, so there is no + opportunity for the initial notification to be delivered first. As a + result, the initial notification will reflect the state of the Realm after + the write transaction. + + RLMResults *results = [Dog allObjects]; + NSLog(@"dogs.count: %zu", dogs.count); // => 0 + self.token = [results addNotificationBlock:^(RLMResults *dogs, + RLMCollectionChange *changes, + NSError *error) { + // Only fired once for the example + NSLog(@"dogs.count: %zu", dogs.count); // => 1 + }]; + [realm transactionWithBlock:^{ + Dog *dog = [[Dog alloc] init]; + dog.name = @"Rex"; + [realm addObject:dog]; + }]; + // end of run loop execution context + + You must retain the returned token for as long as you want updates to continue + to be sent to the block. To stop receiving updates, call `-stop` on the token. + @warning This method cannot be called during a write transaction, or when the - containing realm is read-only. + containing Realm is read-only. - @param block The block to be called with the evaluated results. - @return A token which must be held for as long as you want query results to be delivered. + @param block The block to be called whenever a change occurs. + @return A token which must be held for as long as you want updates to be delivered. */ -- (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults RLM_GENERIC_RETURN *__nullable results, NSError *__nullable error))block RLM_WARN_UNUSED_RESULT; +- (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults *__nullable results, + RLMCollectionChange *__nullable change, + NSError *__nullable error))block __attribute__((warn_unused_result)); #pragma mark - Aggregating Property Values /** - Returns the minimum (lowest) value of the given property + Returns the minimum (lowest) value of the given property among all the objects + represented by the results collection. NSNumber *min = [results minOfProperty:@"age"]; - @warning You cannot use this method on RLMObject, RLMArray, and NSData properties. + @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties. - @param property The property to look for a minimum on. Only properties of type int, float, double and NSDate are supported. + @param property The property whose minimum value is desired. Only properties of types `int`, `float`, `double`, and + `NSDate` are supported. - @return The minimum value for the property amongst objects in an RLMResults. + @return The minimum value of the property. */ - (nullable id)minOfProperty:(NSString *)property; /** - Returns the maximum (highest) value of the given property of objects in an RLMResults + Returns the maximum (highest) value of the given property among all the objects represented by the results collection. NSNumber *max = [results maxOfProperty:@"age"]; - @warning You cannot use this method on RLMObject, RLMArray, and NSData properties. + @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties. - @param property The property to look for a maximum on. Only properties of type int, float, double and NSDate are supported. + @param property The property whose maximum value is desired. Only properties of types `int`, `float`, `double`, and + `NSDate` are supported. - @return The maximum value for the property amongst objects in an RLMResults + @return The maximum value of the property. */ - (nullable id)maxOfProperty:(NSString *)property; /** - Returns the sum of the given property for objects in an RLMResults. + Returns the sum of the values of a given property over all the objects represented by the results collection. NSNumber *sum = [results sumOfProperty:@"age"]; - @warning You cannot use this method on RLMObject, RLMArray, and NSData properties. + @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties. - @param property The property to calculate sum on. Only properties of type int, float and double are supported. + @param property The property whose values should be summed. Only properties of types `int`, `float`, and `double` are + supported. - @return The sum of the given property over all objects in an RLMResults. + @return The sum of the given property. */ - (NSNumber *)sumOfProperty:(NSString *)property; /** - Returns the average of a given property for objects in an RLMResults. + Returns the average value of a given property over the objects represented by the results collection. NSNumber *average = [results averageOfProperty:@"age"]; - @warning You cannot use this method on RLMObject, RLMArray, and NSData properties. + @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties. - @param property The property to calculate average on. Only properties of type int, float and double are supported. + @param property The property whose average value should be calculated. Only properties of types `int`, `float`, and + `double` are supported. - @return The average for the given property amongst objects in an RLMResults. This will be of type double for both - float and double properties. + @return The average value of the given property. This will be of type `double` for both `float` and `double` + properties. */ - (nullable NSNumber *)averageOfProperty:(NSString *)property; @@ -264,17 +306,27 @@ RLM_ASSUME_NONNULL_BEGIN #pragma mark - Unavailable Methods /** - -[RLMResults init] is not available because RLMResults cannot be created directly. - RLMResults can be obtained by querying a Realm. + `-[RLMResults init]` is not available because `RLMResults` cannot be created directly. + `RLMResults` can be obtained by querying a Realm. */ - (instancetype)init __attribute__((unavailable("RLMResults cannot be created directly"))); /** - +[RLMResults new] is not available because RLMResults cannot be created directly. - RLMResults can be obtained by querying a Realm. + `+[RLMResults new]` is not available because `RLMResults` cannot be created directly. + `RLMResults` can be obtained by querying a Realm. */ + (instancetype)new __attribute__((unavailable("RLMResults cannot be created directly"))); @end -RLM_ASSUME_NONNULL_END +/** + `RLMLinkingObjects` is an auto-updating container type. It represents a collection of objects that link to its + parent object. + + For more information, please see the "Inverse Relationships" section in the + [documentation](https://realm.io/docs/objc/latest/#relationships). + */ +@interface RLMLinkingObjects : RLMResults +@end + +NS_ASSUME_NONNULL_END diff --git a/Carthage/Build/iOS/Realm.framework/Headers/RLMSchema.h b/Carthage/Build/iOS/Realm.framework/Headers/RLMSchema.h index 6549706..86a3173 100644 --- a/Carthage/Build/iOS/Realm.framework/Headers/RLMSchema.h +++ b/Carthage/Build/iOS/Realm.framework/Headers/RLMSchema.h @@ -17,16 +17,15 @@ //////////////////////////////////////////////////////////////////////////// #import -#import -RLM_ASSUME_NONNULL_BEGIN +NS_ASSUME_NONNULL_BEGIN @class RLMObjectSchema; /** - This class represents the collection of model object schemas persisted to Realm. + `RLMSchema` instances represent collections of model object schemas persisted to a Realm. - When using Realm, RLMSchema objects allow performing migrations and + When using Realm, `RLMSchema` instances allow performing migrations and introspecting the database's schema. Schemas map to collections of tables in the core database. @@ -36,41 +35,43 @@ RLM_ASSUME_NONNULL_BEGIN #pragma mark - Properties /** - An NSArray containing RLMObjectSchemas for all object types in this Realm. Meant - to be used during migrations for dynamic introspection. + An `NSArray` containing `RLMObjectSchema`s for all object types in the Realm. + + This property is intended to be used during migrations for dynamic introspection. - @see RLMObjectSchema + @see `RLMObjectSchema` */ -@property (nonatomic, readonly, copy) NSArray RLM_GENERIC(RLMObjectSchema *) *objectSchema; +@property (nonatomic, readonly, copy) NSArray *objectSchema; #pragma mark - Methods /** - Returns an RLMObjectSchema for the given class name in this RLMSchema. + Returns an `RLMObjectSchema` for the given class name in the schema. @param className The object class name. - @return RLMObjectSchema for the given class in this RLMSchema. + @return An `RLMObjectSchema` for the given class in the schema. - @see RLMObjectSchema + @see `RLMObjectSchema` */ - (nullable RLMObjectSchema *)schemaForClassName:(NSString *)className; /** - Look up an RLMObjectSchema for the given class name in this Realm. Throws - an exception if there is no object of type className in this RLMSchema instance. + Looks up and returns an `RLMObjectSchema` for the given class name in the Realm. + + If there is no object of type `className` in the schema, an exception will be thrown. @param className The object class name. - @return RLMObjectSchema for the given class in this Realm. + @return An `RLMObjectSchema` for the given class in this Realm. - @see RLMObjectSchema + @see `RLMObjectSchema` */ - (RLMObjectSchema *)objectForKeyedSubscript:(id )className; /** - Returns YES if equal to schema + Returns a Boolean value that indicates whether two `RLMSchema` instances are equivalent. */ - (BOOL)isEqualToSchema:(RLMSchema *)schema; @end -RLM_ASSUME_NONNULL_END +NS_ASSUME_NONNULL_END diff --git a/Carthage/Build/iOS/Realm.framework/Info.plist b/Carthage/Build/iOS/Realm.framework/Info.plist index 5821938..767fa05 100644 Binary files a/Carthage/Build/iOS/Realm.framework/Info.plist and b/Carthage/Build/iOS/Realm.framework/Info.plist differ diff --git a/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMAccessor.h b/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMAccessor.h index 23a4317..adb3f05 100644 --- a/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMAccessor.h +++ b/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMAccessor.h @@ -18,7 +18,6 @@ #import -#import @class RLMObjectSchema, RLMProperty, RLMObjectBase, RLMProperty; @@ -28,7 +27,7 @@ typedef NSUInteger RLMCreationOptions; typedef NS_OPTIONS(NSUInteger, RLMCreationOptions); #endif -RLM_ASSUME_NONNULL_BEGIN +NS_ASSUME_NONNULL_BEGIN // // Accessors Class Creation/Caching @@ -61,4 +60,4 @@ void RLMReplaceClassNameMethod(Class accessorClass, NSString *className); // Replace sharedSchema method for the given class void RLMReplaceSharedSchemaMethod(Class accessorClass, RLMObjectSchema * __nullable schema); -RLM_ASSUME_NONNULL_END +NS_ASSUME_NONNULL_END diff --git a/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h b/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h index 10b6473..31e654e 100644 --- a/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h +++ b/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h @@ -16,18 +16,20 @@ // //////////////////////////////////////////////////////////////////////////// -#import #import -RLM_ASSUME_NONNULL_BEGIN +NS_ASSUME_NONNULL_BEGIN @class RLMRealm; // RLMObjectSchema private -@interface RLMObjectSchema () +@interface RLMObjectSchema () { +@public + bool _isSwiftClass; +} // writable redecleration -@property (nonatomic, readwrite, copy) NSArray RLM_GENERIC(RLMProperty *) *properties; +@property (nonatomic, readwrite, copy) NSArray *properties; @property (nonatomic, readwrite, assign) bool isSwiftClass; // class used for this object schema @@ -37,7 +39,9 @@ RLM_ASSUME_NONNULL_BEGIN @property (nonatomic, readwrite, nullable) RLMProperty *primaryKeyProperty; -@property (nonatomic, readonly) NSArray RLM_GENERIC(RLMProperty *) *propertiesInDeclaredOrder; +@property (nonatomic, readonly) NSArray *propertiesInDeclaredOrder; +@property (nonatomic, copy) NSArray *computedProperties; +@property (nonatomic, readonly) NSArray *swiftGenericProperties; // The Realm retains its object schemas, so they need to not retain the Realm @property (nonatomic, unsafe_unretained, nullable) RLMRealm *realm; @@ -51,7 +55,7 @@ RLM_ASSUME_NONNULL_BEGIN @interface RLMObjectSchema (Dynamic) /** This method is useful only in specialized circumstances, for example, when accessing objects - in a Realm produced externally. If you are simply building an app on Realm, it is not recommened + in a Realm produced externally. If you are simply building an app on Realm, it is not recommended to use this method as an [RLMObjectSchema](RLMObjectSchema) is generated automatically for every [RLMObject](RLMObject) subclass. Initialize an RLMObjectSchema with classname, objectClass, and an array of properties @@ -59,12 +63,12 @@ RLM_ASSUME_NONNULL_BEGIN @warning This method is useful only in specialized circumstances. @param objectClassName The name of the class used to refer to objects of this type. - @param objectClass The objective-c class used when creating instances of this type. - @param properties An array RLMProperty describing the persisted properties for this type. + @param objectClass The Objective-C class used when creating instances of this type. + @param properties An array of RLMProperty instances describing the persisted properties for this type. @return An initialized instance of RLMObjectSchema. */ - (instancetype)initWithClassName:(NSString *)objectClassName objectClass:(Class)objectClass properties:(NSArray *)properties; @end -RLM_ASSUME_NONNULL_END +NS_ASSUME_NONNULL_END diff --git a/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObjectStore.h b/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObjectStore.h index 590d0ef..3479f16 100644 --- a/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObjectStore.h +++ b/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObjectStore.h @@ -44,7 +44,7 @@ typedef NS_OPTIONS(NSUInteger, RLMCreationOptions) { // If the property is a link or array property, upsert the linked objects // if they have a primary key, and insert them otherwise. RLMCreationOptionsCreateOrUpdate = 1 << 0, - // Allow standalone objects to be promoted to persisted objects + // Allow unmanaged objects to be promoted to managed objects // if false objects are copied during object creation RLMCreationOptionsPromoteStandalone = 1 << 1, }; @@ -78,7 +78,7 @@ RLMObjectBase *RLMCreateObjectInRealmWithValue(RLMRealm *realm, NSString *classN // -// switch List<> properties from being backed by standalone RLMArrays to RLMArrayLinkView +// switch List<> properties from being backed by unmanaged RLMArrays to RLMArrayLinkView void RLMInitializeSwiftAccessorGenerics(RLMObjectBase *object); #ifdef __cplusplus diff --git a/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObject_Private.h b/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObject_Private.h index 2c7e96f..5101434 100644 --- a/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObject_Private.h +++ b/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObject_Private.h @@ -28,12 +28,12 @@ __unsafe_unretained RLMObjectSchema *_objectSchema; } -// standalone initializer -- (instancetype)initWithValue:(id)value schema:(RLMSchema *)schema; +// unmanaged initializer +- (instancetype)initWithValue:(id)value schema:(RLMSchema *)schema NS_DESIGNATED_INITIALIZER; // live accessor initializer - (instancetype)initWithRealm:(__unsafe_unretained RLMRealm *const)realm - schema:(__unsafe_unretained RLMObjectSchema *const)schema; + schema:(__unsafe_unretained RLMObjectSchema *const)schema NS_DESIGNATED_INITIALIZER; // shared schema for this class + (RLMObjectSchema *)sharedSchema; @@ -43,10 +43,33 @@ @end +@interface RLMObject () + +// unmanaged initializer +- (instancetype)initWithValue:(id)value schema:(RLMSchema *)schema NS_DESIGNATED_INITIALIZER; + +// live accessor initializer +- (instancetype)initWithRealm:(__unsafe_unretained RLMRealm *const)realm + schema:(__unsafe_unretained RLMObjectSchema *const)schema NS_DESIGNATED_INITIALIZER; + +@end + @interface RLMDynamicObject : RLMObject @end +// A reference to an object's row that doesn't keep the object accessor alive. +// Used by some Swift property types, such as LinkingObjects, to avoid retain cycles +// with their containing object. +@interface RLMWeakObjectHandle : NSObject + +- (instancetype)initWithObject:(RLMObjectBase *)object; + +// Consumes the row, so can only usefully be called once. +@property (nonatomic, readonly) RLMObjectBase *object; + +@end + // // Getters and setters for RLMObjectBase ivars for realm and objectSchema // @@ -55,9 +78,6 @@ FOUNDATION_EXTERN RLMRealm *RLMObjectBaseRealm(RLMObjectBase *object); FOUNDATION_EXTERN void RLMObjectBaseSetObjectSchema(RLMObjectBase *object, RLMObjectSchema *objectSchema); FOUNDATION_EXTERN RLMObjectSchema *RLMObjectBaseObjectSchema(RLMObjectBase *object); -// Get linking objects for an RLMObjectBase -FOUNDATION_EXTERN NSArray *RLMObjectBaseLinkingObjectsOfClass(RLMObjectBase *object, NSString *className, NSString *property); - // Dynamic access to RLMObjectBase properties FOUNDATION_EXTERN id RLMObjectBaseObjectForKeyedSubscript(RLMObjectBase *object, NSString *key); FOUNDATION_EXTERN void RLMObjectBaseSetObjectForKeyedSubscript(RLMObjectBase *object, NSString *key, id obj); @@ -76,14 +96,18 @@ FOUNDATION_EXTERN const NSUInteger RLMDescriptionMaxDepth; @class RLMProperty, RLMArray; @interface RLMObjectUtil : NSObject -+ (NSArray RLM_GENERIC(NSString *) *)ignoredPropertiesForClass:(Class)cls; -+ (NSArray RLM_GENERIC(NSString *) *)indexedPropertiesForClass:(Class)cls; ++ (NSArray *)ignoredPropertiesForClass:(Class)cls; ++ (NSArray *)indexedPropertiesForClass:(Class)cls; ++ (NSDictionary *> *)linkingObjectsPropertiesForClass:(Class)cls; + ++ (NSArray *)getGenericListPropertyNames:(id)obj; ++ (NSDictionary *)getLinkingObjectsProperties:(id)object; -+ (NSArray RLM_GENERIC(NSString *) *)getGenericListPropertyNames:(id)obj; + (void)initializeListProperty:(RLMObjectBase *)object property:(RLMProperty *)property array:(RLMArray *)array; + (void)initializeOptionalProperty:(RLMObjectBase *)object property:(RLMProperty *)property; ++ (void)initializeLinkingObjectsProperty:(RLMObjectBase *)object property:(RLMProperty *)property; -+ (NSDictionary RLM_GENERIC(NSString *, NSNumber *) *)getOptionalProperties:(id)obj; -+ (NSArray RLM_GENERIC(NSString *) *)requiredPropertiesForClass:(Class)cls; ++ (NSDictionary *)getOptionalProperties:(id)obj; ++ (NSArray *)requiredPropertiesForClass:(Class)cls; @end diff --git a/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMProperty_Private.h b/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMProperty_Private.h index 5223764..9d5a0c0 100644 --- a/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMProperty_Private.h +++ b/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMProperty_Private.h @@ -24,16 +24,23 @@ FOUNDATION_EXTERN BOOL RLMPropertyTypeIsNullable(RLMPropertyType propertyType); FOUNDATION_EXTERN BOOL RLMPropertyTypeIsNumeric(RLMPropertyType propertyType); +BOOL RLMPropertyTypeIsComputed(RLMPropertyType propertyType); // private property interface -@interface RLMProperty () +@interface RLMProperty () { +@public + RLMPropertyType _type; + Ivar _swiftIvar; +} - (instancetype)initWithName:(NSString *)name indexed:(BOOL)indexed + linkPropertyDescriptor:(RLMPropertyDescriptor *)linkPropertyDescriptor property:(objc_property_t)property; - (instancetype)initSwiftPropertyWithName:(NSString *)name indexed:(BOOL)indexed + linkPropertyDescriptor:(RLMPropertyDescriptor *)linkPropertyDescriptor property:(objc_property_t)property instance:(RLMObjectBase *)objectInstance; @@ -46,8 +53,14 @@ FOUNDATION_EXTERN BOOL RLMPropertyTypeIsNumeric(RLMPropertyType propertyType); ivar:(Ivar)ivar propertyType:(RLMPropertyType)propertyType; +- (instancetype)initSwiftLinkingObjectsPropertyWithName:(NSString *)name + ivar:(Ivar)ivar + objectClassName:(NSString *)objectClassName + linkOriginPropertyName:(NSString *)linkOriginPropertyName; + // private setters @property (nonatomic, assign) NSUInteger column; +@property (nonatomic, readwrite) NSString *name; @property (nonatomic, readwrite, assign) RLMPropertyType type; @property (nonatomic, readwrite) BOOL indexed; @property (nonatomic, readwrite) BOOL optional; @@ -66,6 +79,8 @@ FOUNDATION_EXTERN BOOL RLMPropertyTypeIsNumeric(RLMPropertyType propertyType); @property (nonatomic) SEL getterSel; @property (nonatomic) SEL setterSel; +- (RLMProperty *)copyWithNewName:(NSString *)name; + @end @interface RLMProperty (Dynamic) @@ -81,12 +96,14 @@ FOUNDATION_EXTERN BOOL RLMPropertyTypeIsNumeric(RLMPropertyType propertyType); @param name The property name. @param type The property type. @param objectClassName The object type used for Object and Array types. - + @param linkOriginPropertyName The property name of the origin of a link. Used for linking objects properties. + @return An initialized instance of RLMProperty. */ - (instancetype)initWithName:(NSString *)name type:(RLMPropertyType)type objectClassName:(NSString *)objectClassName + linkOriginPropertyName:(NSString *)linkOriginPropertyName indexed:(BOOL)indexed optional:(BOOL)optional; @end diff --git a/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMRealm_Private.h b/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMRealm_Private.h index 68b3b82..f5704a7 100644 --- a/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMRealm_Private.h +++ b/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMRealm_Private.h @@ -37,42 +37,6 @@ void RLMRealmTranslateException(NSError **error); + (void)resetRealmState; -/** - This method is useful only in specialized circumstances, for example, when opening Realm files - retrieved externally that contain a different schema than defined in your application. - If you are simply building an app on Realm you should consider using: - [defaultRealm]([RLMRealm defaultRealm]) or [realmWithPath:]([RLMRealm realmWithPath:]) - - Obtains an `RLMRealm` instance with persistence to a specific file path with - options. - - @warning This method is useful only in specialized circumstances. - - @param path Path to the file you want the data saved in. - @param key 64-byte key to use to encrypt the data. - @param readonly `BOOL` indicating if this Realm is read-only (must use for read-only files) - @param inMemory `BOOL` indicating if this Realm is in-memory - @param dynamic `BOOL` indicating if this Realm is dynamic - @param customSchema `RLMSchema` object representing the schema for the Realm - @param outError If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in NULL. - - @return An `RLMRealm` instance. - - @see RLMRealm defaultRealm - @see RLMRealm realmWithPath: - @see RLMRealm realmWithPath:readOnly:error: - @see RLMRealm realmWithPath:encryptionKey:readOnly:error: - */ -+ (instancetype)realmWithPath:(NSString *)path - key:(NSData *)key - readOnly:(BOOL)readonly - inMemory:(BOOL)inMemory - dynamic:(BOOL)dynamic - schema:(RLMSchema *)customSchema - error:(NSError **)outError; - - (void)registerEnumerator:(RLMFastEnumerator *)enumerator; - (void)unregisterEnumerator:(RLMFastEnumerator *)enumerator; - (void)detachAllEnumerators; diff --git a/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMResults_Private.h b/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMResults_Private.h index 7bdfa84..1adaf14 100644 --- a/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMResults_Private.h +++ b/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMResults_Private.h @@ -22,4 +22,8 @@ @interface RLMResults () @property (nonatomic, unsafe_unretained) RLMObjectSchema *objectSchema; +@property (nonatomic, readonly, getter=isAttached) BOOL attached; + ++ (instancetype)emptyDetachedResults; + @end diff --git a/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMSchema_Private.h b/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMSchema_Private.h index e951553..3eecb9e 100644 --- a/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMSchema_Private.h +++ b/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMSchema_Private.h @@ -21,9 +21,8 @@ extern "C" { #endif #import -#import -RLM_ASSUME_NONNULL_BEGIN +NS_ASSUME_NONNULL_BEGIN @class RLMRealm; @@ -39,9 +38,9 @@ RLM_ASSUME_NONNULL_BEGIN @return An `RLMSchema` containing only the given classes. */ -+ (instancetype)schemaWithObjectClasses:(NSArray RLM_GENERIC(Class) *)classes; ++ (instancetype)schemaWithObjectClasses:(NSArray *)classes; -@property (nonatomic, readwrite, copy) NSArray RLM_GENERIC(RLMObjectSchema *) *objectSchema; +@property (nonatomic, readwrite, copy) NSArray *objectSchema; // schema based on runtime objects + (instancetype)sharedSchema; @@ -59,7 +58,7 @@ RLM_ASSUME_NONNULL_BEGIN @end -RLM_ASSUME_NONNULL_END +NS_ASSUME_NONNULL_END #ifdef __cplusplus } diff --git a/Carthage/Build/iOS/Realm.framework/Realm b/Carthage/Build/iOS/Realm.framework/Realm index 8bc3009..6877a01 100755 Binary files a/Carthage/Build/iOS/Realm.framework/Realm and b/Carthage/Build/iOS/Realm.framework/Realm differ diff --git a/Carthage/Build/iOS/RealmSwift.framework.dSYM/Contents/Info.plist b/Carthage/Build/iOS/RealmSwift.framework.dSYM/Contents/Info.plist index fa8327b..f4db226 100644 --- a/Carthage/Build/iOS/RealmSwift.framework.dSYM/Contents/Info.plist +++ b/Carthage/Build/iOS/RealmSwift.framework.dSYM/Contents/Info.plist @@ -13,8 +13,8 @@ CFBundleSignature ???? CFBundleShortVersionString - 0.98.6 + 1.0.0 CFBundleVersion - 0.98.6 + 1.0.0 diff --git a/Carthage/Build/iOS/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift b/Carthage/Build/iOS/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift index 13bf439..ef2a0f4 100644 Binary files a/Carthage/Build/iOS/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift and b/Carthage/Build/iOS/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift differ diff --git a/Carthage/Build/iOS/RealmSwift.framework/Headers/RealmSwift-Swift.h b/Carthage/Build/iOS/RealmSwift.framework/Headers/RealmSwift-Swift.h index a478e34..539899a 100644 --- a/Carthage/Build/iOS/RealmSwift.framework/Headers/RealmSwift-Swift.h +++ b/Carthage/Build/iOS/RealmSwift.framework/Headers/RealmSwift-Swift.h @@ -1,4 +1,4 @@ -// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.1 clang-703.0.29) +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) #pragma clang diagnostic push #if defined(__has_include) && __has_include() @@ -93,9 +93,9 @@ typedef int swift_int4 __attribute__((__ext_vector_type__(4))); #endif #if defined(__has_feature) && __has_feature(modules) @import Realm; -@import Realm.Private; -@import Foundation; @import ObjectiveC; +@import Foundation; +@import Realm.Private; #endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" @@ -106,9 +106,15 @@ typedef int swift_int4 __attribute__((__ext_vector_type__(4))); @class RLMProperty; @class RLMListBase; @class RLMOptionalBase; +@class LinkingObjectsBase; -/// In Realm you define your model classes by subclassing Object and adding properties to be persisted. You then instantiate and use your custom subclasses instead of using the Object class directly. +/// Object is a class used to define Realm model objects. +/// +/// In Realm you define your model classes by subclassing Object +/// and adding properties to be persisted. +/// You then instantiate and use your custom subclasses instead of using the Object +/// class directly. /// /// class Dog: Object { /// dynamic var name: String = "" @@ -132,112 +138,130 @@ typedef int swift_int4 __attribute__((__ext_vector_type__(4))); ///
  • NSData ///
  • RealmOptional /// for optional numeric properties
  • Object -/// subclasses for to-one relationships
  • List -/// for to-many relationships
  • +/// subclasses, to model many-to-one relationships
  • List +/// , to model many-to-many relationships
  • /// String /// , NSString /// , NSDate /// , NSData /// and Object -/// subclass properties can be -/// optional. Int +/// subclass properties can be declared as optional. Int /// , Int8 -/// , Int16, Int32 +/// , +/// Int16, Int32 /// , Int64 /// , Float /// , Double /// , Bool -/// -/// and List -/// properties cannot. To store an optional number, instead use +/// , and List +/// properties cannot. To store an optional number, use /// RealmOptional /// , RealmOptional /// , RealmOptional -/// , or -/// RealmOptional -/// instead, which wraps an optional value of the generic type. +/// , or RealmOptional +/// instead, which wraps an +/// optional numeric value. /// /// All property types except for List /// and RealmOptional -/// must be declared as -/// dynamic var +/// must be declared as dynamic var /// . List -/// and RealmOptional -/// properties must be declared as -/// non-dynamic let +/// and +/// RealmOptional +/// properties must be declared as non-dynamic let /// properties. /// ///

    Querying

    -/// You can gets Results -/// of an Object subclass via the objects(_:) -/// instance -/// method on Realm -/// . +/// You can retrieve all objects of a given type from a Realm by calling the objects(_:) +/// instance method. /// ///

    Relationships

    /// See our Cocoa guide for more details. SWIFT_CLASS_NAMED("Object") @interface RealmSwiftObject : RLMObjectBase -/// Initialize a standalone (unpersisted) Object. Call add(_:) on a Realm to add standalone objects to a realm. +/// Initializes an unmanaged instance of a Realm object. +/// +/// Call add(_:) +/// on a Realm +/// instance to add an unmanaged object into that Realm. /// -///
    • see: Realm().add(_:)
    +///
    • see: Realm().add(_:) +///
    - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -/// Initialize a standalone (unpersisted) Object with values from an Array or Dictionary. Call add(_:) on a Realm to add standalone objects to a realm. +/// Initializes an unmanaged instance of a Realm object. /// -/// \param value The value used to populate the object. This can be any key/value coding compliant -/// object, or a JSON object such as those returned from the methods in NSJSONSerialization -/// , -/// or an Array -/// with one object for each persisted property. An exception will be -/// thrown if any required properties are not present and no default is set. +/// Pass in an Array +/// or Dictionary +/// instance to set the values of the object's +/// properties, or any other valid object as described below. +/// +/// Call add(_:) +/// on a Realm +/// instance to add an unmanaged object into that Realm. +/// +/// \param value The value used to populate the object. This can be any key-value coding compliant +/// object, or an array or dictionary returned from the methods in NSJSONSerialization +/// , or +/// an Array +/// containing one element for each persisted property. An exception will be +/// thrown if any required properties are not present and those properties were not defined with +/// default values. When passing in an `Array`, all properties must be present, +/// valid and in the same order as the properties defined in the model. +/// +/// - (nonnull instancetype)initWithValue:(id _Nonnull)value OBJC_DESIGNATED_INITIALIZER; -/// Indicates if an object can no longer be accessed. +/// Indicates if the object can no longer be accessed because it is now invalid. /// -/// An object can no longer be accessed if the object has been deleted from the containing -/// realm -/// or if invalidate -/// is called on the containing realm -/// . +/// An object can no longer be accessed if the object has been deleted from the Realm that manages it, or if +/// invalidate +/// is called on that Realm. @property (nonatomic, readonly, getter=isInvalidated) BOOL invalidated; -/// Returns a human-readable description of this object. +/// Returns a human-readable description of the object. @property (nonatomic, readonly, copy) NSString * _Nonnull description; -/// Helper to return the class name for an Object subclass. +/// A helper property that returns the class name for an Object subclass. @property (nonatomic, readonly, copy) NSString * _Nonnull className; /// WARNING: This is an internal helper method not intended for public use. :nodoc: + (Class _Nonnull)objectUtilClass:(BOOL)isSwift; -/// Override to designate a property as the primary key for an Object subclass. Only properties of type String and Int can be designated as the primary key. Primary key properties enforce uniqueness for each value whenever the property is set which incurs some overhead. Indexes are created automatically for primary key properties. +/// Override this method to specify the name of a property to be used as the primary key. +/// +/// Only properties of types String +/// and Int +/// can be designated as the primary key. Primary key properties enforce +/// uniqueness for each value whenever the property is set, which incurs minor overhead. Indexes are created +/// automatically for primary key properties. /// -/// \returns Name of the property designated as the primary key, or nil +/// \returns The name of the property designated as the primary key, or nil /// if the model has no primary key. + (NSString * _Nullable)primaryKey; -/// Override to return an array of property names to ignore. These properties will not be persisted and are treated as transient. +/// Override this method to specify the names of properties to ignore. These properties will not be persisted within the Realm that manages the object. /// -/// \returns Array -/// of property names to ignore. +/// \returns An array of property names to ignore. + (NSArray * _Nonnull)ignoredProperties; -/// Return an array of property names for properties which should be indexed. Only supported for string and int properties. +/// Returns an array of property names for properties which should be indexed. /// -/// \returns Array -/// of property names to index. +/// Only string, integer, boolean, and NSDate +/// properties are supported. +/// +/// \returns An array of property names. + (NSArray * _Nonnull)indexedProperties; - (id _Nullable)objectForKeyedSubscript:(NSString * _Nonnull)key; - (void)setObject:(id _Nullable)value forKeyedSubscript:(NSString * _Nonnull)key; -/// Returns whether both objects are equal. +/// Returns whether two Realm objects are equal. /// -/// Objects are considered equal when they are both from the same Realm and point to the same +/// Objects are considered equal if and only if they are both managed by the same Realm and point to the same /// underlying object in the database. /// -/// \param object Object to compare for equality. +/// \param object The object to compare the receiver to. - (BOOL)isEqual:(id _Nullable)object; /// WARNING: This is an internal initializer not intended for public use. :nodoc: @@ -247,6 +271,7 @@ SWIFT_CLASS_NAMED("Object") - (nonnull instancetype)initWithValue:(id _Nonnull)value schema:(RLMSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER; - (RLMListBase * _Nonnull)listForProperty:(RLMProperty * _Nonnull)prop; - (RLMOptionalBase * _Nonnull)optionalForProperty:(RLMProperty * _Nonnull)prop; +- (LinkingObjectsBase * _Nullable)linkingObjectsForProperty:(RLMProperty * _Nonnull)prop; @end @@ -256,6 +281,7 @@ SWIFT_CLASS("_TtC10RealmSwift13DynamicObject") @interface DynamicObject : RealmSwiftObject - (RLMListBase * _Nonnull)listForProperty:(RLMProperty * _Nonnull)prop; - (RLMOptionalBase * _Nonnull)optionalForProperty:(RLMProperty * _Nonnull)prop; +- (LinkingObjectsBase * _Nullable)linkingObjectsForProperty:(RLMProperty * _Nonnull)prop; /// :nodoc: - (id _Nullable)valueForUndefinedKey:(NSString * _Nonnull)key; @@ -271,6 +297,20 @@ SWIFT_CLASS("_TtC10RealmSwift13DynamicObject") - (nonnull instancetype)initWithValue:(id _Nonnull)value schema:(RLMSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER; @end +@class RLMResults; + + +/// :nodoc: Internal class. Do not use directly. Used for reflection and initialization +SWIFT_CLASS("_TtC10RealmSwift18LinkingObjectsBase") +@interface LinkingObjectsBase : NSObject +@property (nonatomic, readonly, copy) NSString * _Nonnull objectClassName; +@property (nonatomic, readonly, copy) NSString * _Nonnull propertyName; +- (void)attachToObject:(RLMObjectBase * _Nonnull)object property:(RLMProperty * _Nonnull)property; +@property (nonatomic, readonly, strong) RLMResults * _Nonnull rlmResults; +- (nonnull instancetype)initFromClassName:(NSString * _Nonnull)objectClassName property:(NSString * _Nonnull)propertyName OBJC_DESIGNATED_INITIALIZER; +- (NSInteger)countByEnumeratingWithState:(NSFastEnumerationState * _Null_unspecified)state objects:(id _Nullable * _Null_unspecified)buffer count:(NSInteger)len; +@end + @class RLMArray; @@ -300,7 +340,6 @@ SWIFT_CLASS_NAMED("ObjectUtil") - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @end -@class RLMResults; /// :nodoc: Internal class. Do not use directly. diff --git a/Carthage/Build/iOS/RealmSwift.framework/Info.plist b/Carthage/Build/iOS/RealmSwift.framework/Info.plist index 515c690..2f5d4e1 100644 Binary files a/Carthage/Build/iOS/RealmSwift.framework/Info.plist and b/Carthage/Build/iOS/RealmSwift.framework/Info.plist differ diff --git a/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftdoc b/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftdoc index b087cd7..ee007ae 100644 Binary files a/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftdoc and b/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftdoc differ diff --git a/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftmodule b/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftmodule index 3ac8e7c..fa6148b 100644 Binary files a/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftmodule and b/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftmodule differ diff --git a/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftdoc b/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftdoc index 337185a..ddba49c 100644 Binary files a/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftdoc and b/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftdoc differ diff --git a/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftmodule b/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftmodule index 46ed61f..b0ce7f8 100644 Binary files a/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftmodule and b/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftmodule differ diff --git a/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftdoc b/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftdoc index d74c549..c3e57d3 100644 Binary files a/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftdoc and b/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftdoc differ diff --git a/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftmodule b/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftmodule index d903e86..a2216e0 100644 Binary files a/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftmodule and b/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftmodule differ diff --git a/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftdoc b/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftdoc index 6b00831..6c25c04 100644 Binary files a/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftdoc and b/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftdoc differ diff --git a/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule b/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule index 498e81c..f78c9e2 100644 Binary files a/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule and b/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule differ diff --git a/Carthage/Build/iOS/RealmSwift.framework/RealmSwift b/Carthage/Build/iOS/RealmSwift.framework/RealmSwift index f74ae16..c68af57 100755 Binary files a/Carthage/Build/iOS/RealmSwift.framework/RealmSwift and b/Carthage/Build/iOS/RealmSwift.framework/RealmSwift differ diff --git a/Carthage/Build/tvOS/29C0D633-D3CC-3962-B55D-3AC60E6698DE.bcsymbolmap b/Carthage/Build/tvOS/29C0D633-D3CC-3962-B55D-3AC60E6698DE.bcsymbolmap deleted file mode 100644 index f20d1c5..0000000 --- a/Carthage/Build/tvOS/29C0D633-D3CC-3962-B55D-3AC60E6698DE.bcsymbolmap +++ /dev/null @@ -1,8801 +0,0 @@ -BCSymbolMap Version: 1.0 -_ZN5realm9TableViewD1Ev -__clang_call_terminate -_ZNK5realm5_impl10AsyncQuery21is_for_current_threadEv -_ZN5realm13TableViewBaseC2Ev -_ZN5realm9TableViewD0Ev -_ZNK5realm13TableViewBase15get_column_baseEm -_ZNK5realm13TableViewBase4sizeEv -_ZNK5realm9TableView18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_18ConstSourcePayloadE -_ZN5realm9TableView18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_20MutableSourcePayloadE -_ZN5realm9TableView23apply_and_consume_patchERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEERNS_5GroupE -_ZN5realm10RowIndexesD1Ev -_ZN5realm10RowIndexesD0Ev -_ZNK5realm10RowIndexes14sync_if_neededEv -_ZNK5realm10RowIndexes10is_in_syncEv -_ZN5realm19ColumnBaseWithIndexD2Ev -_ZNK5realm19ColumnBaseWithIndex16has_search_indexEv -_ZNK5realm19ColumnBaseWithIndex16get_search_indexEv -_ZN5realm19ColumnBaseWithIndex16get_search_indexEv -_ZN5realm10ColumnBase39set_search_index_allow_duplicate_valuesEb -_ZN5realm6ColumnIxE18replace_root_arrayENSt3__110unique_ptrINS_5ArrayENS2_14default_deleteIS4_EEEE -_ZNK5realm10ColumnBase21get_subtable_accessorEm -_ZN5realm10ColumnBase25discard_subtable_accessorEm -_ZN5realm10ColumnBase19adj_acc_insert_rowsEmm -_ZN5realm10ColumnBase17adj_acc_erase_rowEm -_ZN5realm10ColumnBase17adj_acc_move_overEmm -_ZN5realm10ColumnBase17adj_acc_swap_rowsEmm -_ZN5realm10ColumnBase24adj_acc_clear_root_tableEv -_ZN5realm10ColumnBase4markEi -_ZN5realm10ColumnBase30bump_link_origin_table_versionEv -_ZN5realm10ColumnBase26do_discard_child_accessorsEv -_ZNK5realm6ColumnIxE7get_valEm -_ZNK5realm14ColumnTemplateIxE14compare_valuesEmm -_ZThn16_NK5realm6ColumnIxE7get_valEm -_ZN5realm12ArrayIntegerD1Ev -_ZN5realm12ArrayIntegerD0Ev -_ZN5realm5Array16update_child_refEmm -_ZNK5realm5Array13get_child_refEm -_ZNK5realm5Array12GetWidthTypeEv -_ZN5realm10LogicErrorD1Ev -_ZN5realm5_impl17NullableOrNothingINS_12ArrayIntegerEE8set_nullERS2_m -_ZN5realm6BpTreeIxE14SetNullHandlerD1Ev -_ZN5realm6BpTreeIxE14SetNullHandler6updateENS_6MemRefEPNS_11ArrayParentEmm -_ZN5realm6BpTreeIxE14SetNullHandlerD0Ev -_ZN5realm6BpTreeIxE17LeafValueInserter11leaf_insertENS_6MemRefERNS_11ArrayParentEmRNS_9AllocatorEmRNS_5Array10TreeInsertIS2_EE -_ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZThn16_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZThn16_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZTv0_n24_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZTv0_n24_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekposENS_4fposI11__mbstate_tEEj -_ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_ -_ZN5realm6BpTreeIxE12EraseHandlerD1Ev -_ZN5realm6BpTreeIxE12EraseHandler15erase_leaf_elemENS_6MemRefEPNS_11ArrayParentEmm -_ZN5realm6BpTreeIxE12EraseHandler12destroy_leafENS_6MemRefE -_ZN5realm6BpTreeIxE12EraseHandler20replace_root_by_leafENS_6MemRefE -_ZN5realm6BpTreeIxE12EraseHandler26replace_root_by_empty_leafEv -_ZN5realm6BpTreeIxE12EraseHandlerD0Ev -_ZN5realm6BpTreeIxE13UpdateHandlerD1Ev -_ZN5realm6BpTreeIxE13UpdateHandler6updateENS_6MemRefEPNS_11ArrayParentEmm -_ZN5realm6BpTreeIxE13UpdateHandlerD0Ev -_ZN5realm10BpTreeBase7destroyEv -_ZN5realm6BpTreeIxE12SliceHandler10slice_leafENS_6MemRefEmmRNS_9AllocatorE -_ZN5realm6ColumnIxE13CreateHandler11create_leafEm -_ZNK5realm5Table10unbind_ptrEv -_ZNKSt3__114default_deleteIN5realm22TableViewHandoverPatchEEclEPS2_ -_ZN5realm13TableViewBaseD2Ev -_ZN5realm13TableViewBaseaSEOS0_ -_ZN5realm11SharedGroup10BadVersionD1Ev -_ZN5realm11SharedGroup10BadVersionD0Ev -_ZNSt3__117bad_function_callD1Ev -_ZNSt3__117bad_function_callD0Ev -.str -.str.1 -.str.2 -.str.3 -.str.4 -.str.5 -.str.6 -.str.7 -.str.8 -.str.9 -.str.10 -.str.11 -.str.12 -_ZTSN5realm9TableViewE -_ZTIN5realm9TableViewE -_ZTSN5realm10RowIndexesE -_ZTIN5realm10RowIndexesE -_ZTSN5realm6ColumnIxEE -_ZTSN5realm14ColumnTemplateIxEE -_ZTSN5realm18ColumnTemplateBaseE -_ZTIN5realm18ColumnTemplateBaseE -_ZTIN5realm14ColumnTemplateIxEE -_ZTIN5realm6ColumnIxEE -_ZTSN5realm12ArrayIntegerE -_ZTIN5realm12ArrayIntegerE -.str.13 -.str.14 -.str.15 -.str.16 -_ZTSN5realm6BpTreeIxE14SetNullHandlerE -_ZTSN5realm5Array13UpdateHandlerE -_ZTIN5realm5Array13UpdateHandlerE -_ZTIN5realm6BpTreeIxE14SetNullHandlerE -.str.17 -.str.18 -.str.19 -.str.20 -.str.21 -.str.22 -.str.23 -.str.24 -_ZTSNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEEE -_ZTINSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEEE -_ZTSNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEEE -_ZTINSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEEE -.str.25 -.str.26 -.str.27 -.str.28 -.str.29 -.str.30 -.str.31 -.str.32 -_ZTSN5realm6BpTreeIxE12EraseHandlerE -_ZTSN5realm5Array12EraseHandlerE -_ZTIN5realm5Array12EraseHandlerE -_ZTIN5realm6BpTreeIxE12EraseHandlerE -.str.33 -.str.34 -.str.35 -_ZTSN5realm6BpTreeIxE13UpdateHandlerE -_ZTIN5realm6BpTreeIxE13UpdateHandlerE -.str.36 -.str.37 -.str.39 -.str.40 -.str.41 -_ZTSN5realm6BpTreeIxE12SliceHandlerE -_ZTSN5realm10BpTreeBase12SliceHandlerE -_ZTIN5realm10BpTreeBase12SliceHandlerE -_ZTIN5realm6BpTreeIxE12SliceHandlerE -_ZTSN5realm6ColumnIxE13CreateHandlerE -_ZTSN5realm10ColumnBase13CreateHandlerE -_ZTIN5realm10ColumnBase13CreateHandlerE -_ZTIN5realm6ColumnIxE13CreateHandlerE -.str.42 -.str.43 -_ZTSN5realm11SharedGroup10BadVersionE -_ZTIN5realm11SharedGroup10BadVersionE -_ZTSNSt3__117bad_function_callE -_ZTINSt3__117bad_function_callE -Apple LLVM version 7.3.0 (clang-703.0.29) -operator* -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/memory -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release -operator bool -operator= -__libcpp_compressed_pair_imp -__compressed_pair -unique_ptr -get_deleter -forward > -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/type_traits -move > &> -import_from_handover -core/include/realm/group_shared.hpp -function -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/functional -operator[] -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/vector -clear -forward -~bad_function_call -bad_function_call -operator() -~unique_ptr -first -operator-> -forward > -release -move > &> -~BadVersion -BadVersion -import_from_handover -forward > > -second -reset -move *&> -forward -Handover -export_for_handover -load -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/atomic -get -empty -__wrap_iter -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iterator -__unwrap_iter -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/algorithm -__move -move -__annotate_shrink -__destruct_at_end -__wrap_iter -__make_iter -begin -cbegin -base -operator- -erase -operator- -__distance > -distance > -operator== -operator() -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/async_query.cpp -find_if, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/async_query.cpp:78:27)> -end > > -begin > > -size -store -~function -__end_cap -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__split_buffer -capacity -~__split_buffer -__invalidate_all_iterators -__annotate_new -move -swap -move_if_noexcept -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/utility -__construct_backward -data -__annotate_contiguous_container -__annotate_delete -__swap_out_circular_buffer -__alloc -allocate -forward &> -__split_buffer -max_size -__max_size -__recommend -__push_back_slow_path -__done -forward -Callback -Realm/ObjectStore/impl/async_query.hpp -construct -__construct -__RAII_IncreaseAnnotator -push_back -operator!= -move -swap -move -swap -swap -shared_ptr -move &> -~lock_guard -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__mutex_base -lock_guard -forward > > -unlock -core/include/realm/util/thread.hpp -~LockGuard -move *&> -max -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/limits -VersionID -forward -lock -LockGuard -export_for_handover -~Handover -allocator -forward -__vector_base -vector -~shared_ptr -bad_weak_ptr -shared_ptr -shared_from_this -end -__bit_iterator -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__bit_reference -__copy_unaligned >, true> -__to_raw_pointer -min > -min -__copy_aligned >, true> -copy >, true> -operator- -__distance >, true, 0> > -distance >, true, 0> > -__construct_at_end >, true, 0> > -__external_cap_to_internal -__internal_cap_to_external -forward > -select_on_container_copy_construction -~vector -move, std::__1::default_delete > > &> -move, std::__1::default_delete > > &> -move -operator!= -operator== -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/thread -is_for_current_thread -~__vector_base -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.hpp -move -move &> -__move_assign_alloc -deallocate -__move_assign -move &> -__cap -move &> -core/include/realm/views.hpp -max > -max -__allocate -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/new -min > -min -__to_raw_pointer -destroy -__destroy -destroy -__construct_range_forward -__construct_at_end -__unwrap_iter -__copy -copy -__advance -advance -__distance -distance -assign -__copy_assign_alloc -move &> -move -swap -core/include/realm/util/bind_ptr.hpp -bind_ptr -move -move &> -core/include/realm/bptree.hpp -move_assign -core/include/realm/column.hpp -BasicTableRef -core/include/realm/table_ref.hpp -move -core/include/realm/table_view.hpp -is_attached -wants_background_updates -move -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/exception -get_coordinator -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.hpp -~Callback -move &> -operator++ -~SortOrder -move &> -~bind_ptr -move -swap -move &> -~TableViewBase -~TableView -__to_raw_pointer -__destroy -destroy -__atomic_base -atomic -exception_ptr -get_shared_group -forward *> -apply_patch -apply_and_consume_patch -TableView -clone_for_handover -forward -move -forward -forward > *> -forward -QueryHandoverPatch -core/include/realm/handover_defs.hpp -forward -TableViewHandoverPatch -__to_raw_pointer > > -__destroy > > -destroy > > -~QueryHandoverPatch -~LinkViewHandoverPatch -~TableViewHandoverPatch -get_column_base -~RowIndexes -unbind_ptr -core/include/realm/table.hpp -unbind -~BasicTableRef -core/include/realm/link_view.hpp -__to_raw_pointer -__destroy -destroy -__deallocate -__to_raw_pointer -__destroy -destroy -~Sorter -init_from_ref -core/include/realm/array.hpp -get_root_array -get_alloc -~CreateHandler -create -create_array -create_leaf -CreateHandler -forward -forward -Sorter -forward -__vector_base_common -is_in_sync -sync_if_needed -compare_values -get_val -do_discard_child_accessors -operator= > -create_root_from_mem -create_root_from_ref -get_parent -get_ref_from_parent -init_from_parent -refresh_accessor_tree -bump_link_origin_table_version -mark -adj_acc_clear_root_table -adj_acc_swap_rows -adj_acc_move_over -adj_acc_erase_row -adj_acc_insert_rows -discard_subtable_accessor -get_subtable_accessor -update_from_parent -set_ndx_in_parent -get_ndx_in_parent -set_parent -~SliceHandler -slice_leaf -SliceHandler -~DeepArrayDestroyGuard -core/include/realm/impl/destroy_guard.hpp -is_read_only -core/include/realm/alloc.hpp -write -DeepArrayDestroyGuard -detach -clone_deep -replace_root_array -get_mem -get_ref -set_search_index_allow_duplicate_values -get_search_index -insert -core/include/realm/index_string.hpp -populate_search_index -StringIndex -create_search_index -has_search_index -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/array -__unwrap_iter -__unwrap_iter -__copy -copy -core/include/realm/string_data.hpp -get_index_data -~Column -~BpTreeBase -~BpTree -swap_rows_without_updating_index -swap_rows -clear_and_destroy_children -get_type -clear_without_updating_index -~UpdateHandler -update -UpdateHandler -set -core/include/realm/array_integer.hpp -move_last_over -move_last_over_without_updating_index -update_ref -erase -move_last_row_over -~EraseHandler -replace_root_by_empty_leaf -default_delete -forward > -unique_ptr > -move > &> -forward -move -replace_root_by_leaf -free_ -destroy_leaf -has_refs -erase_leaf_elem -EraseHandler -set_header_size -erase_without_updating_index -erase -do_erase -erase_rows -StringData -to_str -insert -adjust -to_size_t -core/include/realm/utilities.hpp -ensure_bptree_offsets -forward -inspect_value, std::__1::allocator >, int> -core/include/realm/util/inspect.hpp -inspect_all, std::__1::allocator >, int> -inspect_all, std::__1::allocator >, unsigned long, int> -terminate -core/include/realm/util/terminate.hpp -bptree_insert::LeafValueInserter> -~basic_stringstream -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iosfwd -forward -inspect_all, std::__1::allocator > > -inspect_all, std::__1::allocator >, unsigned long> -inspect_value, std::__1::allocator >, unsigned long> -inspect_all, std::__1::allocator >, unsigned long, unsigned long> -operator<< > -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ostream -length -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/string -setstate -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ios -failed -widen -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__locale -use_facet > -fill -flags -rdbuf -ostreambuf_iterator -width -basic_string -sputn -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/streambuf -__pad_and_output > -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/locale -__put_character_sequence > -sputc -max > -max -overflow -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/sstream -to_char_type -eq -not_eof -eq_int_type -pbackfail -to_int_type -egptr -underflow -operator long long -seekpos -epptr -pbase -eback -gptr -fpos -pptr -seekoff -~basic_stringbuf -pbump -setp -__get_long_cap -resize -setg -__get_short_size -__get_long_size -addressof -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__functional_base -pointer_to -__get_short_pointer -__get_long_pointer -__is_long -__get_pointer -__to_raw_pointer -str -__zero -basic_stringbuf -basic_ostream -eof -init -basic_istream -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/istream -basic_iostream -ios_base -basic_ios -_ZTv0_n24_NSt3__113basic_ostreamIcNS_11char_traitsIcEEED0Ev -_ZTv0_n24_NSt3__113basic_ostreamIcNS_11char_traitsIcEEED1Ev -_ZTv0_n24_NSt3__113basic_istreamIcNS_11char_traitsIcEEED0Ev -_ZTv0_n24_NSt3__113basic_istreamIcNS_11char_traitsIcEEED1Ev -_ZTv0_n24_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev -_ZTv0_n24_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev -_ZThn16_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev -_ZThn16_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev -basic_stringstream -terminate -~Array -Array -MemRef -leaf_insert -get_is_inner_bptree_node_from_header -translate -bptree_append::LeafValueInserter> -move -insert -null_or_default_value -insert_rows -~SetNullHandler -SetNullHandler -root -root_as_leaf -set_null -null -core/include/realm/null.hpp -update_parent -get_header_from_data -destroy_deep -erase -equal > -equal -safe_equal -is_null -to_str -set -~LogicError -core/include/realm/exceptions.hpp -exception -LogicError -~pair -~MemRef -get_leaf -is_nullable -back -get_bptree_size -is_inner_bptree_node -root_is_leaf -~ColumnBase -~StringIndex -~ColumnBaseWithIndex -forward > -move > &> -BpTreeBase -forward -move -GetWidthType -to_ref -get_as_ref -get_child_ref -update_child_ref -~ArrayInteger -~ArrayParent -ArrayParent -ArrayInteger -BpTree -ColumnTemplateBase -ColumnTemplate -forward -ColumnBase -ColumnBaseWithIndex -_ZThn16_NK5realm6ColumnIxE7is_nullEm -Column -RowIndexes -TableViewBase -forward -forward *> -__thread_id -get_id -SortOrder -get_sort -get_realm -mutex -detatch -attach_to -next_callback -call_callbacks -deliver -prepare_handover -run -is_alive -release_query -unregister -remove_callback -add_callback -~AsyncQuery -AsyncQuery -_ZZN5realm5_impl11CachedRealmC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_08__invokeEPv -_ZZN5realm5_impl11CachedRealmC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_18__invokeEPKv -_ZZN5realm5_impl11CachedRealmC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_28__invokeEPKv -weak_ptr -move &> -Realm/ObjectStore/impl/cached_realm_base.hpp -weak_ptr -CachedRealmBase -move -~CachedRealmBase -~weak_ptr -~RefCountedWeakPointer -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/cached_realm.cpp -__invoke -operator void (*)(const void *) -fetch_add -operator const void *(*)(const void *) -operator void (*)(void *) -notify -~CachedRealm -CachedRealm -_ZN12_GLOBAL__N_19notify_fdEi -_ZN5realm5_impl20ExternalCommitHelper8FdHolderD2Ev -_ZNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEED1Ev -_ZNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEED0Ev -_ZNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEE16__on_zero_sharedEv -_ZNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEE9__executeEv -_ZNSt3__112__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS2_16RealmCoordinatorEE3$_0JEEclEv -_ZNSt3__114__thread_proxyINS_5tupleIJMNS_19__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS5_16RealmCoordinatorEE3$_0JEEEEEFvvEPSB_EEEEEPvSG_ -__func__._ZN5realm5_impl20ExternalCommitHelper6listenEv -__func__._ZN12_GLOBAL__N_19notify_fdEi -_ZTVNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEEE -_ZTSNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEEE -_ZTINSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEEE -forward > *> -move > *&> -__execute -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/future -~__deferred_assoc_state -__set_deferred -__deferred_assoc_state -__make_deferred_assoc_state > -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), void> -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/tuple -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), false> -__async_func -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -__decay_copy<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -get<1, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> -get<0, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> -move >::*&)()> -__invoke >::*)(), std::__1::__async_assoc_state > *, void> -__thread_execute >::*)(), std::__1::__async_assoc_state > *, 1> -__thread_proxy >::*)(), std::__1::__async_assoc_state > *> > -forward >::*)(), std::__1::__async_assoc_state > *> *> -move >::*)(), std::__1::__async_assoc_state > *> *&> -__tuple_leaf > *, void> -__tuple_leaf >::*)(), void> -__tuple_impl<0, 1, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> -tuple >::*)(), std::__1::__async_assoc_state > *, false> -__decay_copy > *> -forward >::*)()> -__decay_copy >::*)()> -thread >::*)(), std::__1::__async_assoc_state > *, void> -forward > *> -move > *&> -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47) &> -name -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/typeinfo -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -__execute<> -__on_zero_shared -~__async_assoc_state -~__assoc_sub_state -move &> -condition_variable -__shared_count -__assoc_sub_state -__async_assoc_state -forward > -__make_async_assoc_state > -__does_policy_contain -async<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -wait -notify_fd -~FdHolder -Realm/ObjectStore/impl/apple/external_commit_helper.hpp -move -swap -future -move &> -operator int -FdHolder -notify_others -listen -~ExternalCommitHelper -ExternalCommitHelper -close -operator+= -operator+ -__push_back_slow_path > -__construct_forward > -__construct_backward > -move *&> -swap *> -move_iterator -operator!= *, std::__1::pair *> -__construct_at_end *> > -forward > &> -forward *> -__move_backward *, std::__1::pair *> -move_backward *, std::__1::pair *> -__move_range -forward > -construct, std::__1::pair > -__construct, std::__1::pair > -operator- *, std::__1::pair *> -__wrap_iter *> -__unwrap_iter *> -move &> -__move *, std::__1::pair *> -move *, std::__1::pair *> -__to_raw_pointer > -__destroy > -destroy > -operator- *, const std::__1::pair *> -operator== *, std::__1::pair *> -operator!= *> -pair -forward -pair -add_shifted -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/index_set.cpp -insert_at -do_add -add -find -Realm/ObjectStore/index_set.cpp -_ZN5realm26InvalidPrimaryKeyExceptionD1Ev -_ZN5realm26InvalidPrimaryKeyExceptionD0Ev -_ZNK5realm20ObjectStoreException4whatEv -_ZN5realm31ObjectSchemaValidationExceptionD1Ev -_ZN5realm31ObjectSchemaValidationExceptionD0Ev -_ZN5realm20ObjectStoreExceptionD1Ev -_ZN5realm20ObjectStoreExceptionD0Ev -_ZTSN5realm26InvalidPrimaryKeyExceptionE -_ZTSN5realm31ObjectSchemaValidationExceptionE -_ZTSN5realm20ObjectStoreExceptionE -_ZTIN5realm20ObjectStoreExceptionE -_ZTIN5realm31ObjectSchemaValidationExceptionE -_ZTIN5realm26InvalidPrimaryKeyExceptionE -_ZTSN5realm11ArrayParentE -_ZTIN5realm11ArrayParentE -operator== -operator!= -__push_back_slow_path -move &> -shrink_to_fit -__set_short_size -addressof -__set_long_size -assign -operator basic_string, std::__1::allocator > -move -swap -move_if_noexcept -forward -Property -Realm/ObjectStore/property.hpp -construct -__construct -__construct_backward -forward &> -reserve -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/initializer_list -forward -construct -__construct -__construct_range_forward -__construct_at_end -forward -StringData, std::__1::allocator > -move, std::__1::allocator >::__rep, std::__1::allocator > &> -c_str -what -Realm/ObjectStore/object_store.hpp -~InvalidPrimaryKeyException -~ObjectSchemaValidationException -~ObjectStoreException -primary_key_property -Realm/ObjectStore/object_schema.hpp -~Property -move -get_name -bind_ptr -BasicTableRef -get_link_target -get_column_type -core/include/realm/array_string.hpp -get_column_count -core/include/realm/spec.hpp -get_column_name -get_public_column_count -has_parent -move &> -__to_raw_pointer -__destroy -destroy -set_primary_key_property -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/object_schema.cpp -property_for_name -ObjectSchema -~ObjectSchema -Realm/ObjectStore/object_schema.cpp -_ZN5realm23SchemaMismatchExceptionD1Ev -_ZN5realm24MissingPropertyExceptionD1Ev -_ZN5realm29MismatchedPropertiesExceptionD1Ev -_ZN5realm26ChangedPrimaryKeyExceptionD1Ev -_ZN5realm22ExtraPropertyExceptionD1Ev -_ZN5realm29InvalidSchemaVersionExceptionD1Ev -_ZN5realm33PropertyTypeNotIndexableExceptionD1Ev -_ZN5realm33DuplicatePrimaryKeyValueExceptionD1Ev -_ZN5realm29ObjectSchemaPropertyExceptionC2ERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_8PropertyE -_ZN5realm31ObjectSchemaValidationExceptionC2ERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE -_ZN5realm29InvalidSchemaVersionExceptionD0Ev -_ZN5realm33DuplicatePrimaryKeyValueExceptionD0Ev -_ZN5realm25SchemaValidationExceptionD1Ev -_ZN5realm25SchemaValidationExceptionD0Ev -_ZN5realm23SchemaMismatchExceptionD0Ev -_ZN5realm33PropertyTypeNotIndexableExceptionD0Ev -_ZN5realm22ExtraPropertyExceptionD0Ev -_ZN5realm24MissingPropertyExceptionD0Ev -_ZN5realm27InvalidNullabilityExceptionD1Ev -_ZN5realm27InvalidNullabilityExceptionD0Ev -_ZN5realm26MissingObjectTypeExceptionD1Ev -_ZN5realm26MissingObjectTypeExceptionD0Ev -_ZN5realm29MismatchedPropertiesExceptionD0Ev -_ZN5realm26ChangedPrimaryKeyExceptionD0Ev -_ZN5realm29DuplicatePrimaryKeysExceptionD1Ev -_ZN5realm29DuplicatePrimaryKeysExceptionD0Ev -_ZN5realm31ObjectSchemaValidationExceptionC2ERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9_ -_ZN5realm29ObjectSchemaPropertyExceptionD1Ev -_ZN5realm29ObjectSchemaPropertyExceptionD0Ev -_ZN12_GLOBAL__N_1L21c_object_table_prefixE -_ZTSN5realm23SchemaMismatchExceptionE -_ZTIN5realm23SchemaMismatchExceptionE -_ZTSN5realm29InvalidSchemaVersionExceptionE -_ZTSN5realm18MigrationExceptionE -_ZTIN5realm18MigrationExceptionE -_ZTIN5realm29InvalidSchemaVersionExceptionE -_ZTSN5realm33PropertyTypeNotIndexableExceptionE -_ZTSN5realm29ObjectSchemaPropertyExceptionE -_ZTIN5realm29ObjectSchemaPropertyExceptionE -_ZTIN5realm33PropertyTypeNotIndexableExceptionE -_ZTSN5realm33DuplicatePrimaryKeyValueExceptionE -_ZTIN5realm33DuplicatePrimaryKeyValueExceptionE -.str.38 -_ZTSN5realm25SchemaValidationExceptionE -_ZTIN5realm25SchemaValidationExceptionE -_ZTSN5realm22ExtraPropertyExceptionE -_ZTIN5realm22ExtraPropertyExceptionE -_ZTSN5realm24MissingPropertyExceptionE -_ZTIN5realm24MissingPropertyExceptionE -_ZTSN5realm27InvalidNullabilityExceptionE -_ZTIN5realm27InvalidNullabilityExceptionE -_ZTSN5realm26MissingObjectTypeExceptionE -_ZTIN5realm26MissingObjectTypeExceptionE -_ZTSN5realm29MismatchedPropertiesExceptionE -_ZTIN5realm29MismatchedPropertiesExceptionE -_ZTSN5realm26ChangedPrimaryKeyExceptionE -_ZTIN5realm26ChangedPrimaryKeyExceptionE -_ZTSN5realm29DuplicatePrimaryKeysExceptionE -_ZTIN5realm29DuplicatePrimaryKeysExceptionE -.str.44 -.str.45 -.str.46 -.str.48 -.str.49 -.str.50 -.str.51 -.str.52 -.str.53 -.str.54 -.str.55 -.str.56 -.str.57 -.str.58 -.str.59 -.str.60 -.str.61 -.str.62 -.str.63 -.str.64 -.str.65 -.str.66 -.str.67 -.str.68 -.str.69 -.str.70 -.str.71 -.str.72 -.str.73 -.str.74 -.str.76 -.str.77 -.str.78 -.str.79 -.str.80 -.str.81 -.str.82 -.str.83 -.str.84 -.str.85 -.str.86 -.str.87 -.str.88 -switch.table -~DuplicatePrimaryKeysException -~ChangedPrimaryKeyException -~MismatchedPropertiesException -~MissingObjectTypeException -~InvalidNullabilityException -~MissingPropertyException -~ExtraPropertyException -~PropertyTypeNotIndexableException -~SchemaMismatchException -~SchemaValidationException -~DuplicatePrimaryKeyValueException -~InvalidSchemaVersionException -operator+, std::__1::allocator > -operator== -operator!= -__construct_range_forward -__construct_at_end -forward > -append -forward -construct -__construct -__construct_range_forward -__construct_at_end -forward > -swap -move -move_if_noexcept -forward -forward -construct -__construct -__construct_range_forward -__construct_at_end -forward > -construct -__construct -__construct_backward -forward &> -__emplace_back_slow_path &> -forward &> -forward -construct &> -__construct &> -emplace_back &> -forward -forward -end -operator!= -operator== -operator!= -move -swap -forward &> -__push_back_slow_path -move -forward -construct -__construct -forward -__emplace_back_slow_path -forward -construct -__construct -emplace_back -__emplace_back_slow_path -forward -construct -__construct -emplace_back -__emplace_back_slow_path -forward -construct -__construct -emplace_back -__emplace_back_slow_path -forward -construct -__construct -emplace_back -operator== -operator!= -__wrap_iter -__construct_forward -__construct_at_end > -__unwrap_iter > -__copy, realm::ObjectSchemaValidationException *> -copy, realm::ObjectSchemaValidationException *> -__unwrap_iter -__move_backward -move_backward -forward -ObjectStoreException -ObjectSchemaValidationException -construct -__construct -operator== -operator!= -__construct_range_forward, realm::ObjectSchemaValidationException *> -__advance > -advance > -operator- -__distance > -distance > -operator- -insert > -move -swap -move -move_if_noexcept -__construct_backward -forward &> -__emplace_back_slow_path -forward -construct -__construct -emplace_back -forward > -get_allocator -operator== -operator== -operator!= -forward -operator!=, std::__1::allocator > -~ObjectSchemaPropertyException -string_for_property_type -ObjectSchemaPropertyException -~MigrationException -MigrationException -is_empty -do_get_table -core/include/realm/group.hpp -get_table -~ConstTableView -requires_index -__to_raw_pointer -__destroy -destroy -get_table_name -__to_raw_pointer -__destroy -destroy -copy_property_values -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/object_store.cpp -copy_property_values -copy_property_values -copy_property_values -copy_property_values -copy_property_values -copy_property_values -copy_property_values -compare -operator== > -property_can_be_migrated_to_nullable -property_has_changed -__to_raw_pointer -__destroy -destroy -substr -begins_with -remove -add_empty_row -bind -get_or_add_table -DuplicatePrimaryKeysException -InvalidPrimaryKeyException -ChangedPrimaryKeyException -MismatchedPropertiesException -MissingObjectTypeException -InvalidNullabilityException -MissingPropertyException -ExtraPropertyException -PropertyTypeNotIndexableException -SchemaMismatchException -SchemaValidationException -DuplicatePrimaryKeyValueException -InvalidSchemaVersionException -delete_data_for_object -validate_primary_column_uniqueness -update_indexes -schema_from_group -update_realm_with_schema -needs_update -is_schema_at_version -create_tables -verify_object_schema -verify_schema -table_for_object_type_create_if_needed -table_for_object_type -table_name_for_object_type -object_type_for_table_name -set_primary_key_for_object -get_primary_key_for_object -set_schema_version -get_schema_version -create_metadata_tables -has_metadata_tables -Realm/ObjectStore/object_store.cpp -_ZNSt3__113unordered_mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_8weak_ptrIN5realm5_impl16RealmCoordinatorEEENS_4hashIS6_EENS_8equal_toIS6_EENS4_INS_4pairIKS6_SB_EEEEED1Ev -_ZN5realm18RealmFileExceptionD1Ev -_ZN5realm25MismatchedConfigExceptionD1Ev -_ZNK5realm5_impl15CachedRealmBase28is_cached_for_current_threadEv -_ZN5realm18RealmFileExceptionD0Ev -_ZN5realm25MismatchedConfigExceptionD0Ev -_ZN5realm11SharedGroup15do_advance_readINS_5_impl23NullInstructionObserverEEEbPT_NS0_9VersionIDERNS2_7HistoryE -_ZN5realm5_impl20ChangesetInputStreamD1Ev -_ZN5realm5_impl20ChangesetInputStream10next_blockERPKcS4_ -_ZN5realm5_impl20ChangesetInputStreamD0Ev -_ZN5realm5_impl17TransactLogParser10read_mixedEPNS_5MixedE -_ZN5realm4util6BufferImE7reserveEmm -_ZN5realm5_impl17TransactLogParser14BadTransactLogD1Ev -_ZN5realm4util6BufferImE6resizeEmmmm -_ZN5realm5_impl17TransactLogParser14BadTransactLogD0Ev -_ZNK5realm5_impl17TransactLogParser14BadTransactLog4whatEv -_ZNSt3__121__murmur2_or_cityhashImLm64EE18__hash_len_0_to_16EPKcm -_ZNSt3__121__murmur2_or_cityhashImLm64EE19__hash_len_17_to_32EPKcm -_ZNSt3__121__murmur2_or_cityhashImLm64EE19__hash_len_33_to_64EPKcm -_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl16RealmCoordinatorENS_9allocatorIS3_EEED1Ev -_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl16RealmCoordinatorENS_9allocatorIS3_EEED0Ev -_ZNSt3__120__shared_ptr_emplaceIN5realm5RealmENS_9allocatorIS2_EEED1Ev -_ZNSt3__120__shared_ptr_emplaceIN5realm5RealmENS_9allocatorIS2_EEED0Ev -_ZNSt3__16__sortIRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEvT0_SA_T_ -_ZNSt3__17__sort3IRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEjT0_SA_SA_T_ -_ZNSt3__17__sort4IRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEjT0_SA_SA_SA_T_ -_ZNSt3__17__sort5IRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEjT0_SA_SA_SA_SA_T_ -_ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEbT0_SA_T_ -_GLOBAL__sub_I_realm_coordinator.cpp -_ZL19s_coordinator_mutex -_ZL23s_coordinators_per_path -_ZTSN5realm18RealmFileExceptionE -_ZTIN5realm18RealmFileExceptionE -_ZTSN5realm25MismatchedConfigExceptionE -_ZTIN5realm25MismatchedConfigExceptionE -_ZTSN5realm5_impl20ChangesetInputStreamE -_ZTSN5realm5_impl17NoCopyInputStreamE -_ZTIN5realm5_impl17NoCopyInputStreamE -_ZTIN5realm5_impl20ChangesetInputStreamE -_ZTSN5realm5_impl17TransactLogParser14BadTransactLogE -_ZTIN5realm5_impl17TransactLogParser14BadTransactLogE -_ZTSNSt3__120__shared_ptr_emplaceIN5realm5_impl16RealmCoordinatorENS_9allocatorIS3_EEEE -_ZTINSt3__120__shared_ptr_emplaceIN5realm5_impl16RealmCoordinatorENS_9allocatorIS3_EEEE -_ZTSNSt3__120__shared_ptr_emplaceIN5realm5RealmENS_9allocatorIS2_EEEE -_ZTINSt3__120__shared_ptr_emplaceIN5realm5RealmENS_9allocatorIS2_EEEE -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp -__push_back_slow_path &> -forward &> -construct, const std::__1::shared_ptr &> -__construct, const std::__1::shared_ptr &> -__insertion_sort_incomplete<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -__insertion_sort_3<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -__sort5<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -__sort4<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -__sort3<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -swap -operator(), std::__1::shared_ptr > -__sort<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -sort *, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &> -sort, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59)> -__unwrap_iter, std::__1::allocator > > > > -__unwrap_iter *> > -__move *>, std::__1::back_insert_iterator, std::__1::allocator > > > > -move *>, std::__1::back_insert_iterator, std::__1::allocator > > > > -addressof, std::__1::allocator > > > -back_insert_iterator -back_inserter, std::__1::allocator > > > -operator== *, std::__1::shared_ptr *> -operator!= *> -forward &> -construct, std::__1::shared_ptr &> -__construct, std::__1::shared_ptr &> -__construct_range_forward *, std::__1::shared_ptr *> -__construct_at_end *> -forward > > -~unique_lock -unique_lock -move *&> -swap *> -move_if_noexcept > -__construct_backward *> -forward > &> -__push_back_slow_path > -forward > -construct, std::__1::shared_ptr > -__construct, std::__1::shared_ptr > -operator== *, std::__1::weak_ptr *> -operator!= *> -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__hash_table -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/unordered_map -move *&> -swap *> -move_if_noexcept > -__construct_backward *> -forward > &> -__push_back_slow_path > -forward > -construct, std::__1::weak_ptr > -__construct, std::__1::weak_ptr > -forward *> -pop_back -__hash_const_iterator -forward, std::__1::weak_ptr >, void *> > > > -move, std::__1::weak_ptr >, void *> > > &> -__hash_node_destructor -expired -~enable_shared_from_this -forward *> -forward > -~Schema -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/schema.hpp -forward -move -Schema -forward -make_unique -move -swap -move_if_noexcept -forward -construct -__construct -__construct_backward -forward &> -forward -__emplace_back_slow_path &, bool &> -forward &> -construct &, bool &> -__construct &, bool &> -emplace_back &, bool &> -shared_ptr -forward -__enable_weak_this -addressof > > -allocator -__on_zero_shared_weak -~__shared_ptr_emplace -~__libcpp_compressed_pair_imp -~__compressed_pair -get<0, realm::Realm::Config &&> -forward -get<0, std::__1::allocator &> -__libcpp_compressed_pair_imp &, realm::Realm::Config &&, 0, 0> -move &> -move &> &> -__compressed_pair &, realm::Realm::Config &&> -__tuple_leaf -__tuple_impl<0, realm::Realm::Config &&, realm::Realm::Config> -tuple -forward_as_tuple -__tuple_leaf &, void> -__tuple_impl<0, std::__1::allocator &, std::__1::allocator &> -tuple -forward &> -forward_as_tuple &> -__shared_ptr_emplace -allocator > > -forward > > > > -forward > *> -move > > > &> -__allocator_destructor -make_shared -make_shared -operator== -operator!= -operator== -operator!= -equal, std::__1::__wrap_iter, std::__1::__equal_to > -equal, std::__1::__wrap_iter > -operator== > -operator!= > -forward > -move -forward -make_unique -addressof, std::__1::weak_ptr > > -find > -move -swap -weak_ptr -operator= -__enable_weak_this -addressof > > -allocator -forward > -move &> -__shared_weak_count -__shared_ptr_emplace -allocator > > -forward > > > > -forward > *> -move > > > &> -make_shared<> -make_shared -__destroy > -destroy > -__destroy > -destroy > -forward -__hash_map_iterator -pair, std::__1::weak_ptr >, void *> *>, bool> -forward -forward, std::__1::weak_ptr >, void *> *> > -pair, std::__1::weak_ptr >, void *> *>, bool &, void> -__hash_iterator -addressof, std::__1::weak_ptr >, void *> *> > -ceil -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/cmath -__is_hash_power2 -__clz -__next_hash_pow2 -reset, std::__1::weak_ptr >, void *> **> -__rehash -rehash -max_load_factor -key_eq -__constrain_hash -bucket_count -__shift_mix -move -swap -__rotate -pair -__weak_hash_len_32_with_seeds -__hash_len_16 -__loadword -__hash_len_33_to_64 -__hash_len_17_to_32 -__loadword -__rotate_by_at_least_1 -__hash_len_0_to_16 -__do_string_hash -hash_function -__node_insert_unique -addressof > -construct> -__construct> -addressof > -forward > -construct, std::__1::basic_string > -__construct, std::__1::basic_string > -forward, std::__1::weak_ptr >, void *> > > > -forward, std::__1::weak_ptr >, void *> *> -move, std::__1::weak_ptr >, void *> > > &> -__hash_map_node_destructor -__construct_node_with_key -__unordered_map_equal -forward -__unordered_map_hasher -__hash_node_base -__bucket_list_deallocator -forward, std::__1::weak_ptr >, void *> **> -__hash_table -unordered_map -Realm/ObjectStore/shared_realm.hpp -~ReadLockUnlockGuard -operator() -~Buffer -core/include/realm/util/buffer.hpp -~StringBuffer -core/include/realm/util/string_buffer.hpp -~TransactLogParser -core/include/realm/impl/transact_log.hpp -~ChangesetInputStream -core/include/realm/impl/input_stream.hpp -parse_complete -~BadTransactLog -BadTransactLog -optimize_table -move_group_level_table -rename_group_level_table -erase_group_level_table -insert_group_level_table -select_descriptor -move_column -rename_column -erase_link_column -erase_column -insert_link_column -insert_column -is_valid_data_type -set_link_type -is_valid_link_type -remove_search_index -add_search_index -select_link_list -link_list_clear -link_list_nullify -link_list_erase -link_list_swap -link_list_move -link_list_insert -link_list_set -clear_table -select_table -operator() -reset -unique_ptr -less -core/include/realm/util/safe_int_ops.hpp -int_less_than -int_greater_than -int_multiply_with_overflow_detect -min -sub -int_subtract_with_overflow_detect -int_greater_than_or_equal -int_shift_left_with_overflow_detect -read_int -change_link_targets -insert_empty_rows -erase_substring -insert_substring -nullify_link -set_link -~Mixed -core/include/realm/mixed.hpp -set_mixed -Mixed -set_binary -set_string -get_datetime -core/include/realm/datetime.hpp -set_datetime -set_double -set_float -set_bool -set_int -read_mixed -set_table -DateTime -set_date_time -read_binary -set_string_unique -BinaryData -core/include/realm/binary_data.hpp -read_buffer -read_string -read_double -read_bytes -read_float -cast -cast_to_unsigned -int_subtract_with_overflow_detect -int_greater_than_or_equal -int_shift_left_with_overflow_detect -read_int -set_int_unique -int_subtract_with_overflow_detect -int_greater_than_or_equal -int_shift_left_with_overflow_detect -read_int -cast -cast_to_unsigned -int_subtract_with_overflow_detect -cast -cast_to_unsigned -int_greater_than_or_equal -int_shift_left_with_overflow_detect -read_int -read_char -parse_one -next_input_buffer -has_next -parse -next_block -~NoCopyInputStream -NoCopyInputStream -ChangesetInputStream -Buffer -StringBuffer -forward -unique_ptr -TransactLogParser -ReadLockUnlockGuard -ReadLockInfo -do_advance_read -get_replication -core/include/realm/alloc_slab.hpp -get_history -advance_read -advance_read -core/include/realm/lang_bind_helper.hpp -move -swap -operator(), std::__1::allocator > > > -move &> -version -operator< -__to_raw_pointer > -__destroy > -destroy > -is_for_realm -__libcpp_relaxed_load -use_count -__to_raw_pointer -__destroy -destroy -__to_raw_pointer > -__destroy > -destroy > -forward -forward -forward -enable_shared_from_this -move -realm -is_cached_for_current_thread -~MismatchedConfigException -MismatchedConfigException -~RealmFileException -RealmFileException -code -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/system_error -addressof, std::__1::weak_ptr > > -~__hash_value_type -__destroy, std::__1::weak_ptr > > -destroy, std::__1::weak_ptr > > -__node_alloc -~__hash_table -~unordered_map -process_available_async -advance_to_ready -advance_helper_shared_group_to_latest -move_new_queries_to_main -open_helper_shared_group -run_async_queries -on_change -clean_up_dead_queries -register_query -pin_version -send_commit_notifications -clear_cache -unregister_realm -~RealmCoordinator -RealmCoordinator -update_schema -get_schema -get_existing_coordinator -__cxx_global_var_init.1 -__cxx_global_var_init -_ZN5realm27InvalidTransactionExceptionD1Ev -_ZN5realm18QueryHandoverPatchD2Ev -_ZN5realm13TableViewBaseC2EOS0_ -_ZN5realm27InvalidTransactionExceptionD0Ev -_ZN5realm13TableViewBaseC2ERKS0_ -_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl10AsyncQueryENS_9allocatorIS3_EEED1Ev -_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl10AsyncQueryENS_9allocatorIS3_EEED0Ev -_ZTSN5realm7Results20InvalidatedExceptionE -_ZTIN5realm7Results20InvalidatedExceptionE -_ZTSN5realm27InvalidTransactionExceptionE -_ZTIN5realm27InvalidTransactionExceptionE -_ZTSN5realm7Results25OutOfBoundsIndexExceptionE -_ZTIN5realm7Results25OutOfBoundsIndexExceptionE -_ZTSN5realm7Results26DetatchedAccessorExceptionE -_ZTIN5realm7Results26DetatchedAccessorExceptionE -_ZTSN5realm7Results23IncorrectTableExceptionE -_ZTIN5realm7Results23IncorrectTableExceptionE -_ZTSNSt3__120__shared_ptr_emplaceIN5realm5_impl10AsyncQueryENS_9allocatorIS3_EEEE -_ZTINSt3__120__shared_ptr_emplaceIN5realm5_impl10AsyncQueryENS_9allocatorIS3_EEEE -_ZTSN5realm7Results30UnsupportedColumnTypeExceptionE -_ZTIN5realm7Results30UnsupportedColumnTypeExceptionE -atomic_store -atomic_exchange -atomic_load -operator() -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp -operator() -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:281:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:282:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:283:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:284:22)> -aggregate<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:281:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:282:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:283:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:284:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:272:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:273:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:274:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:275:22)> -aggregate<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:272:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:273:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:274:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:275:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:263:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:264:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:265:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:266:22)> -aggregate<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:263:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:264:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:265:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:266:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:254:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:255:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:256:22)> -OptionalStorage -core/include/realm/util/optional.hpp -constexpr_move -Optional -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:257:22)> -aggregate<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:254:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:255:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:256:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:257:22)> -impl_get_row_ndx -core/include/realm/row.hpp -row_ndx -get_index -table -impl_get_table -forward -__enable_weak_this -addressof > > -allocator -get<0, realm::Results &> -get<0, std::__1::allocator &> -__libcpp_compressed_pair_imp &, realm::Results &, 0, 0> -move &> -move &> &> -__compressed_pair &, realm::Results &> -__tuple_leaf -__tuple_impl<0, realm::Results &, realm::Results &> -forward_as_tuple -__tuple_leaf &, void> -__tuple_impl<0, std::__1::allocator &, std::__1::allocator &> -forward &> -forward_as_tuple &> -__shared_ptr_emplace -allocator > > -forward > > > > -forward > *> -move > > > &> -make_shared -make_shared -config -get_hasrefs_from_header -~DeepArrayRefDestroyGuard -__destroy -destroy -move -swap -__construct_backward -forward &> -forward -__push_back_slow_path -__to_raw_pointer -construct -__construct -register_view -DeepArrayRefDestroyGuard -__construct_range_forward -__construct_at_end -__construct_range_forward -__construct_at_end -move -move > &> -where -get_query -find_first -find_first -find_by_source_ndx -front -forward > -constexpr_move &> -some > -some, realm::BasicRowExpr > -make_optional > -BasicRowExpr -~InvalidTransactionException -InvalidTransactionException -forward > -forward > -move > &> -forward > -move &> -move -core/include/realm/query.hpp -AsyncQueryCancelationToken -~AsyncQueryCancelationToken -UnsupportedColumnTypeException -set_table_view -async -filter -sort -get_object_type -get_tableview -average -sum -index_of -update_tableview -last -validate_write -validate_read -~Results -Results -Realm/ObjectStore/results.cpp -___Z25RLMReplaceClassNameMethodP10objc_classP8NSString_block_invoke -__copy_helper_block_ -__destroy_helper_block_ -___Z28RLMReplaceSharedSchemaMethodP10objc_classP15RLMObjectSchema_block_invoke -__copy_helper_block_.4 -__destroy_helper_block_.5 -_ZL22RLMCreateAccessorClassP10objc_classP15RLMObjectSchemaP8NSStringPFPFvvEP11RLMProperty15RLMAccessorCodeESB_ -_ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode -_ZL17RLMAccessorSetterP11RLMProperty15RLMAccessorCode -_ZL27RLMAccessorStandaloneGetterP11RLMProperty15RLMAccessorCode -_ZL27RLMAccessorStandaloneSetterP11RLMProperty15RLMAccessorCode -_ZL14RLMCoerceToNilIU8__strongP11objc_objectET_S3_ -_ZL19accessorCodeForTypec15RLMPropertyType -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_2 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_3 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_4 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_5 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_6 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_7 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_8 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_9 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_10 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_11 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_12 -__copy_helper_block_.127 -__destroy_helper_block_.128 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke.131 -__copy_helper_block_.132 -__destroy_helper_block_.133 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke.136 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_2.139 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_3.143 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_4.147 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_5.151 -___ZL13RLMMakeSetterIcxEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIcxEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.159 -__destroy_helper_block_.160 -___ZL13RLMMakeSetterIsxEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIsxEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.173 -__destroy_helper_block_.174 -___ZL13RLMMakeSetterIixEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIixEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.179 -__destroy_helper_block_.180 -___ZL13RLMMakeSetterIlxEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIlxEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.185 -__destroy_helper_block_.186 -___ZL13RLMMakeSetterIxxEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIxxEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.190 -__destroy_helper_block_.191 -___ZL13RLMMakeSetterIffEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIffEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.196 -__destroy_helper_block_.197 -___ZL13RLMMakeSetterIddEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIddEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.202 -__destroy_helper_block_.203 -___ZL13RLMMakeSetterIbbEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIbbEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.208 -__destroy_helper_block_.209 -___ZL13RLMMakeSetterIU8__strongP8NSStringS2_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongP8NSStringS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.214 -__destroy_helper_block_.215 -_ZZZL13RLMMakeSetterIU8__strongP8NSStringS2_EPFvvEP11RLMPropertyEUb1_ENKUlvE_clEv -___ZL13RLMMakeSetterIU8__strongP6NSDateS2_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongP6NSDateS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.222 -__destroy_helper_block_.223 -___ZL13RLMMakeSetterIU8__strongP6NSDataS2_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongP6NSDataS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.230 -__destroy_helper_block_.231 -_ZZZL13RLMMakeSetterIU8__strongP6NSDataS2_EPFvvEP11RLMPropertyEUb1_ENKUlvE_clEv -___ZL13RLMMakeSetterIU8__strongP13RLMObjectBaseS2_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongP13RLMObjectBaseS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.240 -__destroy_helper_block_.241 -_ZL11RLMSetValueP13RLMObjectBasemS0_ -_ZL26RLMGetLinkedObjectForValueP8RLMRealmP8NSStringP11objc_objectm -___ZL13RLMMakeSetterIU8__strongP8RLMArrayS2_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongP8RLMArrayS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.258 -__destroy_helper_block_.259 -_ZL11RLMSetValueP13RLMObjectBasemPU28objcproto17NSFastEnumeration11objc_object -___ZL13RLMMakeSetterIU8__strongP11objc_objectS2_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongP11objc_objectS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.268 -__destroy_helper_block_.269 -_ZL11RLMSetValueP13RLMObjectBasemP11objc_object -___ZL13RLMMakeSetterIU8__strongPU16objcproto6RLMInt8NSNumberS3_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongPU16objcproto6RLMInt8NSNumberS3_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.289 -__destroy_helper_block_.290 -___ZL13RLMMakeSetterIU8__strongPU18objcproto8RLMFloat8NSNumberS3_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongPU18objcproto8RLMFloat8NSNumberS3_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.295 -__destroy_helper_block_.296 -___ZL13RLMMakeSetterIU8__strongPU19objcproto9RLMDouble8NSNumberS3_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongPU19objcproto9RLMDouble8NSNumberS3_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.301 -__destroy_helper_block_.302 -___ZL13RLMMakeSetterIU8__strongPU17objcproto7RLMBool8NSNumberS3_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongPU17objcproto7RLMBool8NSNumberS3_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.307 -__destroy_helper_block_.308 -___ZL27RLMAccessorStandaloneGetterP11RLMProperty15RLMAccessorCode_block_invoke -_ZL11RLMSuperSetP13RLMObjectBaseP8NSStringP11objc_object -__copy_helper_block_.315 -__destroy_helper_block_.316 -___ZL27RLMAccessorStandaloneSetterP11RLMProperty15RLMAccessorCode_block_invoke -__copy_helper_block_.322 -__destroy_helper_block_.323 -_ZZ13RLMDynamicSetENK3$_0clEv -_GLOBAL__sub_I_RLMAccessor.mm -__block_descriptor_tmp -OBJC_METH_VAR_NAME_ -OBJC_SELECTOR_REFERENCES_ -OBJC_CLASSLIST_REFERENCES_$_ -OBJC_METH_VAR_NAME_.2 -OBJC_SELECTOR_REFERENCES_.3 -OBJC_CLASS_NAME_ -__block_descriptor_tmp.7 -OBJC_METH_VAR_NAME_.8 -OBJC_SELECTOR_REFERENCES_.9 -_ZL18s_generatedClasses -OBJC_CLASSLIST_REFERENCES_$_.10 -OBJC_METH_VAR_NAME_.11 -OBJC_SELECTOR_REFERENCES_.12 -OBJC_METH_VAR_NAME_.13 -OBJC_SELECTOR_REFERENCES_.14 -_unnamed_cfstring_ -OBJC_METH_VAR_NAME_.16 -OBJC_SELECTOR_REFERENCES_.17 -_unnamed_cfstring_.19 -OBJC_METH_VAR_NAME_.20 -OBJC_SELECTOR_REFERENCES_.21 -_unnamed_cfstring_.23 -_unnamed_cfstring_.25 -OBJC_METH_VAR_NAME_.26 -OBJC_SELECTOR_REFERENCES_.27 -OBJC_METH_VAR_NAME_.28 -OBJC_SELECTOR_REFERENCES_.29 -OBJC_METH_VAR_NAME_.30 -OBJC_SELECTOR_REFERENCES_.31 -OBJC_METH_VAR_NAME_.32 -OBJC_SELECTOR_REFERENCES_.33 -OBJC_CLASSLIST_REFERENCES_$_.34 -OBJC_METH_VAR_NAME_.35 -OBJC_SELECTOR_REFERENCES_.36 -OBJC_METH_VAR_NAME_.37 -OBJC_SELECTOR_REFERENCES_.38 -OBJC_METH_VAR_NAME_.39 -OBJC_SELECTOR_REFERENCES_.40 -OBJC_METH_VAR_NAME_.41 -OBJC_SELECTOR_REFERENCES_.42 -OBJC_METH_VAR_NAME_.43 -OBJC_SELECTOR_REFERENCES_.44 -OBJC_METH_VAR_NAME_.45 -OBJC_SELECTOR_REFERENCES_.46 -OBJC_METH_VAR_NAME_.47 -OBJC_SELECTOR_REFERENCES_.48 -OBJC_METH_VAR_NAME_.49 -OBJC_SELECTOR_REFERENCES_.50 -OBJC_METH_VAR_NAME_.51 -OBJC_SELECTOR_REFERENCES_.52 -_unnamed_cfstring_.54 -OBJC_CLASSLIST_REFERENCES_$_.55 -OBJC_METH_VAR_NAME_.56 -OBJC_SELECTOR_REFERENCES_.57 -_unnamed_cfstring_.59 -OBJC_METH_VAR_NAME_.60 -OBJC_SELECTOR_REFERENCES_.61 -OBJC_METH_VAR_NAME_.62 -OBJC_SELECTOR_REFERENCES_.63 -OBJC_METH_VAR_NAME_.64 -OBJC_SELECTOR_REFERENCES_.65 -OBJC_METH_VAR_NAME_.66 -OBJC_SELECTOR_REFERENCES_.67 -OBJC_METH_VAR_NAME_.68 -OBJC_SELECTOR_REFERENCES_.69 -OBJC_METH_VAR_NAME_.70 -OBJC_SELECTOR_REFERENCES_.71 -OBJC_METH_VAR_NAME_.72 -OBJC_SELECTOR_REFERENCES_.73 -.str.75 -_unnamed_cfstring_.83 -.str.89 -.str.90 -.str.91 -.str.92 -OBJC_METH_VAR_NAME_.93 -OBJC_SELECTOR_REFERENCES_.94 -.str.95 -OBJC_CLASS_NAME_.96 -__block_descriptor_tmp.97 -.str.98 -OBJC_CLASS_NAME_.99 -__block_descriptor_tmp.100 -.str.101 -OBJC_CLASS_NAME_.102 -__block_descriptor_tmp.103 -.str.104 -OBJC_CLASS_NAME_.105 -__block_descriptor_tmp.106 -OBJC_CLASS_NAME_.107 -__block_descriptor_tmp.108 -.str.109 -OBJC_CLASS_NAME_.110 -__block_descriptor_tmp.111 -.str.112 -OBJC_CLASS_NAME_.113 -__block_descriptor_tmp.114 -.str.115 -OBJC_CLASS_NAME_.116 -__block_descriptor_tmp.117 -.str.118 -OBJC_CLASS_NAME_.119 -__block_descriptor_tmp.120 -.str.121 -OBJC_CLASS_NAME_.122 -__block_descriptor_tmp.123 -.str.124 -OBJC_CLASS_NAME_.125 -__block_descriptor_tmp.126 -.str.129 -__block_descriptor_tmp.130 -.str.134 -__block_descriptor_tmp.135 -OBJC_CLASS_NAME_.137 -__block_descriptor_tmp.138 -.str.140 -OBJC_CLASS_NAME_.141 -__block_descriptor_tmp.142 -.str.144 -OBJC_CLASS_NAME_.145 -__block_descriptor_tmp.146 -.str.148 -OBJC_CLASS_NAME_.149 -__block_descriptor_tmp.150 -.str.152 -OBJC_CLASS_NAME_.153 -__block_descriptor_tmp.154 -.str.155 -_unnamed_cfstring_.156 -.str.157 -__block_descriptor_tmp.158 -__block_literal_global -__block_descriptor_tmp.161 -OBJC_METH_VAR_NAME_.162 -OBJC_SELECTOR_REFERENCES_.163 -.str.164 -_unnamed_cfstring_.165 -.str.166 -_unnamed_cfstring_.167 -OBJC_METH_VAR_NAME_.168 -OBJC_SELECTOR_REFERENCES_.169 -.str.170 -__block_descriptor_tmp.171 -__block_literal_global.172 -__block_descriptor_tmp.175 -.str.176 -__block_descriptor_tmp.177 -__block_literal_global.178 -__block_descriptor_tmp.181 -.str.182 -__block_descriptor_tmp.183 -__block_literal_global.184 -__block_descriptor_tmp.187 -__block_descriptor_tmp.188 -__block_literal_global.189 -__block_descriptor_tmp.192 -.str.193 -__block_descriptor_tmp.194 -__block_literal_global.195 -__block_descriptor_tmp.198 -.str.199 -__block_descriptor_tmp.200 -__block_literal_global.201 -__block_descriptor_tmp.204 -.str.205 -__block_descriptor_tmp.206 -__block_literal_global.207 -__block_descriptor_tmp.210 -.str.211 -__block_descriptor_tmp.212 -__block_literal_global.213 -__block_descriptor_tmp.216 -OBJC_METH_VAR_NAME_.217 -OBJC_SELECTOR_REFERENCES_.218 -.str.219 -__block_descriptor_tmp.220 -__block_literal_global.221 -__block_descriptor_tmp.224 -OBJC_METH_VAR_NAME_.225 -OBJC_SELECTOR_REFERENCES_.226 -.str.227 -__block_descriptor_tmp.228 -__block_literal_global.229 -__block_descriptor_tmp.232 -OBJC_METH_VAR_NAME_.233 -OBJC_SELECTOR_REFERENCES_.234 -OBJC_METH_VAR_NAME_.235 -OBJC_SELECTOR_REFERENCES_.236 -.str.237 -__block_descriptor_tmp.238 -__block_literal_global.239 -__block_descriptor_tmp.242 -OBJC_METH_VAR_NAME_.243 -OBJC_SELECTOR_REFERENCES_.244 -.str.245 -_unnamed_cfstring_.246 -OBJC_METH_VAR_NAME_.247 -OBJC_SELECTOR_REFERENCES_.248 -.str.249 -_unnamed_cfstring_.250 -.str.251 -_unnamed_cfstring_.252 -OBJC_METH_VAR_NAME_.253 -OBJC_SELECTOR_REFERENCES_.254 -.str.255 -__block_descriptor_tmp.256 -__block_literal_global.257 -__block_descriptor_tmp.260 -OBJC_METH_VAR_NAME_.261 -OBJC_SELECTOR_REFERENCES_.262 -.str.263 -.str.264 -.str.265 -__block_descriptor_tmp.266 -__block_literal_global.267 -__block_descriptor_tmp.270 -OBJC_METH_VAR_NAME_.271 -OBJC_SELECTOR_REFERENCES_.272 -OBJC_METH_VAR_NAME_.273 -OBJC_SELECTOR_REFERENCES_.274 -OBJC_METH_VAR_NAME_.275 -OBJC_SELECTOR_REFERENCES_.276 -OBJC_METH_VAR_NAME_.277 -OBJC_SELECTOR_REFERENCES_.278 -OBJC_METH_VAR_NAME_.279 -OBJC_SELECTOR_REFERENCES_.280 -.str.281 -_unnamed_cfstring_.282 -OBJC_CLASSLIST_REFERENCES_$_.283 -OBJC_CLASSLIST_REFERENCES_$_.284 -OBJC_CLASSLIST_REFERENCES_$_.285 -.str.286 -__block_descriptor_tmp.287 -__block_literal_global.288 -__block_descriptor_tmp.291 -.str.292 -__block_descriptor_tmp.293 -__block_literal_global.294 -__block_descriptor_tmp.297 -.str.298 -__block_descriptor_tmp.299 -__block_literal_global.300 -__block_descriptor_tmp.303 -.str.304 -__block_descriptor_tmp.305 -__block_literal_global.306 -__block_descriptor_tmp.309 -OBJC_CLASSLIST_REFERENCES_$_.310 -OBJC_METH_VAR_NAME_.311 -OBJC_SELECTOR_REFERENCES_.312 -OBJC_METH_VAR_NAME_.313 -OBJC_SELECTOR_REFERENCES_.314 -__block_descriptor_tmp.317 -OBJC_METH_VAR_NAME_.318 -OBJC_SELECTOR_REFERENCES_.319 -OBJC_METH_VAR_NAME_.320 -OBJC_SELECTOR_REFERENCES_.321 -.str.324 -__block_descriptor_tmp.325 -.str.326 -_unnamed_cfstring_.327 -OBJC_METH_VAR_NAME_.328 -OBJC_SELECTOR_REFERENCES_.329 -OBJC_METH_VAR_NAME_.330 -OBJC_SELECTOR_REFERENCES_.331 -OBJC_METH_VAR_NAME_.332 -OBJC_SELECTOR_REFERENCES_.333 -OBJC_METH_VAR_NAME_.334 -OBJC_SELECTOR_REFERENCES_.335 -OBJC_CLASSLIST_REFERENCES_$_.336 -OBJC_METH_VAR_NAME_.337 -OBJC_SELECTOR_REFERENCES_.338 -OBJC_CLASSLIST_REFERENCES_$_.339 -OBJC_METH_VAR_NAME_.340 -OBJC_SELECTOR_REFERENCES_.341 -OBJC_METH_VAR_NAME_.342 -OBJC_SELECTOR_REFERENCES_.343 -OBJC_CLASSLIST_REFERENCES_$_.344 -OBJC_CLASSLIST_REFERENCES_$_.345 -OBJC_METH_VAR_NAME_.346 -OBJC_SELECTOR_REFERENCES_.347 -.str.348 -_unnamed_cfstring_.349 -.str.350 -_unnamed_cfstring_.351 -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMAccessor.mm -RLMSetValueUnique -RLMWrapSetter<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMAccessor.mm:796:35)> -RLMDynamicCast -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMUtil.hpp -RLMCoerceToNil -RLMGetBoolObject -RLMGetDoubleObject -RLMGetFloatObject -RLMGetIntObject -get_mixed -RLMGetAnyProperty -RLMGetArray -get_link -is_null_link -RLMGetLink -RLMBinaryDataToNSData -get_binary -RLMGetData -RLMDateTimeToNSDate -RLMGetDate -get_string -RLMStringDataToNSString -RLMGetString -get_bool -RLMGetBool -get_double -RLMGetDouble -get_float -RLMGetFloat -get_int -RLMGetLong -accessorCodeForType -RLMAccessorStandaloneSetter -RLMSuperSet -RLMSuperGet -RLMAccessorStandaloneGetter -RLMSetValue -RLMWrapSetter<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMAccessor.mm:531:34)> -RLMMakeSetter *, NSNumber *> -RLMMakeSetter *, NSNumber *> -RLMMakeSetter *, NSNumber *> -RLMMakeSetter *, NSNumber *> -RLMDynamicCast -RLMDynamicCast -RLMDynamicCast -RLMDynamicCast -RLMMakeSetter -get_linklist -RLMMakeSetter -RLMDynamicCast -RLMGetLinkedObjectForValue -RLMMakeSetter -RLMBinaryDataForNSData -RLMMakeSetter -RLMDateTimeForNSDate -RLMMakeSetter -RLMStringDataWithNSString -RLMMakeSetter -RLMMakeSetter -RLMMakeSetter -RLMMakeSetter -RLMMakeSetter -RLMMakeSetter -RLMMakeSetter -RLMMakeSetter -RLMVerifyAttached -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObject_Private.hpp -RLMVerifyInWriteTransaction -RLMMakeSetter -RLMAccessorSetter -RLMAccessorGetter -RLMMarkClassAsGenerated -setterTypeStringForObjcCode -getterTypeStringForObjcCode -RLMIsKindOfClass -RLMCreateAccessorClass -RLMDynamicGet -RLMValidatedGetProperty -RLMDynamicSet -RLMDynamicValidatedSet -RLMStandaloneAccessorClassForObjectClass -RLMAccessorClassForObjectClass -RLMIsGeneratedClass -RLMReplaceSharedSchemaMethod -RLMReplaceClassNameMethod -_ZL11RLMHashDataPKvm -_ZL9RLMSysCtlPijPm -OBJC_CLASSLIST_REFERENCES_$_.1 -OBJC_METH_VAR_NAME_.3 -OBJC_SELECTOR_REFERENCES_.4 -OBJC_METH_VAR_NAME_.5 -OBJC_SELECTOR_REFERENCES_.6 -OBJC_CLASSLIST_REFERENCES_$_.7 -OBJC_METH_VAR_NAME_.15 -OBJC_SELECTOR_REFERENCES_.16 -OBJC_CLASSLIST_REFERENCES_$_.17 -OBJC_METH_VAR_NAME_.18 -OBJC_SELECTOR_REFERENCES_.19 -OBJC_METH_VAR_NAME_.22 -OBJC_SELECTOR_REFERENCES_.23 -OBJC_METH_VAR_NAME_.24 -OBJC_SELECTOR_REFERENCES_.25 -OBJC_CLASSLIST_REFERENCES_$_.32 -OBJC_METH_VAR_NAME_.33 -OBJC_SELECTOR_REFERENCES_.34 -_unnamed_cfstring_.38 -_unnamed_cfstring_.42 -_unnamed_cfstring_.44 -_unnamed_cfstring_.46 -.str.47 -_unnamed_cfstring_.48 -_unnamed_cfstring_.50 -_unnamed_cfstring_.52 -_unnamed_cfstring_.56 -_unnamed_cfstring_.58 -_unnamed_cfstring_.60 -_unnamed_cfstring_.62 -_unnamed_cfstring_.64 -_unnamed_cfstring_.66 -_unnamed_cfstring_.68 -_unnamed_cfstring_.70 -_unnamed_cfstring_.72 -_unnamed_cfstring_.74 -_unnamed_cfstring_.76 -_unnamed_cfstring_.78 -_unnamed_cfstring_.80 -_unnamed_cfstring_.82 -_unnamed_cfstring_.84 -OBJC_METH_VAR_NAME_.85 -OBJC_SELECTOR_REFERENCES_.86 -_unnamed_cfstring_.88 -OBJC_METH_VAR_NAME_.89 -OBJC_SELECTOR_REFERENCES_.90 -_unnamed_cfstring_.92 -.str.93 -_unnamed_cfstring_.94 -_unnamed_cfstring_.96 -OBJC_CLASSLIST_REFERENCES_$_.97 -OBJC_METH_VAR_NAME_.98 -OBJC_SELECTOR_REFERENCES_.99 -.str.100 -OBJC_METH_VAR_NAME_.101 -OBJC_SELECTOR_REFERENCES_.102 -OBJC_METH_VAR_NAME_.103 -OBJC_SELECTOR_REFERENCES_.104 -.str.105 -OBJC_METH_VAR_NAME_.106 -OBJC_SELECTOR_REFERENCES_.107 -RLMOSVersion -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMAnalytics.mm -forward -forward -move -RLMSysCtl -RLMMACAddress -RLMHashData -RLMAnalyticsPayload -RLMSendAnalytics --[RLMArrayHolder .cxx_destruct] --[RLMArrayHolder .cxx_construct] --[RLMArray initWithObjectClassName:] --[RLMArray realm] --[RLMArray firstObject] --[RLMArray lastObject] --[RLMArray addObjects:] --[RLMArray addObject:] --[RLMArray removeLastObject] --[RLMArray objectAtIndexedSubscript:] --[RLMArray setObject:atIndexedSubscript:] --[RLMArray objectAtIndex:] -_ZL22RLMValidateArrayBoundsP8RLMArraymb --[RLMArray count] --[RLMArray isInvalidated] --[RLMArray countByEnumeratingWithState:objects:count:] --[RLMArray addObjectsFromArray:] -_ZL29RLMValidateMatchingObjectTypeP8RLMArrayP9RLMObject -_ZL11changeArrayP8RLMArray16NSKeyValueChange8_NSRangeU13block_pointerFvvE -__32-[RLMArray addObjectsFromArray:]_block_invoke --[RLMArray insertObject:atIndex:] -_ZL11changeArrayP8RLMArray16NSKeyValueChangemU13block_pointerFvvE -__33-[RLMArray insertObject:atIndex:]_block_invoke -__copy_helper_block_.27 -__destroy_helper_block_.28 --[RLMArray insertObjects:atIndexes:] -_ZL11changeArrayP8RLMArray16NSKeyValueChangeP10NSIndexSetU13block_pointerFvvE -__36-[RLMArray insertObjects:atIndexes:]_block_invoke -__copy_helper_block_.34 -__destroy_helper_block_.35 --[RLMArray removeObjectAtIndex:] -__32-[RLMArray removeObjectAtIndex:]_block_invoke -__copy_helper_block_.37 -__destroy_helper_block_.38 --[RLMArray removeObjectsAtIndexes:] -__35-[RLMArray removeObjectsAtIndexes:]_block_invoke -__copy_helper_block_.42 -__destroy_helper_block_.43 --[RLMArray replaceObjectAtIndex:withObject:] -__44-[RLMArray replaceObjectAtIndex:withObject:]_block_invoke -__copy_helper_block_.45 -__destroy_helper_block_.46 --[RLMArray moveObjectAtIndex:toIndex:] -__38-[RLMArray moveObjectAtIndex:toIndex:]_block_invoke -__copy_helper_block_.50 -__destroy_helper_block_.51 --[RLMArray exchangeObjectAtIndex:withObjectAtIndex:] -__52-[RLMArray exchangeObjectAtIndex:withObjectAtIndex:]_block_invoke -__copy_helper_block_.55 -__destroy_helper_block_.56 --[RLMArray indexOfObject:] --[RLMArray removeAllObjects] -__28-[RLMArray removeAllObjects]_block_invoke -__copy_helper_block_.60 -__destroy_helper_block_.61 --[RLMArray objectsWhere:] --[RLMArray objectsWhere:args:] --[RLMArray valueForKeyPath:] --[RLMArray valueForKey:] --[RLMArray setValue:forKey:] --[RLMArray indexOfObjectWithPredicate:] -__39-[RLMArray indexOfObjectWithPredicate:]_block_invoke -__copy_helper_block_.94 -__destroy_helper_block_.95 --[RLMArray objectsAtIndexes:] --[RLMArray addObserver:forKeyPath:options:context:] --[RLMArray objectsWithPredicate:] --[RLMArray sortedResultsUsingProperty:ascending:] --[RLMArray sortedResultsUsingDescriptors:] --[RLMArray addNotificationBlock:] --[RLMArray indexOfObjectWhere:] --[RLMArray indexOfObjectWhere:args:] --[RLMArray description] --[RLMArray descriptionWithMaxDepth:] --[RLMArray objectClassName] --[RLMArray .cxx_destruct] -+[RLMSortDescriptor sortDescriptorWithProperty:ascending:] --[RLMSortDescriptor reversedSortDescriptor] --[RLMSortDescriptor property] --[RLMSortDescriptor setProperty:] --[RLMSortDescriptor ascending] --[RLMSortDescriptor setAscending:] --[RLMSortDescriptor .cxx_destruct] -l_OBJC_METACLASS_RO_$_RLMArrayHolder -OBJC_METH_VAR_TYPE_ -OBJC_METH_VAR_NAME_.1 -OBJC_METH_VAR_TYPE_.2 -l_OBJC_$_INSTANCE_METHODS_RLMArrayHolder -OBJC_METH_VAR_TYPE_.4 -l_OBJC_$_INSTANCE_VARIABLES_RLMArrayHolder -l_OBJC_CLASS_RO_$_RLMArrayHolder -OBJC_CLASSLIST_SUP_REFS_$_ -OBJC_METH_VAR_NAME_.6 -OBJC_SELECTOR_REFERENCES_.7 -OBJC_METH_VAR_NAME_.10 -OBJC_SELECTOR_REFERENCES_.11 -OBJC_METH_VAR_NAME_.12 -OBJC_SELECTOR_REFERENCES_.13 -OBJC_METH_VAR_NAME_.14 -OBJC_SELECTOR_REFERENCES_.15 -OBJC_CLASSLIST_REFERENCES_$_.22 -OBJC_METH_VAR_NAME_.23 -OBJC_SELECTOR_REFERENCES_.24 -OBJC_METH_VAR_NAME_.25 -OBJC_SELECTOR_REFERENCES_.26 -__block_descriptor_tmp.29 -__block_descriptor_tmp.36 -__block_descriptor_tmp.39 -OBJC_METH_VAR_NAME_.40 -OBJC_SELECTOR_REFERENCES_.41 -__block_descriptor_tmp.44 -__block_descriptor_tmp.47 -OBJC_METH_VAR_NAME_.48 -OBJC_SELECTOR_REFERENCES_.49 -__block_descriptor_tmp.52 -OBJC_METH_VAR_NAME_.53 -OBJC_SELECTOR_REFERENCES_.54 -__block_descriptor_tmp.57 -OBJC_METH_VAR_NAME_.58 -OBJC_SELECTOR_REFERENCES_.59 -__block_descriptor_tmp.62 -OBJC_METH_VAR_NAME_.63 -OBJC_SELECTOR_REFERENCES_.64 -OBJC_CLASSLIST_REFERENCES_$_.65 -OBJC_METH_VAR_NAME_.75 -OBJC_SELECTOR_REFERENCES_.76 -OBJC_METH_VAR_NAME_.77 -OBJC_SELECTOR_REFERENCES_.78 -OBJC_METH_VAR_NAME_.79 -OBJC_SELECTOR_REFERENCES_.80 -OBJC_METH_VAR_NAME_.83 -OBJC_SELECTOR_REFERENCES_.84 -OBJC_CLASSLIST_REFERENCES_$_.85 -OBJC_METH_VAR_NAME_.86 -OBJC_SELECTOR_REFERENCES_.87 -OBJC_METH_VAR_NAME_.88 -OBJC_SELECTOR_REFERENCES_.89 -OBJC_METH_VAR_NAME_.90 -OBJC_SELECTOR_REFERENCES_.91 -OBJC_METH_VAR_NAME_.92 -OBJC_SELECTOR_REFERENCES_.93 -.str.96 -OBJC_METH_VAR_NAME_.100 -OBJC_SELECTOR_REFERENCES_.101 -OBJC_METH_VAR_NAME_.102 -OBJC_SELECTOR_REFERENCES_.103 -_unnamed_cfstring_.105 -OBJC_CLASSLIST_REFERENCES_$_.106 -OBJC_METH_VAR_NAME_.107 -OBJC_SELECTOR_REFERENCES_.108 -OBJC_CLASSLIST_REFERENCES_$_.109 -OBJC_METH_VAR_NAME_.110 -OBJC_SELECTOR_REFERENCES_.111 -OBJC_METH_VAR_NAME_.112 -OBJC_SELECTOR_REFERENCES_.113 -OBJC_METH_VAR_NAME_.114 -OBJC_SELECTOR_REFERENCES_.115 -OBJC_METH_VAR_NAME_.116 -OBJC_SELECTOR_REFERENCES_.117 -OBJC_METH_VAR_NAME_.118 -OBJC_SELECTOR_REFERENCES_.119 -.str.120 -_unnamed_cfstring_.121 -OBJC_CLASSLIST_REFERENCES_$_.122 -.str.123 -_unnamed_cfstring_.124 -OBJC_METH_VAR_NAME_.125 -OBJC_SELECTOR_REFERENCES_.126 -OBJC_METH_VAR_NAME_.127 -OBJC_SELECTOR_REFERENCES_.128 -OBJC_METH_VAR_NAME_.129 -OBJC_SELECTOR_REFERENCES_.130 -.str.131 -_unnamed_cfstring_.132 -.str.133 -_unnamed_cfstring_.134 -OBJC_METH_VAR_NAME_.135 -OBJC_SELECTOR_REFERENCES_.136 -.str.137 -_unnamed_cfstring_.138 -OBJC_METH_VAR_NAME_.139 -OBJC_SELECTOR_REFERENCES_.140 -OBJC_METH_VAR_NAME_.141 -OBJC_SELECTOR_REFERENCES_.142 -OBJC_METH_VAR_NAME_.143 -OBJC_SELECTOR_REFERENCES_.144 -.str.145 -_unnamed_cfstring_.146 -.str.147 -_unnamed_cfstring_.148 -OBJC_CLASSLIST_REFERENCES_$_.149 -OBJC_METH_VAR_NAME_.150 -OBJC_SELECTOR_REFERENCES_.151 -OBJC_CLASS_NAME_.152 -OBJC_METH_VAR_TYPE_.153 -OBJC_METH_VAR_NAME_.154 -OBJC_METH_VAR_NAME_.155 -OBJC_METH_VAR_NAME_.156 -OBJC_METH_VAR_TYPE_.157 -OBJC_METH_VAR_TYPE_.158 -OBJC_METH_VAR_NAME_.159 -OBJC_METH_VAR_TYPE_.160 -OBJC_METH_VAR_TYPE_.161 -OBJC_METH_VAR_TYPE_.162 -OBJC_METH_VAR_TYPE_.163 -OBJC_METH_VAR_NAME_.164 -OBJC_METH_VAR_TYPE_.165 -OBJC_METH_VAR_TYPE_.166 -OBJC_METH_VAR_TYPE_.167 -OBJC_METH_VAR_TYPE_.168 -OBJC_METH_VAR_TYPE_.169 -OBJC_METH_VAR_NAME_.170 -OBJC_METH_VAR_TYPE_.171 -OBJC_METH_VAR_TYPE_.172 -OBJC_METH_VAR_TYPE_.173 -OBJC_METH_VAR_TYPE_.174 -OBJC_METH_VAR_TYPE_.175 -OBJC_METH_VAR_TYPE_.176 -OBJC_METH_VAR_NAME_.177 -OBJC_METH_VAR_TYPE_.178 -OBJC_METH_VAR_TYPE_.179 -OBJC_METH_VAR_TYPE_.180 -OBJC_METH_VAR_NAME_.181 -OBJC_METH_VAR_TYPE_.182 -OBJC_METH_VAR_NAME_.183 -OBJC_METH_VAR_TYPE_.184 -OBJC_CLASS_NAME_.185 -OBJC_METH_VAR_TYPE_.186 -OBJC_CLASS_NAME_.187 -l_OBJC_$_PROTOCOL_INSTANCE_METHODS_NSFastEnumeration -l_OBJC_$_PROTOCOL_METHOD_TYPES_NSFastEnumeration -l_OBJC_PROTOCOL_$_NSFastEnumeration -l_OBJC_LABEL_PROTOCOL_$_NSFastEnumeration -l_OBJC_$_PROTOCOL_REFS_RLMCollection -l_OBJC_$_PROTOCOL_INSTANCE_METHODS_RLMCollection -OBJC_PROP_NAME_ATTR_ -OBJC_PROP_NAME_ATTR_.188 -OBJC_PROP_NAME_ATTR_.189 -OBJC_PROP_NAME_ATTR_.190 -OBJC_PROP_NAME_ATTR_.191 -OBJC_PROP_NAME_ATTR_.192 -l_OBJC_$_PROP_LIST_RLMCollection -l_OBJC_$_PROTOCOL_METHOD_TYPES_RLMCollection -l_OBJC_PROTOCOL_$_RLMCollection -l_OBJC_LABEL_PROTOCOL_$_RLMCollection -l_OBJC_CLASS_PROTOCOLS_$_RLMArray -l_OBJC_METACLASS_RO_$_RLMArray -OBJC_CLASS_NAME_.193 -OBJC_METH_VAR_NAME_.194 -OBJC_METH_VAR_NAME_.195 -OBJC_METH_VAR_TYPE_.196 -OBJC_METH_VAR_NAME_.197 -OBJC_METH_VAR_NAME_.198 -OBJC_METH_VAR_TYPE_.199 -OBJC_METH_VAR_NAME_.200 -OBJC_METH_VAR_TYPE_.201 -OBJC_METH_VAR_NAME_.202 -OBJC_METH_VAR_TYPE_.203 -OBJC_METH_VAR_TYPE_.204 -OBJC_METH_VAR_NAME_.205 -OBJC_METH_VAR_TYPE_.206 -OBJC_METH_VAR_TYPE_.207 -l_OBJC_$_INSTANCE_METHODS_RLMArray -OBJC_METH_VAR_NAME_.208 -OBJC_METH_VAR_TYPE_.209 -OBJC_METH_VAR_NAME_.210 -OBJC_METH_VAR_NAME_.211 -OBJC_METH_VAR_TYPE_.212 -OBJC_METH_VAR_NAME_.213 -OBJC_METH_VAR_TYPE_.214 -l_OBJC_$_INSTANCE_VARIABLES_RLMArray -OBJC_CLASS_NAME_.215 -OBJC_PROP_NAME_ATTR_.216 -OBJC_PROP_NAME_ATTR_.217 -OBJC_PROP_NAME_ATTR_.218 -l_OBJC_$_PROP_LIST_RLMArray -l_OBJC_CLASS_RO_$_RLMArray -OBJC_IVAR_$_RLMSortDescriptor._property -OBJC_IVAR_$_RLMSortDescriptor._ascending -OBJC_METH_VAR_NAME_.219 -OBJC_SELECTOR_REFERENCES_.220 -OBJC_CLASS_NAME_.221 -l_OBJC_$_CLASS_METHODS_RLMSortDescriptor -l_OBJC_METACLASS_RO_$_RLMSortDescriptor -OBJC_CLASS_NAME_.222 -OBJC_METH_VAR_NAME_.223 -OBJC_METH_VAR_NAME_.224 -OBJC_METH_VAR_NAME_.226 -OBJC_METH_VAR_NAME_.227 -OBJC_METH_VAR_TYPE_.228 -l_OBJC_$_INSTANCE_METHODS_RLMSortDescriptor -OBJC_METH_VAR_NAME_.229 -OBJC_METH_VAR_TYPE_.230 -OBJC_METH_VAR_NAME_.231 -l_OBJC_$_INSTANCE_VARIABLES_RLMSortDescriptor -OBJC_PROP_NAME_ATTR_.232 -OBJC_PROP_NAME_ATTR_.233 -OBJC_PROP_NAME_ATTR_.234 -OBJC_PROP_NAME_ATTR_.235 -l_OBJC_$_PROP_LIST_RLMSortDescriptor -l_OBJC_CLASS_RO_$_RLMSortDescriptor -.str.236 -_unnamed_cfstring_.237 -.str.238 -_unnamed_cfstring_.239 -OBJC_METH_VAR_NAME_.240 -OBJC_SELECTOR_REFERENCES_.241 -.str.242 -_unnamed_cfstring_.243 -OBJC_METH_VAR_NAME_.244 -OBJC_SELECTOR_REFERENCES_.245 -OBJC_METH_VAR_NAME_.246 -OBJC_SELECTOR_REFERENCES_.247 -OBJC_CLASSLIST_REFERENCES_$_.248 -OBJC_METH_VAR_NAME_.249 -OBJC_SELECTOR_REFERENCES_.250 -OBJC_METH_VAR_NAME_.251 -OBJC_SELECTOR_REFERENCES_.252 -OBJC_CLASSLIST_REFERENCES_$_.253 -OBJC_METH_VAR_NAME_.254 -OBJC_SELECTOR_REFERENCES_.255 -OBJC_METH_VAR_NAME_.256 -OBJC_SELECTOR_REFERENCES_.257 -OBJC_LABEL_CLASS_$ -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm:265:8)> -forward > -reset<__strong id *> -unique_ptr<__strong id *> -make_unique -operator() -~ -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm:71:30)> -changeArray -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm:63:30)> -NSMakeRange -/Applications/Xcode-7.3.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS9.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm:67:30)> -RLMValidateMatchingObjectType -RLMValidateArrayBounds -forward<__strong id *> --[RLMSortDescriptor .cxx_destruct] --[RLMSortDescriptor setAscending:] --[RLMSortDescriptor ascending] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.h --[RLMSortDescriptor setProperty:] --[RLMSortDescriptor property] --[RLMSortDescriptor reversedSortDescriptor] -+[RLMSortDescriptor sortDescriptorWithProperty:ascending:] --[RLMArray .cxx_destruct] --[RLMArray objectClassName] --[RLMArray descriptionWithMaxDepth:] --[RLMArray description] --[RLMArray indexOfObjectWhere:args:] --[RLMArray indexOfObjectWhere:] --[RLMArray addNotificationBlock:] --[RLMArray sortedResultsUsingDescriptors:] --[RLMArray sortedResultsUsingProperty:ascending:] --[RLMArray objectsWithPredicate:] --[RLMArray addObserver:forKeyPath:options:context:] --[RLMArray objectsAtIndexes:] --[RLMArray indexOfObjectWithPredicate:] --[RLMArray setValue:forKey:] --[RLMArray valueForKey:] --[RLMArray valueForKeyPath:] --[RLMArray objectsWhere:args:] --[RLMArray objectsWhere:] --[RLMArray removeAllObjects] --[RLMArray indexOfObject:] --[RLMArray exchangeObjectAtIndex:withObjectAtIndex:] --[RLMArray moveObjectAtIndex:toIndex:] --[RLMArray replaceObjectAtIndex:withObject:] --[RLMArray removeObjectsAtIndexes:] --[RLMArray removeObjectAtIndex:] --[RLMArray insertObjects:atIndexes:] --[RLMArray insertObject:atIndex:] --[RLMArray addObjectsFromArray:] --[RLMArray countByEnumeratingWithState:objects:count:] --[RLMArray isInvalidated] --[RLMArray count] --[RLMArray objectAtIndex:] --[RLMArray setObject:atIndexedSubscript:] --[RLMArray objectAtIndexedSubscript:] --[RLMArray removeLastObject] --[RLMArray addObject:] --[RLMArray addObjects:] --[RLMArray lastObject] --[RLMArray firstObject] --[RLMArray realm] --[RLMArray initWithObjectClassName:] --[RLMArrayHolder .cxx_construct] --[RLMArrayHolder .cxx_destruct] -+[RLMArrayLinkView arrayWithObjectClassName:view:realm:key:parentSchema:] -_ZN5realm4util8bind_ptrINS_8LinkViewEEaSERKS3_ --[RLMArrayLinkView realm] --[RLMArrayLinkView count] --[RLMArrayLinkView isInvalidated] --[RLMArrayLinkView isEqual:] --[RLMArrayLinkView hash] --[RLMArrayLinkView countByEnumeratingWithState:objects:count:] --[RLMArrayLinkView objectAtIndex:] -_ZL22RLMValidateArrayBoundsP16RLMArrayLinkViewmb --[RLMArrayLinkView addObject:] -_ZL15RLMInsertObjectP16RLMArrayLinkViewP9RLMObjectm --[RLMArrayLinkView insertObject:atIndex:] --[RLMArrayLinkView insertObjects:atIndexes:] -_ZL11changeArrayP16RLMArrayLinkView16NSKeyValueChangeP10NSIndexSetU13block_pointerFvvE -__44-[RLMArrayLinkView insertObjects:atIndexes:]_block_invoke --[RLMArrayLinkView removeObjectAtIndex:] -_ZL11changeArrayP16RLMArrayLinkView16NSKeyValueChangemU13block_pointerFvvE -__40-[RLMArrayLinkView removeObjectAtIndex:]_block_invoke -__copy_helper_block_.31 -__destroy_helper_block_.32 --[RLMArrayLinkView removeObjectsAtIndexes:] -__43-[RLMArrayLinkView removeObjectsAtIndexes:]_block_invoke -__copy_helper_block_.40 -__destroy_helper_block_.41 --[RLMArrayLinkView addObjectsFromArray:] -_ZL11changeArrayP16RLMArrayLinkView16NSKeyValueChange8_NSRangeU13block_pointerFvvE -__40-[RLMArrayLinkView addObjectsFromArray:]_block_invoke -__copy_helper_block_.43 -__destroy_helper_block_.44 --[RLMArrayLinkView removeAllObjects] -__36-[RLMArrayLinkView removeAllObjects]_block_invoke -__copy_helper_block_.46 -__destroy_helper_block_.47 --[RLMArrayLinkView replaceObjectAtIndex:withObject:] -__52-[RLMArrayLinkView replaceObjectAtIndex:withObject:]_block_invoke -__copy_helper_block_.53 -__destroy_helper_block_.54 --[RLMArrayLinkView moveObjectAtIndex:toIndex:] -__46-[RLMArrayLinkView moveObjectAtIndex:toIndex:]_block_invoke -__copy_helper_block_.56 -__destroy_helper_block_.57 --[RLMArrayLinkView exchangeObjectAtIndex:withObjectAtIndex:] -__60-[RLMArrayLinkView exchangeObjectAtIndex:withObjectAtIndex:]_block_invoke -__copy_helper_block_.59 -__destroy_helper_block_.60 --[RLMArrayLinkView indexOfObject:] --[RLMArrayLinkView valueForKeyPath:] --[RLMArrayLinkView valueForKey:] --[RLMArrayLinkView setValue:forKey:] --[RLMArrayLinkView deleteObjectsFromRealm] -__42-[RLMArrayLinkView deleteObjectsFromRealm]_block_invoke -__copy_helper_block_.80 -__destroy_helper_block_.81 --[RLMArrayLinkView sortedResultsUsingDescriptors:] --[RLMArrayLinkView objectsWithPredicate:] --[RLMArrayLinkView indexOfObjectWithPredicate:] --[RLMArrayLinkView objectsAtIndexes:] --[RLMArrayLinkView addObserver:forKeyPath:options:context:] --[RLMArrayLinkView indexInSource:] --[RLMArrayLinkView tableView] --[RLMArrayLinkView addNotificationBlock:] -__41-[RLMArrayLinkView addNotificationBlock:]_block_invoke -__copy_helper_block_.87 -__destroy_helper_block_.88 -__41-[RLMArrayLinkView addNotificationBlock:]_block_invoke.91 -__copy_helper_block_.92 -__destroy_helper_block_.93 --[RLMArrayLinkView objectSchema] --[RLMArrayLinkView setObjectSchema:] --[RLMArrayLinkView .cxx_destruct] --[RLMArrayLinkView .cxx_construct] -___ZL15RLMInsertObjectP16RLMArrayLinkViewP9RLMObjectm_block_invoke -_ZN5realm7ResultsC2EOS0_ -OBJC_SELECTOR_REFERENCES_.2 -OBJC_IVAR_$_RLMArrayLinkView._objectSchema -OBJC_METH_VAR_NAME_.7 -OBJC_SELECTOR_REFERENCES_.8 -OBJC_METH_VAR_NAME_.9 -OBJC_SELECTOR_REFERENCES_.10 -OBJC_CLASSLIST_REFERENCES_$_.11 -_unnamed_cfstring_.27 -__block_descriptor_tmp.33 -OBJC_METH_VAR_NAME_.34 -OBJC_SELECTOR_REFERENCES_.35 -_unnamed_cfstring_.37 -OBJC_METH_VAR_NAME_.38 -OBJC_SELECTOR_REFERENCES_.39 -__block_descriptor_tmp.42 -__block_descriptor_tmp.45 -__block_descriptor_tmp.48 -__block_descriptor_tmp.55 -__block_descriptor_tmp.58 -__block_descriptor_tmp.61 -_unnamed_cfstring_.63 -_unnamed_cfstring_.67 -_unnamed_cfstring_.69 -OBJC_CLASSLIST_REFERENCES_$_.72 -OBJC_METH_VAR_NAME_.73 -OBJC_SELECTOR_REFERENCES_.74 -OBJC_CLASSLIST_REFERENCES_$_.77 -OBJC_METH_VAR_NAME_.78 -OBJC_SELECTOR_REFERENCES_.79 -__block_descriptor_tmp.82 -__block_descriptor_tmp.90 -__block_descriptor_tmp.94 -OBJC_METH_VAR_NAME_.95 -OBJC_SELECTOR_REFERENCES_.96 -OBJC_METH_VAR_NAME_.97 -l_OBJC_$_CLASS_METHODS_RLMArrayLinkView -OBJC_METH_VAR_TYPE_.99 -OBJC_METH_VAR_TYPE_.101 -OBJC_METH_VAR_TYPE_.102 -OBJC_METH_VAR_TYPE_.103 -OBJC_METH_VAR_NAME_.104 -OBJC_METH_VAR_TYPE_.105 -OBJC_METH_VAR_TYPE_.106 -l_OBJC_$_PROTOCOL_INSTANCE_METHODS_RLMFastEnumerable -OBJC_PROP_NAME_ATTR_.108 -OBJC_PROP_NAME_ATTR_.109 -OBJC_PROP_NAME_ATTR_.110 -OBJC_PROP_NAME_ATTR_.111 -OBJC_PROP_NAME_ATTR_.112 -l_OBJC_$_PROP_LIST_RLMFastEnumerable -l_OBJC_$_PROTOCOL_METHOD_TYPES_RLMFastEnumerable -l_OBJC_PROTOCOL_$_RLMFastEnumerable -l_OBJC_LABEL_PROTOCOL_$_RLMFastEnumerable -l_OBJC_CLASS_PROTOCOLS_$_RLMArrayLinkView -l_OBJC_METACLASS_RO_$_RLMArrayLinkView -OBJC_METH_VAR_TYPE_.115 -OBJC_METH_VAR_TYPE_.117 -OBJC_METH_VAR_TYPE_.119 -OBJC_METH_VAR_NAME_.120 -OBJC_METH_VAR_TYPE_.121 -OBJC_METH_VAR_TYPE_.122 -OBJC_METH_VAR_NAME_.123 -OBJC_METH_VAR_TYPE_.124 -OBJC_METH_VAR_TYPE_.126 -OBJC_METH_VAR_TYPE_.128 -OBJC_METH_VAR_NAME_.130 -OBJC_METH_VAR_NAME_.131 -OBJC_METH_VAR_TYPE_.132 -OBJC_METH_VAR_NAME_.133 -OBJC_METH_VAR_TYPE_.134 -OBJC_METH_VAR_TYPE_.136 -OBJC_METH_VAR_NAME_.137 -OBJC_METH_VAR_NAME_.138 -OBJC_METH_VAR_TYPE_.139 -OBJC_METH_VAR_TYPE_.140 -OBJC_METH_VAR_NAME_.142 -OBJC_METH_VAR_NAME_.144 -OBJC_METH_VAR_NAME_.145 -OBJC_METH_VAR_NAME_.146 -OBJC_METH_VAR_NAME_.147 -OBJC_METH_VAR_TYPE_.148 -OBJC_METH_VAR_TYPE_.149 -OBJC_METH_VAR_NAME_.151 -OBJC_METH_VAR_NAME_.152 -l_OBJC_$_INSTANCE_METHODS_RLMArrayLinkView -OBJC_METH_VAR_NAME_.153 -OBJC_METH_VAR_TYPE_.154 -OBJC_METH_VAR_TYPE_.156 -OBJC_METH_VAR_NAME_.157 -OBJC_METH_VAR_NAME_.161 -l_OBJC_$_INSTANCE_VARIABLES_RLMArrayLinkView -OBJC_PROP_NAME_ATTR_.162 -l_OBJC_$_PROP_LIST_RLMArrayLinkView -l_OBJC_CLASS_RO_$_RLMArrayLinkView -.str.163 -.str.165 -_unnamed_cfstring_.166 -OBJC_METH_VAR_NAME_.167 -OBJC_SELECTOR_REFERENCES_.168 -.str.169 -_unnamed_cfstring_.170 -.str.171 -.str.172 -.str.173 -.str.174 -.str.175 -.str.177 -.str.178 -OBJC_METH_VAR_NAME_.182 -OBJC_SELECTOR_REFERENCES_.183 -.str.184 -_unnamed_cfstring_.185 -OBJC_CLASSLIST_REFERENCES_$_.186 -OBJC_METH_VAR_NAME_.187 -OBJC_SELECTOR_REFERENCES_.188 -OBJC_METH_VAR_NAME_.189 -OBJC_SELECTOR_REFERENCES_.190 -.str.191 -_unnamed_cfstring_.192 -_unnamed_cfstring_.194 -.str.195 -.str.197 -.str.198 -.str.200 -.str.201 -.str.202 -.str.203 -.str.204 -.str.206 -.str.207 -.str.208 -.str.209 -.str.210 -.str.212 -.str.213 -.str.214 -.str.215 -.str.216 -.str.217 -.str.218 -.str.221 -.str.222 -OBJC_SELECTOR_REFERENCES_.224 -OBJC_CLASSLIST_REFERENCES_$_.225 -OBJC_SELECTOR_REFERENCES_.227 -OBJC_METH_VAR_NAME_.228 -OBJC_SELECTOR_REFERENCES_.229 -forward > -move -forward -forward -make_unique -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm:333:8)> -RLMDynamicCast -move -swap -forward -get_version_counter -get_origin_table -move -RLMConvertNotFound -get_target_table -RLMValidateObjectClass -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm:131:30)> -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm:127:30)> -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm:135:30)> -RLMLinkViewArrayValidateInWriteTransaction -RLMInsertObject -core/include/realm/column_linkbase.hpp -RLMLinkViewArrayValidateAttached -get_origin_row_index --[RLMArrayLinkView .cxx_construct] --[RLMArrayLinkView .cxx_destruct] --[RLMArrayLinkView setObjectSchema:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray_Private.hpp --[RLMArrayLinkView objectSchema] --[RLMArrayLinkView addNotificationBlock:] --[RLMArrayLinkView tableView] --[RLMArrayLinkView indexInSource:] --[RLMArrayLinkView addObserver:forKeyPath:options:context:] --[RLMArrayLinkView objectsAtIndexes:] --[RLMArrayLinkView indexOfObjectWithPredicate:] --[RLMArrayLinkView objectsWithPredicate:] --[RLMArrayLinkView sortedResultsUsingDescriptors:] --[RLMArrayLinkView deleteObjectsFromRealm] --[RLMArrayLinkView setValue:forKey:] --[RLMArrayLinkView valueForKey:] --[RLMArrayLinkView valueForKeyPath:] --[RLMArrayLinkView indexOfObject:] --[RLMArrayLinkView exchangeObjectAtIndex:withObjectAtIndex:] --[RLMArrayLinkView moveObjectAtIndex:toIndex:] --[RLMArrayLinkView replaceObjectAtIndex:withObject:] --[RLMArrayLinkView removeAllObjects] --[RLMArrayLinkView addObjectsFromArray:] --[RLMArrayLinkView removeObjectsAtIndexes:] --[RLMArrayLinkView removeObjectAtIndex:] --[RLMArrayLinkView insertObjects:atIndexes:] --[RLMArrayLinkView insertObject:atIndex:] --[RLMArrayLinkView addObject:] --[RLMArrayLinkView objectAtIndex:] --[RLMArrayLinkView countByEnumeratingWithState:objects:count:] --[RLMArrayLinkView hash] --[RLMArrayLinkView isEqual:] --[RLMArrayLinkView isInvalidated] --[RLMArrayLinkView count] --[RLMArrayLinkView realm] -RLMEnsureArrayObservationInfo -RLMValidateArrayObservationKey -+[RLMArrayLinkView arrayWithObjectClassName:view:realm:key:parentSchema:] -_unnamed_cfstring_.2 -_unnamed_cfstring_.4 -_unnamed_cfstring_.6 -_unnamed_cfstring_.8 -_unnamed_cfstring_.10 -_unnamed_cfstring_.12 -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMConstants.m --[RLMListBase initWithArray:] --[RLMListBase valueForKey:] --[RLMListBase countByEnumeratingWithState:objects:count:] --[RLMListBase objectsAtIndexes:] --[RLMListBase addObserver:forKeyPath:options:context:] --[RLMListBase _rlmArray] --[RLMListBase set_rlmArray:] --[RLMListBase .cxx_destruct] --[RLMListBase .cxx_construct] -OBJC_IVAR_$_RLMListBase.__rlmArray -OBJC_IVAR_$_RLMListBase._observationInfo -OBJC_CLASS_NAME_.9 -l_OBJC_CLASS_PROTOCOLS_$_RLMListBase -l_OBJC_METACLASS_RO_$_RLMListBase -OBJC_CLASS_NAME_.10 -OBJC_METH_VAR_TYPE_.12 -OBJC_METH_VAR_TYPE_.13 -OBJC_METH_VAR_TYPE_.15 -OBJC_METH_VAR_TYPE_.17 -OBJC_METH_VAR_NAME_.19 -OBJC_METH_VAR_TYPE_.20 -l_OBJC_$_INSTANCE_METHODS_RLMListBase -OBJC_METH_VAR_NAME_.21 -OBJC_METH_VAR_TYPE_.22 -OBJC_METH_VAR_TYPE_.24 -l_OBJC_$_INSTANCE_VARIABLES_RLMListBase -OBJC_PROP_NAME_ATTR_.25 -l_OBJC_$_PROP_LIST_RLMListBase -l_OBJC_CLASS_RO_$_RLMListBase --[RLMListBase .cxx_construct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMListBase.mm --[RLMListBase .cxx_destruct] --[RLMListBase set_rlmArray:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMListBase.h --[RLMListBase _rlmArray] --[RLMListBase addObserver:forKeyPath:options:context:] --[RLMListBase objectsAtIndexes:] --[RLMListBase countByEnumeratingWithState:objects:count:] --[RLMListBase valueForKey:] --[RLMListBase initWithArray:] --[RLMMigrationRealm readonly] --[RLMMigrationRealm beginWriteTransaction] --[RLMMigration initWithRealm:oldRealm:] --[RLMMigration oldSchema] --[RLMMigration newSchema] --[RLMMigration enumerateObjects:block:] --[RLMMigration execute:] --[RLMMigration createObject:withValue:] --[RLMMigration createObject:withObject:] --[RLMMigration deleteObject:] --[RLMMigration deleteDataForClassName:] --[RLMMigration oldRealm] --[RLMMigration setOldRealm:] --[RLMMigration realm] --[RLMMigration setRealm:] --[RLMMigration .cxx_destruct] -l_OBJC_METACLASS_RO_$_RLMMigrationRealm -l_OBJC_$_INSTANCE_METHODS_RLMMigrationRealm -l_OBJC_CLASS_RO_$_RLMMigrationRealm -OBJC_IVAR_$_RLMMigration._realm -OBJC_IVAR_$_RLMMigration._oldRealm -OBJC_METH_VAR_NAME_.4 -OBJC_SELECTOR_REFERENCES_.5 -OBJC_CLASS_NAME_.36 -l_OBJC_METACLASS_RO_$_RLMMigration -OBJC_CLASS_NAME_.37 -OBJC_METH_VAR_TYPE_.39 -OBJC_METH_VAR_TYPE_.41 -OBJC_METH_VAR_NAME_.42 -OBJC_METH_VAR_TYPE_.44 -OBJC_METH_VAR_TYPE_.46 -OBJC_METH_VAR_TYPE_.48 -OBJC_METH_VAR_TYPE_.50 -OBJC_METH_VAR_NAME_.52 -l_OBJC_$_INSTANCE_METHODS_RLMMigration -OBJC_METH_VAR_NAME_.54 -OBJC_METH_VAR_TYPE_.55 -l_OBJC_$_INSTANCE_VARIABLES_RLMMigration -OBJC_PROP_NAME_ATTR_.57 -OBJC_PROP_NAME_ATTR_.58 -OBJC_PROP_NAME_ATTR_.59 -OBJC_PROP_NAME_ATTR_.60 -OBJC_PROP_NAME_ATTR_.61 -OBJC_PROP_NAME_ATTR_.62 -l_OBJC_$_PROP_LIST_RLMMigration -l_OBJC_CLASS_RO_$_RLMMigration --[RLMMigration .cxx_destruct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMMigration.mm --[RLMMigration setRealm:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMMigration_Private.h --[RLMMigration realm] --[RLMMigration setOldRealm:] --[RLMMigration oldRealm] --[RLMMigration deleteDataForClassName:] --[RLMMigration deleteObject:] --[RLMMigration createObject:withObject:] --[RLMMigration createObject:withValue:] --[RLMMigration execute:] --[RLMMigration enumerateObjects:block:] --[RLMMigration newSchema] --[RLMMigration oldSchema] --[RLMMigration initWithRealm:oldRealm:] --[RLMMigrationRealm beginWriteTransaction] --[RLMMigrationRealm readonly] --[RLMObject init] --[RLMObject initWithValue:] --[RLMObject initWithObject:] -+[RLMObject createInDefaultRealmWithValue:] -+[RLMObject createInDefaultRealmWithObject:] -+[RLMObject createInRealm:withValue:] -+[RLMObject createInRealm:withObject:] -+[RLMObject createOrUpdateInDefaultRealmWithValue:] -+[RLMObject createOrUpdateInDefaultRealmWithObject:] -+[RLMObject createOrUpdateInRealm:withValue:] -+[RLMObject createOrUpdateInRealm:withObject:] --[RLMObject objectForKeyedSubscript:] --[RLMObject setObject:forKeyedSubscript:] -+[RLMObject allObjects] -+[RLMObject allObjectsInRealm:] -+[RLMObject objectsWhere:] -+[RLMObject objectsWhere:args:] -+[RLMObject objectsInRealm:where:] -+[RLMObject objectsInRealm:where:args:] -+[RLMObject objectsWithPredicate:] -+[RLMObject objectsInRealm:withPredicate:] -+[RLMObject objectForPrimaryKey:] -+[RLMObject objectInRealm:forPrimaryKey:] --[RLMObject linkingObjectsOfClass:forProperty:] --[RLMObject isEqualToObject:] -+[RLMObject className] -+[RLMObject indexedProperties] -+[RLMObject defaultPropertyValues] -+[RLMObject primaryKey] -+[RLMObject ignoredProperties] -+[RLMObject requiredProperties] -+[RLMDynamicObject shouldIncludeInDefaultSchema] --[RLMDynamicObject valueForUndefinedKey:] --[RLMDynamicObject setValue:forUndefinedKey:] -OBJC_CLASSLIST_REFERENCES_$_.26 -OBJC_METH_VAR_NAME_.27 -OBJC_SELECTOR_REFERENCES_.28 -OBJC_CLASSLIST_REFERENCES_$_.29 -_unnamed_cfstring_.31 -OBJC_CLASSLIST_REFERENCES_$_.36 -OBJC_CLASSLIST_REFERENCES_$_.45 -OBJC_METH_VAR_NAME_.46 -OBJC_SELECTOR_REFERENCES_.47 -OBJC_CLASSLIST_SUP_REFS_$_.48 -OBJC_METH_VAR_NAME_.57 -OBJC_METH_VAR_TYPE_.58 -OBJC_METH_VAR_NAME_.59 -OBJC_METH_VAR_TYPE_.60 -OBJC_METH_VAR_NAME_.61 -OBJC_METH_VAR_NAME_.65 -OBJC_METH_VAR_NAME_.67 -l_OBJC_$_CLASS_METHODS_RLMObject -l_OBJC_METACLASS_RO_$_RLMObject -OBJC_METH_VAR_NAME_.69 -OBJC_METH_VAR_TYPE_.71 -OBJC_METH_VAR_TYPE_.74 -l_OBJC_$_INSTANCE_METHODS_RLMObject -OBJC_PROP_NAME_ATTR_.75 -OBJC_PROP_NAME_ATTR_.76 -OBJC_PROP_NAME_ATTR_.77 -OBJC_PROP_NAME_ATTR_.78 -OBJC_PROP_NAME_ATTR_.79 -l_OBJC_$_PROP_LIST_RLMObject -l_OBJC_CLASS_RO_$_RLMObject -OBJC_CLASS_NAME_.80 -OBJC_METH_VAR_NAME_.81 -OBJC_METH_VAR_TYPE_.82 -l_OBJC_$_CLASS_METHODS_RLMDynamicObject -l_OBJC_METACLASS_RO_$_RLMDynamicObject -OBJC_METH_VAR_NAME_.84 -l_OBJC_$_INSTANCE_METHODS_RLMDynamicObject -l_OBJC_CLASS_RO_$_RLMDynamicObject --[RLMDynamicObject setValue:forUndefinedKey:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObject.mm --[RLMDynamicObject valueForUndefinedKey:] -+[RLMDynamicObject shouldIncludeInDefaultSchema] -+[RLMObject requiredProperties] -+[RLMObject ignoredProperties] -+[RLMObject primaryKey] -+[RLMObject defaultPropertyValues] -+[RLMObject indexedProperties] -+[RLMObject className] --[RLMObject isEqualToObject:] --[RLMObject linkingObjectsOfClass:forProperty:] -+[RLMObject objectInRealm:forPrimaryKey:] -+[RLMObject objectForPrimaryKey:] -+[RLMObject objectsInRealm:withPredicate:] -+[RLMObject objectsWithPredicate:] -+[RLMObject objectsInRealm:where:args:] -+[RLMObject objectsInRealm:where:] -+[RLMObject objectsWhere:args:] -+[RLMObject objectsWhere:] -+[RLMObject allObjectsInRealm:] -+[RLMObject allObjects] --[RLMObject setObject:forKeyedSubscript:] --[RLMObject objectForKeyedSubscript:] -+[RLMObject createOrUpdateInRealm:withObject:] -+[RLMObject createOrUpdateInRealm:withValue:] -+[RLMObject createOrUpdateInDefaultRealmWithObject:] -+[RLMObject createOrUpdateInDefaultRealmWithValue:] -+[RLMObject createInRealm:withObject:] -+[RLMObject createInRealm:withValue:] -+[RLMObject createInDefaultRealmWithObject:] -+[RLMObject createInDefaultRealmWithValue:] --[RLMObject initWithObject:] --[RLMObject initWithValue:] --[RLMObject init] --[RLMObjectBase init] -_ZL26RLMInitializedObjectSchemaP13RLMObjectBase --[RLMObjectBase initWithValue:schema:] -_ZL29RLMValidatedObjectForPropertyP11objc_objectP11RLMPropertyP9RLMSchema --[RLMObjectBase initWithRealm:schema:] --[RLMObjectBase valueForKey:] --[RLMObjectBase valueForUndefinedKey:] --[RLMObjectBase setValue:forUndefinedKey:] -+[RLMObjectBase className] -+[RLMObjectBase sharedSchema] -+[RLMObjectBase objectUtilClass:] --[RLMObjectBase description] --[RLMObjectBase descriptionWithMaxDepth:] --[RLMObjectBase realm] --[RLMObjectBase objectSchema] --[RLMObjectBase isInvalidated] --[RLMObjectBase isEqual:] --[RLMObjectBase hash] -+[RLMObjectBase shouldIncludeInDefaultSchema] --[RLMObjectBase mutableArrayValueForKey:] --[RLMObjectBase addObserver:forKeyPath:options:context:] --[RLMObjectBase removeObserver:forKeyPath:] --[RLMObjectBase observationInfo] --[RLMObjectBase setObservationInfo:] -+[RLMObjectBase automaticallyNotifiesObserversForKey:] --[RLMObjectBase .cxx_destruct] --[RLMObjectBase .cxx_construct] -+[RLMObjectUtil ignoredPropertiesForClass:] -+[RLMObjectUtil indexedPropertiesForClass:] -+[RLMObjectUtil getGenericListPropertyNames:] -+[RLMObjectUtil initializeListProperty:property:array:] -+[RLMObjectUtil initializeOptionalProperty:property:] -+[RLMObjectUtil getOptionalProperties:] -+[RLMObjectUtil requiredPropertiesForClass:] -_ZN5realm8BasicRowINS_5TableEED2Ev -OBJC_METH_VAR_NAME_.17 -OBJC_SELECTOR_REFERENCES_.18 -OBJC_SELECTOR_REFERENCES_.20 -OBJC_SELECTOR_REFERENCES_.22 -l_OBJC_PROTOCOL_REFERENCE_$_NSFastEnumeration -OBJC_METH_VAR_NAME_.29 -OBJC_SELECTOR_REFERENCES_.30 -OBJC_METH_VAR_NAME_.31 -OBJC_SELECTOR_REFERENCES_.32 -OBJC_CLASSLIST_REFERENCES_$_.43 -OBJC_METH_VAR_NAME_.44 -OBJC_SELECTOR_REFERENCES_.45 -_unnamed_cfstring_.51 -OBJC_SELECTOR_REFERENCES_.53 -_unnamed_cfstring_.55 -OBJC_CLASSLIST_REFERENCES_$_.56 -OBJC_SELECTOR_REFERENCES_.60 -OBJC_SELECTOR_REFERENCES_.62 -OBJC_METH_VAR_NAME_.91 -OBJC_SELECTOR_REFERENCES_.92 -OBJC_SELECTOR_REFERENCES_.98 -OBJC_METH_VAR_NAME_.99 -OBJC_SELECTOR_REFERENCES_.100 -OBJC_CLASSLIST_REFERENCES_$_.101 -OBJC_SELECTOR_REFERENCES_.105 -OBJC_METH_VAR_NAME_.108 -OBJC_SELECTOR_REFERENCES_.109 -_ZZ54+[RLMObjectBase automaticallyNotifiesObserversForKey:]E19accessorClassPrefix -OBJC_CLASSLIST_SUP_REFS_$_.112 -OBJC_METH_VAR_NAME_.113 -OBJC_SELECTOR_REFERENCES_.114 -OBJC_CLASS_NAME_.115 -OBJC_METH_VAR_TYPE_.116 -OBJC_METH_VAR_NAME_.117 -OBJC_METH_VAR_TYPE_.118 -OBJC_METH_VAR_NAME_.119 -OBJC_METH_VAR_TYPE_.120 -l_OBJC_$_CLASS_METHODS_RLMObjectBase -l_OBJC_METACLASS_RO_$_RLMObjectBase -OBJC_METH_VAR_TYPE_.127 -OBJC_METH_VAR_TYPE_.131 -OBJC_METH_VAR_TYPE_.138 -l_OBJC_$_INSTANCE_METHODS_RLMObjectBase -OBJC_METH_VAR_NAME_.140 -OBJC_METH_VAR_TYPE_.141 -OBJC_METH_VAR_TYPE_.143 -OBJC_METH_VAR_TYPE_.145 -OBJC_METH_VAR_TYPE_.147 -l_OBJC_$_INSTANCE_VARIABLES_RLMObjectBase -OBJC_PROP_NAME_ATTR_.148 -l_OBJC_$_PROP_LIST_RLMObjectBase -l_OBJC_CLASS_RO_$_RLMObjectBase -.str.149 -_unnamed_cfstring_.150 -OBJC_SELECTOR_REFERENCES_.152 -.str.153 -_unnamed_cfstring_.154 -OBJC_SELECTOR_REFERENCES_.156 -_unnamed_cfstring_.158 -OBJC_SELECTOR_REFERENCES_.160 -OBJC_SELECTOR_REFERENCES_.162 -_unnamed_cfstring_.164 -OBJC_METH_VAR_NAME_.165 -OBJC_SELECTOR_REFERENCES_.166 -OBJC_CLASSLIST_REFERENCES_$_.169 -OBJC_SELECTOR_REFERENCES_.171 -OBJC_METH_VAR_NAME_.172 -OBJC_SELECTOR_REFERENCES_.173 -OBJC_METH_VAR_NAME_.174 -OBJC_SELECTOR_REFERENCES_.175 -OBJC_METH_VAR_NAME_.176 -OBJC_SELECTOR_REFERENCES_.177 -OBJC_CLASSLIST_REFERENCES_$_.178 -.str.179 -_unnamed_cfstring_.180 -.str.181 -_unnamed_cfstring_.182 -_ZZ18RLMObjectUtilClassE14objectUtilObjc -_ZGVZ18RLMObjectUtilClassE14objectUtilObjc -OBJC_CLASSLIST_REFERENCES_$_.183 -_ZZ18RLMObjectUtilClassE15objectUtilSwift -_ZGVZ18RLMObjectUtilClassE15objectUtilSwift -OBJC_METH_VAR_NAME_.186 -OBJC_SELECTOR_REFERENCES_.187 -OBJC_METH_VAR_NAME_.188 -OBJC_SELECTOR_REFERENCES_.189 -OBJC_METH_VAR_NAME_.190 -OBJC_SELECTOR_REFERENCES_.191 -OBJC_CLASS_NAME_.192 -OBJC_METH_VAR_NAME_.193 -OBJC_METH_VAR_TYPE_.194 -OBJC_METH_VAR_NAME_.196 -OBJC_METH_VAR_TYPE_.198 -OBJC_METH_VAR_NAME_.199 -OBJC_METH_VAR_NAME_.201 -l_OBJC_$_CLASS_METHODS_RLMObjectUtil -l_OBJC_METACLASS_RO_$_RLMObjectUtil -l_OBJC_CLASS_RO_$_RLMObjectUtil -OBJC_SELECTOR_REFERENCES_.203 -OBJC_METH_VAR_NAME_.204 -OBJC_SELECTOR_REFERENCES_.205 -OBJC_METH_VAR_NAME_.206 -OBJC_SELECTOR_REFERENCES_.207 -OBJC_SELECTOR_REFERENCES_.209 -OBJC_SELECTOR_REFERENCES_.210 -OBJC_SELECTOR_REFERENCES_.212 -_unnamed_cfstring_.214 -OBJC_CLASSLIST_REFERENCES_$_.215 -OBJC_CLASSLIST_REFERENCES_$_.216 -OBJC_CLASSLIST_REFERENCES_$_.221 -get_backlink -get_backlink_count -~RowBase -~BasicRow -RowBase -BasicRow -forward -make_unique -RLMDynamicCast -RLMValidatedObjectForProperty -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectBase.mm -RLMInitializedObjectSchema -+[RLMObjectUtil requiredPropertiesForClass:] -+[RLMObjectUtil getOptionalProperties:] -+[RLMObjectUtil initializeOptionalProperty:property:] -+[RLMObjectUtil initializeListProperty:property:array:] -+[RLMObjectUtil getGenericListPropertyNames:] -+[RLMObjectUtil indexedPropertiesForClass:] -+[RLMObjectUtil ignoredPropertiesForClass:] -RLMObjectUtilClass -RLMValidatedValueForProperty -RLMObjectBaseAreEqual -RLMObjectBaseSetObjectForKeyedSubscript -RLMObjectBaseObjectForKeyedSubscript -RLMObjectBaseLinkingObjectsOfClass -RLMObjectBaseObjectSchema -RLMObjectBaseSetObjectSchema -RLMObjectBaseRealm -RLMObjectBaseSetRealm --[RLMObjectBase .cxx_construct] --[RLMObjectBase .cxx_destruct] -+[RLMObjectBase automaticallyNotifiesObserversForKey:] --[RLMObjectBase setObservationInfo:] --[RLMObjectBase observationInfo] --[RLMObjectBase removeObserver:forKeyPath:] --[RLMObjectBase addObserver:forKeyPath:options:context:] --[RLMObjectBase mutableArrayValueForKey:] -+[RLMObjectBase shouldIncludeInDefaultSchema] --[RLMObjectBase hash] --[RLMObjectBase isEqual:] --[RLMObjectBase isInvalidated] --[RLMObjectBase objectSchema] --[RLMObjectBase realm] --[RLMObjectBase descriptionWithMaxDepth:] --[RLMObjectBase description] -+[RLMObjectBase objectUtilClass:] -+[RLMObjectBase sharedSchema] -+[RLMObjectBase className] --[RLMObjectBase setValue:forUndefinedKey:] --[RLMObjectBase valueForUndefinedKey:] --[RLMObjectBase valueForKey:] --[RLMObjectBase initWithRealm:schema:] --[RLMObjectBase initWithValue:schema:] --[RLMObjectBase init] --[RLMObjectSchema initWithClassName:objectClass:properties:] --[RLMObjectSchema objectForKeyedSubscript:] --[RLMObjectSchema setProperties:] --[RLMObjectSchema setPrimaryKeyProperty:] -+[RLMObjectSchema schemaForObjectClass:] -__40+[RLMObjectSchema schemaForObjectClass:]_block_invoke -+[RLMObjectSchema propertiesForClass:isSwift:] -__46+[RLMObjectSchema propertiesForClass:isSwift:]_block_invoke -__copy_helper_block_.136 -__destroy_helper_block_.137 -__46+[RLMObjectSchema propertiesForClass:isSwift:]_block_invoke.150 -__46+[RLMObjectSchema propertiesForClass:isSwift:]_block_invoke_2 -__copy_helper_block_.151 -__destroy_helper_block_.152 -__copy_helper_block_.162 -__destroy_helper_block_.163 --[RLMObjectSchema copyWithZone:] --[RLMObjectSchema shallowCopy] --[RLMObjectSchema isEqualToObjectSchema:] --[RLMObjectSchema description] --[RLMObjectSchema table] --[RLMObjectSchema setTable:] --[RLMObjectSchema objectStoreCopy] -+[RLMObjectSchema objectSchemaForObjectStoreSchema:] --[RLMObjectSchema sortPropertiesByColumn] -__41-[RLMObjectSchema sortPropertiesByColumn]_block_invoke --[RLMObjectSchema propertiesInDeclaredOrder] -__44-[RLMObjectSchema propertiesInDeclaredOrder]_block_invoke --[RLMObjectSchema properties] --[RLMObjectSchema className] --[RLMObjectSchema setClassName:] --[RLMObjectSchema primaryKeyProperty] --[RLMObjectSchema propertiesByName] --[RLMObjectSchema setPropertiesByName:] --[RLMObjectSchema isSwiftClass] --[RLMObjectSchema setIsSwiftClass:] --[RLMObjectSchema objectClass] --[RLMObjectSchema setObjectClass:] --[RLMObjectSchema accessorClass] --[RLMObjectSchema setAccessorClass:] --[RLMObjectSchema standaloneClass] --[RLMObjectSchema setStandaloneClass:] --[RLMObjectSchema realm] --[RLMObjectSchema setRealm:] --[RLMObjectSchema .cxx_destruct] --[RLMObjectSchema .cxx_construct] -OBJC_IVAR_$_RLMObjectSchema._propertiesByName -OBJC_IVAR_$_RLMObjectSchema._properties -OBJC_IVAR_$_RLMObjectSchema._propertiesInDeclaredOrder -OBJC_IVAR_$_RLMObjectSchema._primaryKeyProperty -OBJC_CLASSLIST_REFERENCES_$_.37 -OBJC_CLASSLIST_REFERENCES_$_.42 -OBJC_CLASSLIST_REFERENCES_$_.49 -OBJC_METH_VAR_NAME_.50 -OBJC_SELECTOR_REFERENCES_.51 -OBJC_CLASSLIST_REFERENCES_$_.54 -OBJC_SELECTOR_REFERENCES_.66 -OBJC_SELECTOR_REFERENCES_.68 -OBJC_SELECTOR_REFERENCES_.82 -_unnamed_cfstring_.86 -OBJC_METH_VAR_NAME_.87 -OBJC_SELECTOR_REFERENCES_.88 -_unnamed_cfstring_.90 -OBJC_CLASSLIST_REFERENCES_$_.93 -.str.94 -_unnamed_cfstring_.95 -OBJC_METH_VAR_NAME_.96 -OBJC_SELECTOR_REFERENCES_.97 -_unnamed_cfstring_.99 -.str.102 -_unnamed_cfstring_.103 -OBJC_CLASSLIST_REFERENCES_$_.110 -OBJC_METH_VAR_NAME_.111 -OBJC_SELECTOR_REFERENCES_.112 -OBJC_METH_VAR_NAME_.115 -OBJC_SELECTOR_REFERENCES_.116 -OBJC_SELECTOR_REFERENCES_.118 -OBJC_SELECTOR_REFERENCES_.120 -OBJC_CLASSLIST_REFERENCES_$_.121 -OBJC_METH_VAR_NAME_.122 -OBJC_SELECTOR_REFERENCES_.123 -OBJC_METH_VAR_NAME_.124 -OBJC_SELECTOR_REFERENCES_.125 -OBJC_METH_VAR_NAME_.126 -OBJC_SELECTOR_REFERENCES_.127 -OBJC_METH_VAR_NAME_.128 -OBJC_SELECTOR_REFERENCES_.129 -OBJC_SELECTOR_REFERENCES_.131 -OBJC_METH_VAR_NAME_.132 -OBJC_SELECTOR_REFERENCES_.133 -OBJC_METH_VAR_NAME_.134 -OBJC_SELECTOR_REFERENCES_.135 -.str.138 -__block_descriptor_tmp.139 -OBJC_SELECTOR_REFERENCES_.141 -OBJC_SELECTOR_REFERENCES_.143 -OBJC_SELECTOR_REFERENCES_.145 -OBJC_SELECTOR_REFERENCES_.147 -OBJC_METH_VAR_NAME_.148 -OBJC_SELECTOR_REFERENCES_.149 -__block_descriptor_tmp.153 -OBJC_SELECTOR_REFERENCES_.155 -OBJC_SELECTOR_REFERENCES_.157 -OBJC_METH_VAR_NAME_.158 -OBJC_SELECTOR_REFERENCES_.159 -OBJC_METH_VAR_NAME_.160 -OBJC_SELECTOR_REFERENCES_.161 -__block_descriptor_tmp.165 -OBJC_METH_VAR_NAME_.166 -OBJC_SELECTOR_REFERENCES_.167 -_unnamed_cfstring_.171 -_unnamed_cfstring_.173 -OBJC_IVAR_$_RLMObjectSchema._objectClass -OBJC_IVAR_$_RLMObjectSchema._className -OBJC_IVAR_$_RLMObjectSchema._accessorClass -OBJC_IVAR_$_RLMObjectSchema._standaloneClass -OBJC_IVAR_$_RLMObjectSchema._isSwiftClass -OBJC_METH_VAR_NAME_.179 -OBJC_SELECTOR_REFERENCES_.180 -OBJC_SELECTOR_REFERENCES_.182 -OBJC_METH_VAR_NAME_.184 -OBJC_SELECTOR_REFERENCES_.185 -.str.186 -_unnamed_cfstring_.187 -.str.190 -_unnamed_cfstring_.191 -.str.192 -_unnamed_cfstring_.193 -OBJC_SELECTOR_REFERENCES_.195 -OBJC_SELECTOR_REFERENCES_.197 -_unnamed_cfstring_.199 -OBJC_IVAR_$_RLMObjectSchema._table -OBJC_IVAR_$_RLMObjectSchema._realm -OBJC_SELECTOR_REFERENCES_.201 -OBJC_METH_VAR_NAME_.203 -OBJC_SELECTOR_REFERENCES_.204 -OBJC_SELECTOR_REFERENCES_.206 -_unnamed_cfstring_.208 -OBJC_CLASSLIST_REFERENCES_$_.209 -__block_descriptor_tmp.211 -OBJC_METH_VAR_NAME_.212 -OBJC_SELECTOR_REFERENCES_.213 -OBJC_METH_VAR_NAME_.214 -OBJC_SELECTOR_REFERENCES_.215 -__block_literal_global.217 -OBJC_CLASS_NAME_.218 -OBJC_METH_VAR_TYPE_.220 -OBJC_METH_VAR_NAME_.221 -OBJC_METH_VAR_TYPE_.222 -l_OBJC_$_CLASS_METHODS_RLMObjectSchema -OBJC_METH_VAR_TYPE_.224 -OBJC_CLASS_NAME_.225 -l_OBJC_$_PROTOCOL_INSTANCE_METHODS_NSCopying -l_OBJC_$_PROTOCOL_METHOD_TYPES_NSCopying -l_OBJC_PROTOCOL_$_NSCopying -l_OBJC_LABEL_PROTOCOL_$_NSCopying -l_OBJC_CLASS_PROTOCOLS_$_RLMObjectSchema -l_OBJC_METACLASS_RO_$_RLMObjectSchema -OBJC_CLASS_NAME_.226 -OBJC_METH_VAR_TYPE_.229 -OBJC_METH_VAR_TYPE_.232 -OBJC_METH_VAR_TYPE_.234 -OBJC_METH_VAR_TYPE_.236 -OBJC_METH_VAR_NAME_.237 -OBJC_METH_VAR_TYPE_.238 -OBJC_METH_VAR_NAME_.239 -OBJC_METH_VAR_TYPE_.240 -OBJC_METH_VAR_NAME_.241 -OBJC_METH_VAR_TYPE_.242 -OBJC_METH_VAR_NAME_.245 -OBJC_METH_VAR_NAME_.248 -OBJC_METH_VAR_TYPE_.249 -OBJC_METH_VAR_TYPE_.250 -OBJC_METH_VAR_TYPE_.252 -OBJC_METH_VAR_TYPE_.253 -OBJC_METH_VAR_NAME_.255 -OBJC_METH_VAR_NAME_.257 -l_OBJC_$_INSTANCE_METHODS_RLMObjectSchema -OBJC_METH_VAR_NAME_.258 -OBJC_METH_VAR_TYPE_.259 -OBJC_METH_VAR_NAME_.260 -OBJC_METH_VAR_TYPE_.261 -OBJC_METH_VAR_NAME_.262 -OBJC_METH_VAR_TYPE_.263 -OBJC_METH_VAR_NAME_.264 -OBJC_METH_VAR_TYPE_.265 -OBJC_METH_VAR_NAME_.266 -OBJC_METH_VAR_NAME_.267 -OBJC_METH_VAR_TYPE_.268 -OBJC_METH_VAR_NAME_.269 -OBJC_METH_VAR_TYPE_.270 -OBJC_METH_VAR_TYPE_.272 -OBJC_METH_VAR_TYPE_.274 -OBJC_METH_VAR_NAME_.276 -OBJC_METH_VAR_TYPE_.278 -l_OBJC_$_INSTANCE_VARIABLES_RLMObjectSchema -OBJC_PROP_NAME_ATTR_.279 -OBJC_PROP_NAME_ATTR_.280 -OBJC_PROP_NAME_ATTR_.281 -OBJC_PROP_NAME_ATTR_.282 -OBJC_PROP_NAME_ATTR_.283 -OBJC_PROP_NAME_ATTR_.284 -OBJC_PROP_NAME_ATTR_.285 -OBJC_PROP_NAME_ATTR_.286 -OBJC_PROP_NAME_ATTR_.287 -OBJC_PROP_NAME_ATTR_.288 -OBJC_PROP_NAME_ATTR_.289 -OBJC_PROP_NAME_ATTR_.290 -OBJC_PROP_NAME_ATTR_.291 -OBJC_PROP_NAME_ATTR_.292 -OBJC_PROP_NAME_ATTR_.293 -OBJC_PROP_NAME_ATTR_.294 -OBJC_PROP_NAME_ATTR_.295 -OBJC_PROP_NAME_ATTR_.296 -OBJC_PROP_NAME_ATTR_.297 -OBJC_PROP_NAME_ATTR_.298 -OBJC_PROP_NAME_ATTR_.299 -l_OBJC_$_PROP_LIST_RLMObjectSchema -l_OBJC_CLASS_RO_$_RLMObjectSchema -.str.300 -_unnamed_cfstring_.301 -.str.302 -_unnamed_cfstring_.303 -_unnamed_cfstring_.305 -.str.306 -_unnamed_cfstring_.307 -.str.308 -_unnamed_cfstring_.309 -.str.310 -_unnamed_cfstring_.311 -.str.312 -_unnamed_cfstring_.313 -.str.314 -_unnamed_cfstring_.315 -.str.316 -_unnamed_cfstring_.317 -.str.318 -_unnamed_cfstring_.319 -.str.320 -_unnamed_cfstring_.321 -OBJC_CLASSLIST_REFERENCES_$_.322 -OBJC_METH_VAR_NAME_.323 -OBJC_SELECTOR_REFERENCES_.324 -OBJC_METH_VAR_NAME_.325 -OBJC_SELECTOR_REFERENCES_.326 -OBJC_CLASSLIST_REFERENCES_$_.327 -forward -RLMCoerceToNil -__to_raw_pointer -__destroy -destroy -RLMTypeToString --[RLMObjectSchema .cxx_construct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectSchema.mm --[RLMObjectSchema .cxx_destruct] --[RLMObjectSchema setRealm:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectSchema_Private.h --[RLMObjectSchema realm] --[RLMObjectSchema setStandaloneClass:] --[RLMObjectSchema standaloneClass] --[RLMObjectSchema setAccessorClass:] --[RLMObjectSchema accessorClass] --[RLMObjectSchema setObjectClass:] --[RLMObjectSchema objectClass] --[RLMObjectSchema setIsSwiftClass:] --[RLMObjectSchema isSwiftClass] --[RLMObjectSchema setPropertiesByName:] --[RLMObjectSchema propertiesByName] --[RLMObjectSchema primaryKeyProperty] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectSchema.h --[RLMObjectSchema setClassName:] --[RLMObjectSchema className] --[RLMObjectSchema properties] --[RLMObjectSchema propertiesInDeclaredOrder] --[RLMObjectSchema sortPropertiesByColumn] -+[RLMObjectSchema objectSchemaForObjectStoreSchema:] --[RLMObjectSchema objectStoreCopy] --[RLMObjectSchema setTable:] --[RLMObjectSchema table] --[RLMObjectSchema description] --[RLMObjectSchema isEqualToObjectSchema:] --[RLMObjectSchema shallowCopy] --[RLMObjectSchema copyWithZone:] -+[RLMObjectSchema propertiesForClass:isSwift:] -+[RLMObjectSchema schemaForObjectClass:] --[RLMObjectSchema setPrimaryKeyProperty:] --[RLMObjectSchema setProperties:] --[RLMObjectSchema objectForKeyedSubscript:] --[RLMObjectSchema initWithClassName:objectClass:properties:] -_ZL27RLMValidateValueForPropertyP11objc_objectP11RLMPropertyP9RLMSchemabb -__RLMDeleteObjectFromRealm_block_invoke -_ZN5realm7ResultsC2Ev -_GLOBAL__sub_I_RLMObjectStore.mm -_ZL16s_accessorSchema -_ZZ34RLMInitializeSwiftAccessorGenericsE18s_swiftObjectClass -_ZGVZ34RLMInitializeSwiftAccessorGenericsE18s_swiftObjectClass -OBJC_METH_VAR_NAME_.36 -OBJC_SELECTOR_REFERENCES_.37 -OBJC_CLASSLIST_REFERENCES_$_.38 -OBJC_SELECTOR_REFERENCES_.70 -OBJC_METH_VAR_NAME_.71 -OBJC_SELECTOR_REFERENCES_.72 -OBJC_CLASSLIST_REFERENCES_$_.99 -.str.106 -OBJC_CLASSLIST_REFERENCES_$_.107 -_unnamed_cfstring_.113 -.str.114 -_unnamed_cfstring_.115 -.str.122 -.str.125 -.str.126 -.str.127 -.str.128 -_unnamed_cfstring_.129 -OBJC_CLASS_NAME_.130 -OBJC_SELECTOR_REFERENCES_.132 -OBJC_CLASSLIST_REFERENCES_$_.135 -_unnamed_cfstring_.139 -.str.142 -.str.143 -.str.146 -.str.150 -.str.151 -.str.154 -.str.156 -.str.158 -.str.159 -.str.160 -.str.161 -.str.162 -OBJC_METH_VAR_NAME_.169 -OBJC_SELECTOR_REFERENCES_.170 -OBJC_CLASSLIST_REFERENCES_$_.171 -OBJC_CLASSLIST_REFERENCES_$_.172 -OBJC_CLASSLIST_REFERENCES_$_.173 -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectStore.mm -RLMCreateOrGetRowForObject<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectStore.mm:395:30)> -RLMCreateOrGetRowForObject<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectStore.mm:377:30)> -operator= -RLMCreateOrGetRowForObject<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectStore.mm:186:26)> -RLMVerifyRealmRead -_ZZ31RLMCreateObjectInRealmWithValueEN3$_2C2ERKS_ -_ZZ31RLMCreateObjectInRealmWithValueEN3$_2C1ERKS_ -RLMValidateValueForObjectSchema -RLMValidateNestedObject -RLMValidateValueForProperty -_ZZ31RLMCreateObjectInRealmWithValueEN3$_1C2ERKS_ -_ZZ31RLMCreateObjectInRealmWithValueEN3$_1C1ERKS_ -hasObservers -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.hpp -RLMCreateObjectAccessor -RLMGetObject -RLMGetObjects -RLMDeleteAllObjectsFromRealm -RLMDeleteObjectFromRealm -RLMCreateObjectInRealmWithValue -RLMAddObjectToRealm -RLMInitializeSwiftAccessorGenerics -RLMClearAccessorCache -RLMRealmCreateAccessors -___Z13RLMClearTableP15RLMObjectSchema_block_invoke -_ZNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEED1Ev -_ZNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEED0Ev -_ZNKSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEE7__cloneEv -_ZNKSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEE7__cloneEPNS0_6__baseISE_EE -_ZNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEE7destroyEv -_ZNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEE18destroy_deallocateEv -_ZNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEEclESD_ -_ZNKSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEE6targetERKSt9type_info -_ZNKSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEE11target_typeEv -_ZL7convertRKN5realm8IndexSetEP17NSMutableIndexSet -OBJC_CLASSLIST_REFERENCES_$_.23 -_ZZN18RLMObservationInfo11valueForKeyEP8NSStringE16superValueForKey -_ZGVZN18RLMObservationInfo11valueForKeyEP8NSStringE16superValueForKey -OBJC_CLASSLIST_REFERENCES_$_.31 -OBJC_CLASSLIST_REFERENCES_$_.51 -OBJC_CLASSLIST_REFERENCES_$_.66 -OBJC_CLASSLIST_REFERENCES_$_.67 -_ZTVNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEEE -_ZTSNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEEE -_ZTSNSt3__110__function6__baseIFvRKN5realm5Group19CascadeNotificationEEEE -_ZTINSt3__110__function6__baseIFvRKN5realm5Group19CascadeNotificationEEEE -_ZTINSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEEE -OBJC_METH_VAR_NAME_.74 -OBJC_SELECTOR_REFERENCES_.75 -OBJC_METH_VAR_NAME_.76 -OBJC_SELECTOR_REFERENCES_.77 -_ZTSZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5 -_ZTIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5 -operator-- -operator!=, std::__1::__wrap_iter > -end > > -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm -begin > > -operator() -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:476:20)> -operator!=, std::__1::__wrap_iter > -end > > -begin > > -operator== *, const std::__1::pair *> -operator!= *> -Realm/ObjectStore/index_set.hpp -convert -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:461:20)> -operator== -operator!= -operator== -operator!= -__insertion_sort_incomplete &, realm::BindingContext::ObserverState *> -__insertion_sort_3 &, realm::BindingContext::ObserverState *> -__sort5 &, realm::BindingContext::ObserverState *> -__sort4 &, realm::BindingContext::ObserverState *> -__sort3 &, realm::BindingContext::ObserverState *> -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/binding_context.hpp -swap -__tuple_leaf -forward -__tuple_impl<0, 1, const unsigned long &, const unsigned long &, const unsigned long &, const unsigned long &> -tie -operator(), std::__1::tuple > -get<1, const unsigned long &, const unsigned long &> -get<0, const unsigned long &, const unsigned long &> -operator< -__sort &, realm::BindingContext::ObserverState *> -sort > -sort -sort -end > > -begin > > -move -swap -move_if_noexcept -__construct_backward -forward &> -__push_back_slow_path -move -forward -forward > -forward -move &> -ObserverState -construct -__construct -operator== -operator!= -operator!=, std::__1::__wrap_iter > -end > > -begin > > -target_type -__compare_nonunique_names -target -forward -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &> -operator!= -__push_back_slow_path -forward -construct -__construct -operator== -operator!= -__advance > -advance > -prev > -operator== -end > > -begin > > -operator() -find_if, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:342:64)> -move -swap -move_if_noexcept -__construct_backward -forward &> -__push_back_slow_path -move -forward -change -construct -__construct -getObjectSchema -operator== -operator!= -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &, const realm::Group::CascadeNotification &> -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &, const realm::Group::CascadeNotification &> -destroy_deallocate -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &> -forward &> -forward_as_tuple &> -__func -__clone -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &> -__libcpp_compressed_pair_imp &&, 0, 0> -move &> -__compressed_pair &&> -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &> -forward -forward_as_tuple -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -~__func -~__base -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &&> -forward &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &&, 0, 0> -move &&> &> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51), false> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -__base -allocator, void (const realm::Group::CascadeNotification &)> > -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &> -forward, void (const realm::Group::CascadeNotification &)> > > > -forward, void (const realm::Group::CascadeNotification &)> *> -move, void (const realm::Group::CascadeNotification &)> > > &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -forward -move > **&> -swap > **> -__construct_backward > *> -__construct_at_end -forward > *> &> -construct > *> -__construct > *> -__append -forward > **> -operator== -operator!= -operator!=, std::__1::__wrap_iter > -end > > -begin > > -move -swap -__construct_backward -forward &> -__push_back_slow_path -construct -__construct -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:124:17)> -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:119:17)> -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:111:17)> -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:106:17)> -swap -iter_swap, std::__1::__wrap_iter > -__advance > -advance > -prev > -operator== -operator!= -find, RLMObservationInfo *> -forward -rend -reverse_iterator -rbegin -reverse > > -reverse > > -__to_raw_pointer -__destroy -destroy -__to_raw_pointer -~IndexSet -~ColumnInfo -__destroy -destroy -~ObserverState -getRow -__to_raw_pointer > *> -__destroy > *> -destroy > *> -__to_raw_pointer -~change -__destroy -destroy -reverse > > -move &> -set_cascade_notification_handler -reverse > > -isForRow -RLMDidChange -RLMWillChange -RLMGetObservedRows -RLMTrackDeletions -RLMClearTable -RLMGetObservationInfo -valueForKey -removeObserver -recordObserver -setRow -prepareForInvalidation -didChange -willChange -~RLMObservationInfo -RLMObservationInfo --[RLMOptionalBase init] --[RLMOptionalBase underlyingValue] --[RLMOptionalBase setUnderlyingValue:] --[RLMOptionalBase isKindOfClass:] --[RLMOptionalBase methodSignatureForSelector:] --[RLMOptionalBase forwardInvocation:] --[RLMOptionalBase forwardingTargetForSelector:] --[RLMOptionalBase respondsToSelector:] --[RLMOptionalBase doesNotRecognizeSelector:] --[RLMOptionalBase object] --[RLMOptionalBase setObject:] --[RLMOptionalBase property] --[RLMOptionalBase setProperty:] --[RLMOptionalBase standaloneValue] --[RLMOptionalBase setStandaloneValue:] --[RLMOptionalBase .cxx_destruct] -OBJC_IVAR_$_RLMOptionalBase._object -OBJC_IVAR_$_RLMOptionalBase._property -OBJC_IVAR_$_RLMOptionalBase._standaloneValue -l_OBJC_METACLASS_RO_$_RLMOptionalBase -OBJC_CLASS_NAME_.19 -OBJC_METH_VAR_TYPE_.23 -OBJC_METH_VAR_TYPE_.27 -OBJC_METH_VAR_TYPE_.28 -OBJC_METH_VAR_TYPE_.30 -l_OBJC_$_INSTANCE_METHODS_RLMOptionalBase -OBJC_METH_VAR_TYPE_.38 -OBJC_METH_VAR_TYPE_.40 -OBJC_METH_VAR_TYPE_.42 -l_OBJC_$_INSTANCE_VARIABLES_RLMOptionalBase -OBJC_CLASS_NAME_.43 -OBJC_PROP_NAME_ATTR_.44 -OBJC_PROP_NAME_ATTR_.45 -OBJC_PROP_NAME_ATTR_.46 -OBJC_PROP_NAME_ATTR_.47 -OBJC_PROP_NAME_ATTR_.48 -OBJC_PROP_NAME_ATTR_.49 -OBJC_PROP_NAME_ATTR_.50 -l_OBJC_$_PROP_LIST_RLMOptionalBase -l_OBJC_CLASS_RO_$_RLMOptionalBase --[RLMOptionalBase .cxx_destruct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMOptionalBase.mm --[RLMOptionalBase setStandaloneValue:] --[RLMOptionalBase standaloneValue] --[RLMOptionalBase setProperty:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMOptionalBase.h --[RLMOptionalBase property] --[RLMOptionalBase setObject:] --[RLMOptionalBase object] --[RLMOptionalBase doesNotRecognizeSelector:] --[RLMOptionalBase respondsToSelector:] --[RLMOptionalBase forwardingTargetForSelector:] --[RLMOptionalBase forwardInvocation:] --[RLMOptionalBase methodSignatureForSelector:] --[RLMOptionalBase isKindOfClass:] --[RLMOptionalBase setUnderlyingValue:] --[RLMOptionalBase underlyingValue] --[RLMOptionalBase init] --[RLMProperty initWithName:type:objectClassName:indexed:optional:] --[RLMProperty updateAccessors] --[RLMProperty setObjcCodeFromType] --[RLMProperty setTypeFromRawType] --[RLMProperty parseObjcProperty:] --[RLMProperty initSwiftPropertyWithName:indexed:property:instance:] -__67-[RLMProperty initSwiftPropertyWithName:indexed:property:instance:]_block_invoke --[RLMProperty initWithName:indexed:property:] --[RLMProperty initSwiftListPropertyWithName:ivar:objectClassName:] --[RLMProperty initSwiftOptionalPropertyWithName:indexed:ivar:propertyType:] --[RLMProperty copyWithZone:] --[RLMProperty isEqualToProperty:] --[RLMProperty description] --[RLMProperty name] --[RLMProperty type] --[RLMProperty setType:] --[RLMProperty indexed] --[RLMProperty setIndexed:] --[RLMProperty objectClassName] --[RLMProperty setObjectClassName:] --[RLMProperty optional] --[RLMProperty setOptional:] --[RLMProperty column] --[RLMProperty setColumn:] --[RLMProperty objcType] --[RLMProperty setObjcType:] --[RLMProperty objcRawType] --[RLMProperty setObjcRawType:] --[RLMProperty isPrimary] --[RLMProperty setIsPrimary:] --[RLMProperty swiftIvar] --[RLMProperty setSwiftIvar:] --[RLMProperty declarationIndex] --[RLMProperty setDeclarationIndex:] --[RLMProperty getterName] --[RLMProperty setGetterName:] --[RLMProperty setterName] --[RLMProperty setSetterName:] --[RLMProperty getterSel] --[RLMProperty setGetterSel:] --[RLMProperty setterSel] --[RLMProperty setSetterSel:] --[RLMProperty .cxx_destruct] -OBJC_IVAR_$_RLMProperty._name -OBJC_IVAR_$_RLMProperty._type -OBJC_IVAR_$_RLMProperty._objectClassName -OBJC_IVAR_$_RLMProperty._indexed -OBJC_IVAR_$_RLMProperty._optional -OBJC_IVAR_$_RLMProperty._getterName -OBJC_IVAR_$_RLMProperty._setterName -OBJC_IVAR_$_RLMProperty._getterSel -OBJC_IVAR_$_RLMProperty._setterSel -OBJC_IVAR_$_RLMProperty._objcType -OBJC_IVAR_$_RLMProperty._objcRawType -_ZZ33-[RLMProperty setTypeFromRawType]E11arrayPrefix -_ZZ33-[RLMProperty setTypeFromRawType]E12numberPrefix -_unnamed_cfstring_.30 -_unnamed_cfstring_.34 -_unnamed_cfstring_.40 -_unnamed_cfstring_.47 -OBJC_SELECTOR_REFERENCES_.58 -OBJC_CLASSLIST_REFERENCES_$_.94 -OBJC_CLASSLIST_REFERENCES_$_.95 -OBJC_CLASSLIST_REFERENCES_$_.96 -.str.103 -_unnamed_cfstring_.104 -OBJC_IVAR_$_RLMProperty._swiftIvar -OBJC_CLASSLIST_REFERENCES_$_.105 -OBJC_IVAR_$_RLMProperty._isPrimary -OBJC_IVAR_$_RLMProperty._declarationIndex -.str.108 -_unnamed_cfstring_.109 -.str.116 -_unnamed_cfstring_.117 -OBJC_SELECTOR_REFERENCES_.121 -OBJC_IVAR_$_RLMProperty._column -l_OBJC_METACLASS_RO_$_RLMProperty -OBJC_METH_VAR_TYPE_.125 -OBJC_METH_VAR_TYPE_.130 -OBJC_METH_VAR_TYPE_.142 -OBJC_METH_VAR_TYPE_.144 -OBJC_METH_VAR_TYPE_.146 -OBJC_METH_VAR_NAME_.149 -OBJC_METH_VAR_TYPE_.151 -OBJC_METH_VAR_NAME_.175 -l_OBJC_$_INSTANCE_METHODS_RLMProperty -OBJC_METH_VAR_TYPE_.177 -OBJC_METH_VAR_NAME_.178 -OBJC_METH_VAR_TYPE_.183 -OBJC_METH_VAR_TYPE_.185 -OBJC_METH_VAR_TYPE_.188 -OBJC_METH_VAR_TYPE_.191 -OBJC_METH_VAR_NAME_.192 -l_OBJC_$_INSTANCE_VARIABLES_RLMProperty -OBJC_PROP_NAME_ATTR_.198 -OBJC_PROP_NAME_ATTR_.199 -OBJC_PROP_NAME_ATTR_.200 -OBJC_PROP_NAME_ATTR_.201 -OBJC_PROP_NAME_ATTR_.202 -OBJC_PROP_NAME_ATTR_.203 -OBJC_PROP_NAME_ATTR_.204 -OBJC_PROP_NAME_ATTR_.205 -OBJC_PROP_NAME_ATTR_.206 -OBJC_PROP_NAME_ATTR_.207 -OBJC_PROP_NAME_ATTR_.208 -OBJC_PROP_NAME_ATTR_.209 -OBJC_PROP_NAME_ATTR_.210 -OBJC_PROP_NAME_ATTR_.211 -OBJC_PROP_NAME_ATTR_.212 -OBJC_PROP_NAME_ATTR_.213 -OBJC_PROP_NAME_ATTR_.214 -OBJC_PROP_NAME_ATTR_.215 -OBJC_PROP_NAME_ATTR_.219 -OBJC_PROP_NAME_ATTR_.220 -OBJC_PROP_NAME_ATTR_.221 -OBJC_PROP_NAME_ATTR_.222 -OBJC_PROP_NAME_ATTR_.223 -OBJC_PROP_NAME_ATTR_.224 -OBJC_PROP_NAME_ATTR_.225 -OBJC_PROP_NAME_ATTR_.226 -l_OBJC_$_PROP_LIST_RLMProperty -l_OBJC_CLASS_RO_$_RLMProperty -_unnamed_cfstring_.228 -.str.229 -_unnamed_cfstring_.230 -.str.231 -_unnamed_cfstring_.232 -.str.233 -_unnamed_cfstring_.234 -.str.235 -_unnamed_cfstring_.236 -_unnamed_cfstring_.238 -.str.239 -_unnamed_cfstring_.240 -.str.241 -_unnamed_cfstring_.242 -.str.243 -_unnamed_cfstring_.244 -.str.247 -_unnamed_cfstring_.248 --[RLMProperty .cxx_destruct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMProperty.mm --[RLMProperty setSetterSel:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMProperty_Private.h --[RLMProperty setterSel] --[RLMProperty setGetterSel:] --[RLMProperty getterSel] --[RLMProperty setSetterName:] --[RLMProperty setterName] --[RLMProperty setGetterName:] --[RLMProperty getterName] --[RLMProperty setDeclarationIndex:] --[RLMProperty declarationIndex] --[RLMProperty setSwiftIvar:] --[RLMProperty swiftIvar] --[RLMProperty setIsPrimary:] --[RLMProperty isPrimary] --[RLMProperty setObjcRawType:] --[RLMProperty objcRawType] --[RLMProperty setObjcType:] --[RLMProperty objcType] --[RLMProperty setColumn:] --[RLMProperty column] --[RLMProperty setOptional:] --[RLMProperty optional] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMProperty.h --[RLMProperty setObjectClassName:] --[RLMProperty objectClassName] --[RLMProperty setIndexed:] --[RLMProperty indexed] --[RLMProperty setType:] --[RLMProperty type] --[RLMProperty name] --[RLMProperty description] --[RLMProperty isEqualToProperty:] --[RLMProperty copyWithZone:] --[RLMProperty initSwiftOptionalPropertyWithName:indexed:ivar:propertyType:] --[RLMProperty initSwiftListPropertyWithName:ivar:objectClassName:] --[RLMProperty initWithName:indexed:property:] --[RLMProperty initSwiftPropertyWithName:indexed:property:instance:] --[RLMProperty parseObjcProperty:] --[RLMProperty setTypeFromRawType] --[RLMProperty setObjcCodeFromType] --[RLMProperty updateAccessors] --[RLMProperty initWithName:type:objectClassName:indexed:optional:] -RLMPropertyTypeIsNumeric -RLMPropertyTypeIsNullable -_ZL15RLMPreconditionbP8NSStringS0_z -_ZN12_GLOBAL__N_127update_query_with_predicateEP11NSPredicateP9RLMSchemaP15RLMObjectSchemaRN5realm5QueryE -_ZL21RLMPredicateExceptionP8NSStringS0_z -_ZN12_GLOBAL__N_134update_query_with_value_expressionEP9RLMSchemaP15RLMObjectSchemaRN5realm5QueryEP8NSStringP11objc_objectP21NSComparisonPredicate -_ZN12_GLOBAL__N_114TrueExpressionD1Ev -_ZN12_GLOBAL__N_114TrueExpressionD0Ev -_ZNK12_GLOBAL__N_114TrueExpression10find_firstEmm -_ZN12_GLOBAL__N_114TrueExpression14set_base_tableEPKN5realm5TableE -_ZNK12_GLOBAL__N_114TrueExpression14get_base_tableEv -_ZNK12_GLOBAL__N_114TrueExpression5cloneEPNSt3__16vectorINS1_10unique_ptrIN5realm22QueryNodeHandoverPatchENS1_14default_deleteIS5_EEEENS1_9allocatorIS8_EEEE -_ZN5realm10Expression20apply_handover_patchERNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEERNS_5GroupE -_ZN12_GLOBAL__N_134collection_operation_from_key_pathEP9RLMSchemaP15RLMObjectSchemaP8NSString -_ZN12_GLOBAL__N_130column_reference_from_key_pathEP9RLMSchemaP15RLMObjectSchemaP8NSStringb -_ZNK12_GLOBAL__N_119CollectionOperation19validate_comparisonERKNS_15ColumnReferenceE -_ZN12_GLOBAL__N_144add_collection_operation_constraint_to_queryIJNS_19CollectionOperationENS_15ColumnReferenceEEEEvRN5realm5QueryE23NSPredicateOperatorTypeS1_DpT_ -_ZN12_GLOBAL__N_144add_collection_operation_constraint_to_queryIJNS_15ColumnReferenceENS_19CollectionOperationEEEEvRN5realm5QueryE23NSPredicateOperatorTypeS2_DpT_ -_ZN12_GLOBAL__N_119CollectionOperation13name_for_typeENS0_4TypeE -_ZN5realm4util17BadOptionalAccessD1Ev -_ZN5realm4util17BadOptionalAccessD0Ev -_ZNK5realm4util8OptionalIN12_GLOBAL__N_115ColumnReferenceEEptEv -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIxLNS_19CollectionOperation4TypeE0EEEDaRN5realm5QueryES1_ -_ZN5realm7ColumnsIxED1Ev -_ZN5realm9LinkCountD1Ev -_ZN12_GLOBAL__N_112operatorNameE23NSPredicateOperatorType -_ZN5realm9OverloadsIxxE7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm7CompareINS_4LessExNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_4LessExNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_4LessExNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_4LessExNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_4LessExNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_4LessExNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_4LessExNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm5ValueIxED1Ev -_ZN5realm5ValueIxEC2Ev -_ZNK5realm5ValueIxE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueIxE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueIxE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueIxE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueIxE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueIxE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueIxE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueIxE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueIxE6importERKNS_9ValueBaseE -_ZN5realm5ValueIxE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueIxE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm5ValueIxED0Ev -_ZThn24_N5realm5ValueIxED1Ev -_ZThn24_N5realm5ValueIxED0Ev -_ZThn24_NK5realm5ValueIxE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm7Subexpr20apply_handover_patchERNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEERNS_5GroupE -_ZN5realm7Subexpr14set_base_tableEPKNS_5TableE -_ZNK5realm7Subexpr14get_base_tableEv -_ZThn24_N5realm5ValueIxE8evaluateEmRNS_9ValueBaseE -_ZN5realm14NullableVectorIxLm8EE4initEmx -_ZN5realm14NullableVectorIxLm8EE4initEm -_ZN5realm14NullableVectorIbLm8EE3setEmx -_ZNK5realm14NullableVectorIxLm8EEixEm -_ZN5realm14NullableVectorIbLm8EE4initEm -_ZN5realm14NullableVectorIbLm8EE4fillEb -_ZN5realm14NullableVectorIiLm8EE3setEmx -_ZN5realm14NullableVectorIiLm8EE4initEm -_ZN5realm14NullableVectorIiLm8EE4fillEi -_ZN5realm5ValueIfE4initEbmf -_ZN5realm14NullableVectorIfLm8EE4initEm -_ZN5realm5ValueIdE4initEbmd -_ZN5realm14NullableVectorIdLm8EE4initEm -_ZN5realm14NullableVectorINS_4nullELm8EE4initEm -_ZN5realm14NullableVectorIxLm8EEC2ERKS1_ -_ZN5realm7CompareINS_4LessExNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIxxE7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm7CompareINS_9LessEqualExNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_9LessEqualExNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_9LessEqualExNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_9LessEqualExNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_9LessEqualExNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_9LessEqualExNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_9LessEqualExNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_9LessEqualExNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIxxE7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm7CompareINS_7GreaterExNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_7GreaterExNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_7GreaterExNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_7GreaterExNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_7GreaterExNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_7GreaterExNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_7GreaterExNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_7GreaterExNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIxxE7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIxxE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm7CompareINS_5EqualExNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_5EqualExNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_5EqualExNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_5EqualExNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_5EqualExNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_5EqualExNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_5EqualExNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_5EqualExNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIxxE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm7CompareINS_8NotEqualExNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_8NotEqualExNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_8NotEqualExNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_8NotEqualExNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8NotEqualExNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_8NotEqualExNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_8NotEqualExNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_8NotEqualExNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZNK5realm7ColumnsINS_4LinkEE5countEv -_ZN5realm7ColumnsINS_4LinkEED1Ev -_ZNK12_GLOBAL__N_115ColumnReference15table_for_queryERN5realm5QueryE -_ZN5realm7ColumnsINS_4LinkEED0Ev -_ZNK5realm7ColumnsINS_4LinkEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm7ColumnsINS_4LinkEE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsINS_4LinkEE14get_base_tableEv -_ZN5realm7ColumnsINS_4LinkEE8evaluateEmRNS_9ValueBaseE -_ZN5realm7LinkMapC2EPKNS_5TableERKNSt3__16vectorImNS4_9allocatorImEEEE -_ZN5realm7LinkMap14set_base_tableEPKNS_5TableE -_ZN5realm9LinkCountD0Ev -_ZNK5realm9LinkCount5cloneEPNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEE -_ZN5realm9LinkCount14set_base_tableEPKNS_5TableE -_ZNK5realm9LinkCount14get_base_tableEv -_ZN5realm9LinkCount8evaluateEmRNS_9ValueBaseE -_ZN5realm10CountLinks7consumeEm -_ZN5realm7LinkMap9map_linksEmmRNS_15LinkMapFunctionE -_ZN5realm5ValueIxEC2Ebmx -_ZN12_GLOBAL__N_123value_of_type_for_queryIxEEDaRN5realm5QueryERKNS_15ColumnReferenceE -_ZN5realm7ColumnsIxEC2EmPKNS_5TableERKNSt3__16vectorImNS5_9allocatorImEEEE -_ZN5realm7ColumnsIxED0Ev -_ZNK5realm7ColumnsIxE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm7ColumnsIxE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsIxE14get_base_tableEv -_ZN5realm7ColumnsIxE8evaluateEmRNS_9ValueBaseE -_ZN5realm7ColumnsIxEC2ERKS1_ -_ZN5realm16SequentialGetterINS_6ColumnINS_4util8OptionalIxEEEEE4initEPKS5_ -_ZN5realm16SequentialGetterINS_6ColumnIxEEE4initEPKS2_ -_ZN5realm16SequentialGetterINS_6ColumnINS_4util8OptionalIxEEEEED1Ev -_ZN5realm16SequentialGetterINS_6ColumnINS_4util8OptionalIxEEEEED0Ev -_ZN5realm16SequentialGetterINS_6ColumnIxEEED1Ev -_ZN5realm16SequentialGetterINS_6ColumnIxEEED0Ev -_ZN5realm12ArrayIntNullD1Ev -_ZN5realm12ArrayIntNullD0Ev -_ZN5realm7ColumnsIxE17evaluate_internalINS_6ColumnINS_4util8OptionalIxEEEEEEvmRNS_9ValueBaseE -_ZN5realm7ColumnsIxE17evaluate_internalINS_6ColumnIxEEEEvmRNS_9ValueBaseE -_ZN5realm7LinkMap9get_linksEm -_ZN5realm14MakeLinkVector7consumeEm -_ZN5realm5ValueIxEC2Ebm -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIxLNS_19CollectionOperation4TypeE1EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEED1Ev -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIfLNS_19CollectionOperation4TypeE1EEEDaRN5realm5QueryES1_ -_ZN5realm7ColumnsIfED1Ev -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MinimumIfEEED1Ev -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIdLNS_19CollectionOperation4TypeE1EEEDaRN5realm5QueryES1_ -_ZN5realm7ColumnsIdED1Ev -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MinimumIdEEED1Ev -_ZNK5realm7ColumnsINS_4LinkEE6columnIxEENS_10SubColumnsIT_EEm -_ZNK5realm10SubColumnsIxE3minEv -_ZN5realm10SubColumnsIxED1Ev -_ZN5realm10SubColumnsIxEC2ENS_7ColumnsIxEENS_7LinkMapE -_ZN5realm10SubColumnsIxED0Ev -_ZNK5realm10SubColumnsIxE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm10SubColumnsIxE14set_base_tableEPKNS_5TableE -_ZNK5realm10SubColumnsIxE14get_base_tableEv -_ZN5realm10SubColumnsIxE8evaluateEmRNS_9ValueBaseE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEEC2ENS_7ColumnsIxEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEED0Ev -_ZNK5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEE8evaluateEmRNS_9ValueBaseE -_ZN5realm5ValueINS_4nullEED1Ev -_ZN5realm5ValueINS_4nullEEC2EbmS1_ -_ZNK5realm5ValueINS_4nullEE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueINS_4nullEE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueINS_4nullEE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueINS_4nullEE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueINS_4nullEE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueINS_4nullEE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueINS_4nullEE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueINS_4nullEE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueINS_4nullEE6importERKNS_9ValueBaseE -_ZN5realm5ValueINS_4nullEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueINS_4nullEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm5ValueINS_4nullEED0Ev -_ZThn24_N5realm5ValueINS_4nullEED1Ev -_ZThn24_N5realm5ValueINS_4nullEED0Ev -_ZThn24_NK5realm5ValueINS_4nullEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZThn24_N5realm5ValueINS_4nullEE8evaluateEmRNS_9ValueBaseE -_ZN5realm14NullableVectorINS_10StringDataELm8EE4initEmS1_ -_ZN5realm14NullableVectorINS_10StringDataELm8EE4initEm -_ZN5realm14NullableVectorINS_4nullELm8EEC2ERKS2_ -_ZN5realm9OverloadsIffE7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm7CompareINS_4LessEfNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_4LessEfNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_4LessEfNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_4LessEfNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_4LessEfNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_4LessEfNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_4LessEfNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm5ValueIfED1Ev -_ZN5realm5ValueIfEC2Ev -_ZNK5realm5ValueIfE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueIfE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueIfE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueIfE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueIfE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueIfE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueIfE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueIfE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueIfE6importERKNS_9ValueBaseE -_ZN5realm5ValueIfE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueIfE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm5ValueIfED0Ev -_ZThn24_N5realm5ValueIfED1Ev -_ZThn24_N5realm5ValueIfED0Ev -_ZThn24_NK5realm5ValueIfE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZThn24_N5realm5ValueIfE8evaluateEmRNS_9ValueBaseE -_ZNK5realm14NullableVectorIfLm8EEixEm -_ZN5realm14NullableVectorIfLm8EEC2ERKS1_ -_ZN5realm7CompareINS_4LessEfNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIffE7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm7CompareINS_9LessEqualEfNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_9LessEqualEfNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_9LessEqualEfNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_9LessEqualEfNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_9LessEqualEfNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_9LessEqualEfNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_9LessEqualEfNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_9LessEqualEfNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIffE7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm7CompareINS_7GreaterEfNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_7GreaterEfNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_7GreaterEfNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_7GreaterEfNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_7GreaterEfNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_7GreaterEfNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_7GreaterEfNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_7GreaterEfNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIffE7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIffE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm7CompareINS_5EqualEfNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_5EqualEfNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_5EqualEfNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_5EqualEfNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_5EqualEfNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_5EqualEfNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_5EqualEfNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_5EqualEfNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIffE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm7CompareINS_8NotEqualEfNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_8NotEqualEfNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_8NotEqualEfNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_8NotEqualEfNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8NotEqualEfNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_8NotEqualEfNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_8NotEqualEfNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_8NotEqualEfNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZNK5realm7ColumnsINS_4LinkEE6columnIfEENS_10SubColumnsIT_EEm -_ZNK5realm10SubColumnsIfE3minEv -_ZN5realm10SubColumnsIfED1Ev -_ZN5realm7ColumnsIfEC2EmPKNS_5TableERKNSt3__16vectorImNS5_9allocatorImEEEE -_ZN5realm7ColumnsIfED0Ev -_ZNK5realm7ColumnsIfE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm7ColumnsIfE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsIfE14get_base_tableEv -_ZN5realm7ColumnsIfE8evaluateEmRNS_9ValueBaseE -_ZN5realm7ColumnsIfEC2ERKS1_ -_ZN5realm16SequentialGetterINS_6ColumnIfEEE4initEPKS2_ -_ZN5realm16SequentialGetterINS_6ColumnIfEEED1Ev -_ZN5realm16SequentialGetterINS_6ColumnIfEEED0Ev -_ZN5realm10BasicArrayIfED1Ev -_ZN5realm10BasicArrayIfED0Ev -_ZNK5realm10BasicArrayIfE12GetWidthTypeEv -_ZN5realm7ColumnsIfE17evaluate_internalINS_6ColumnIfEEEEvmRNS_9ValueBaseE -_ZN5realm5ValueIfEC2Ebm -_ZN5realm10SubColumnsIfEC2ENS_7ColumnsIfEENS_7LinkMapE -_ZN5realm10SubColumnsIfED0Ev -_ZNK5realm10SubColumnsIfE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm10SubColumnsIfE14set_base_tableEPKNS_5TableE -_ZNK5realm10SubColumnsIfE14get_base_tableEv -_ZN5realm10SubColumnsIfE8evaluateEmRNS_9ValueBaseE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MinimumIfEEEC2ENS_7ColumnsIfEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MinimumIfEEED0Ev -_ZNK5realm18SubColumnAggregateIfNS_20aggregate_operations7MinimumIfEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MinimumIfEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIfNS_20aggregate_operations7MinimumIfEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MinimumIfEEE8evaluateEmRNS_9ValueBaseE -_ZN5realm5ValueIfEC2Ebmf -_ZN12_GLOBAL__N_123value_of_type_for_queryIfEEDaRN5realm5QueryERKNS_15ColumnReferenceE -_ZN5realm9OverloadsIddE7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm7CompareINS_4LessEdNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_4LessEdNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_4LessEdNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_4LessEdNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_4LessEdNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_4LessEdNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_4LessEdNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm5ValueIdED1Ev -_ZN5realm5ValueIdEC2Ev -_ZNK5realm5ValueIdE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueIdE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueIdE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueIdE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueIdE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueIdE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueIdE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueIdE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueIdE6importERKNS_9ValueBaseE -_ZN5realm5ValueIdE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueIdE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm5ValueIdED0Ev -_ZThn24_N5realm5ValueIdED1Ev -_ZThn24_N5realm5ValueIdED0Ev -_ZThn24_NK5realm5ValueIdE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZThn24_N5realm5ValueIdE8evaluateEmRNS_9ValueBaseE -_ZNK5realm14NullableVectorIdLm8EEixEm -_ZN5realm14NullableVectorIdLm8EEC2ERKS1_ -_ZN5realm7CompareINS_4LessEdNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIddE7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm7CompareINS_9LessEqualEdNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_9LessEqualEdNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_9LessEqualEdNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_9LessEqualEdNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_9LessEqualEdNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_9LessEqualEdNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_9LessEqualEdNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_9LessEqualEdNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIddE7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm7CompareINS_7GreaterEdNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_7GreaterEdNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_7GreaterEdNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_7GreaterEdNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_7GreaterEdNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_7GreaterEdNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_7GreaterEdNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_7GreaterEdNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIddE7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIddE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm7CompareINS_5EqualEdNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_5EqualEdNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_5EqualEdNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_5EqualEdNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_5EqualEdNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_5EqualEdNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_5EqualEdNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_5EqualEdNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIddE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm7CompareINS_8NotEqualEdNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_8NotEqualEdNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_8NotEqualEdNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_8NotEqualEdNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8NotEqualEdNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_8NotEqualEdNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_8NotEqualEdNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_8NotEqualEdNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZNK5realm7ColumnsINS_4LinkEE6columnIdEENS_10SubColumnsIT_EEm -_ZNK5realm10SubColumnsIdE3minEv -_ZN5realm10SubColumnsIdED1Ev -_ZN5realm7ColumnsIdEC2EmPKNS_5TableERKNSt3__16vectorImNS5_9allocatorImEEEE -_ZN5realm7ColumnsIdED0Ev -_ZNK5realm7ColumnsIdE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm7ColumnsIdE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsIdE14get_base_tableEv -_ZN5realm7ColumnsIdE8evaluateEmRNS_9ValueBaseE -_ZN5realm7ColumnsIdEC2ERKS1_ -_ZN5realm16SequentialGetterINS_6ColumnIdEEE4initEPKS2_ -_ZN5realm16SequentialGetterINS_6ColumnIdEEED1Ev -_ZN5realm16SequentialGetterINS_6ColumnIdEEED0Ev -_ZN5realm10BasicArrayIdED1Ev -_ZN5realm10BasicArrayIdED0Ev -_ZNK5realm10BasicArrayIdE12GetWidthTypeEv -_ZN5realm7ColumnsIdE17evaluate_internalINS_6ColumnIdEEEEvmRNS_9ValueBaseE -_ZN5realm5ValueIdEC2Ebm -_ZN5realm10SubColumnsIdEC2ENS_7ColumnsIdEENS_7LinkMapE -_ZN5realm10SubColumnsIdED0Ev -_ZNK5realm10SubColumnsIdE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm10SubColumnsIdE14set_base_tableEPKNS_5TableE -_ZNK5realm10SubColumnsIdE14get_base_tableEv -_ZN5realm10SubColumnsIdE8evaluateEmRNS_9ValueBaseE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MinimumIdEEEC2ENS_7ColumnsIdEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MinimumIdEEED0Ev -_ZNK5realm18SubColumnAggregateIdNS_20aggregate_operations7MinimumIdEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MinimumIdEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIdNS_20aggregate_operations7MinimumIdEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MinimumIdEEE8evaluateEmRNS_9ValueBaseE -_ZN5realm5ValueIdEC2Ebmd -_ZN12_GLOBAL__N_123value_of_type_for_queryIdEEDaRN5realm5QueryERKNS_15ColumnReferenceE -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIxLNS_19CollectionOperation4TypeE2EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MaximumIxEEED1Ev -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIfLNS_19CollectionOperation4TypeE2EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEED1Ev -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIdLNS_19CollectionOperation4TypeE2EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEED1Ev -_ZNK5realm10SubColumnsIxE3maxEv -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MaximumIxEEEC2ENS_7ColumnsIxEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MaximumIxEEED0Ev -_ZNK5realm18SubColumnAggregateIxNS_20aggregate_operations7MaximumIxEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MaximumIxEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIxNS_20aggregate_operations7MaximumIxEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MaximumIxEEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm10SubColumnsIfE3maxEv -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEEC2ENS_7ColumnsIfEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEED0Ev -_ZNK5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm10SubColumnsIdE3maxEv -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEEC2ENS_7ColumnsIdEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEED0Ev -_ZNK5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEE8evaluateEmRNS_9ValueBaseE -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIxLNS_19CollectionOperation4TypeE3EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEED1Ev -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIfLNS_19CollectionOperation4TypeE3EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEED1Ev -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIdLNS_19CollectionOperation4TypeE3EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEED1Ev -_ZNK5realm10SubColumnsIxE3sumEv -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEEC2ENS_7ColumnsIxEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEED0Ev -_ZNK5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm10SubColumnsIfE3sumEv -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEEC2ENS_7ColumnsIfEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEED0Ev -_ZNK5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm10SubColumnsIdE3sumEv -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEEC2ENS_7ColumnsIdEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEED0Ev -_ZNK5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEE8evaluateEmRNS_9ValueBaseE -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIxLNS_19CollectionOperation4TypeE4EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEED1Ev -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIfLNS_19CollectionOperation4TypeE4EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEED1Ev -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIdLNS_19CollectionOperation4TypeE4EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEED1Ev -_ZN5realm9OverloadsIdxE7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm9OverloadsIdxE7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm9OverloadsIdxE7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm9OverloadsIdxE7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm9OverloadsIdxE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm9OverloadsIdxE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IxEE -_ZNK5realm10SubColumnsIxE7averageEv -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEEC2ENS_7ColumnsIxEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEED0Ev -_ZNK5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEE8evaluateEmRNS_9ValueBaseE -_ZN5realm9OverloadsIdfE7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm9OverloadsIdfE7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm9OverloadsIdfE7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm9OverloadsIdfE7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm9OverloadsIdfE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm9OverloadsIdfE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IfEE -_ZNK5realm10SubColumnsIfE7averageEv -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEEC2ENS_7ColumnsIfEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEED0Ev -_ZNK5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm10SubColumnsIdE7averageEv -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEEC2ENS_7ColumnsIdEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEED0Ev -_ZNK5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEE8evaluateEmRNS_9ValueBaseE -_ZN5realm9OverloadsIxdE7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIxdE7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIxdE7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIxdE7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIxdE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIxdE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIfdE7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIfdE7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIfdE7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIfdE7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIfdE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIfdE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN12_GLOBAL__N_126do_add_constraint_to_queryIJNS_15ColumnReferenceES1_EEEvRN5realm5QueryE15RLMPropertyType23NSPredicateOperatorTypemDpT_ -_ZN12_GLOBAL__N_123value_of_type_for_queryIbEEDaRN5realm5QueryERKNS_15ColumnReferenceE -_ZN5realm7ColumnsIbED1Ev -_ZN12_GLOBAL__N_123value_of_type_for_queryIN5realm8DateTimeEEEDaRNS1_5QueryERKNS_15ColumnReferenceE -_ZN5realm7ColumnsINS_8DateTimeEED1Ev -_ZN12_GLOBAL__N_123value_of_type_for_queryIN5realm10StringDataEEEDaRNS1_5QueryERKNS_15ColumnReferenceE -_ZN5realm7ColumnsINS_10StringDataEED1Ev -_ZN5realm7CompareINS_5EqualEbNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_5EqualEbNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_5EqualEbNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_5EqualEbNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_5EqualEbNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_5EqualEbNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_5EqualEbNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm5ValueIbED1Ev -_ZN5realm5ValueIbEC2Ev -_ZNK5realm5ValueIbE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueIbE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueIbE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueIbE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueIbE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueIbE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueIbE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueIbE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueIbE6importERKNS_9ValueBaseE -_ZN5realm5ValueIbE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueIbE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm5ValueIbED0Ev -_ZThn24_N5realm5ValueIbED1Ev -_ZThn24_N5realm5ValueIbED0Ev -_ZThn24_NK5realm5ValueIbE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZThn24_N5realm5ValueIbE8evaluateEmRNS_9ValueBaseE -_ZNK5realm14NullableVectorIbLm8EEixEm -_ZN5realm14NullableVectorIbLm8EEC2ERKS1_ -_ZN5realm7CompareINS_5EqualEbNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm5ValueINS_4nullEEC2ES1_ -_ZN5realm7CompareINS_8NotEqualEbNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_8NotEqualEbNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_8NotEqualEbNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_8NotEqualEbNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8NotEqualEbNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_8NotEqualEbNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_8NotEqualEbNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_8NotEqualEbNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm7ColumnsIbEC2EmPKNS_5TableERKNSt3__16vectorImNS5_9allocatorImEEEE -_ZN5realm7ColumnsIbED0Ev -_ZNK5realm7ColumnsIbE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm7ColumnsIbE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsIbE14get_base_tableEv -_ZN5realm7ColumnsIbE8evaluateEmRNS_9ValueBaseE -_ZN5realm7ColumnsIbEC2ERKS1_ -_ZN5realm7ColumnsIbE17evaluate_internalINS_6ColumnINS_4util8OptionalIxEEEEEEvmRNS_9ValueBaseE -_ZN5realm7ColumnsIbE17evaluate_internalINS_6ColumnIxEEEEvmRNS_9ValueBaseE -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm5ValueINS_8DateTimeEED1Ev -_ZN5realm5ValueINS_8DateTimeEEC2Ev -_ZNK5realm5ValueINS_8DateTimeEE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueINS_8DateTimeEE6importERKNS_9ValueBaseE -_ZN5realm5ValueINS_8DateTimeEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm5ValueINS_8DateTimeEED0Ev -_ZThn24_N5realm5ValueINS_8DateTimeEED1Ev -_ZThn24_N5realm5ValueINS_8DateTimeEED0Ev -_ZThn24_NK5realm5ValueINS_8DateTimeEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZThn24_N5realm5ValueINS_8DateTimeEE8evaluateEmRNS_9ValueBaseE -_ZN5realm14NullableVectorINS_8DateTimeELm8EE4initEmS1_ -_ZN5realm14NullableVectorINS_8DateTimeELm8EE4initEm -_ZNK5realm14NullableVectorINS_8DateTimeELm8EEixEm -_ZN5realm14NullableVectorINS_8DateTimeELm8EEC2ERKS2_ -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7ColumnsINS_8DateTimeEEC2EmPKNS_5TableERKNSt3__16vectorImNS6_9allocatorImEEEE -_ZN5realm7ColumnsINS_8DateTimeEED0Ev -_ZNK5realm7ColumnsINS_8DateTimeEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm7ColumnsINS_8DateTimeEE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsINS_8DateTimeEE14get_base_tableEv -_ZN5realm7ColumnsINS_8DateTimeEE8evaluateEmRNS_9ValueBaseE -_ZN5realm7ColumnsINS_8DateTimeEEC2ERKS2_ -_ZN5realm7ColumnsINS_8DateTimeEE17evaluate_internalINS_6ColumnINS_4util8OptionalIxEEEEEEvmRNS_9ValueBaseE -_ZN5realm7ColumnsINS_8DateTimeEE17evaluate_internalINS_6ColumnIxEEEEvmRNS_9ValueBaseE -_ZN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm5ValueINS_10StringDataEED1Ev -_ZN5realm5ValueINS_10StringDataEEC2Ev -_ZNK5realm5ValueINS_10StringDataEE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueINS_10StringDataEE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueINS_10StringDataEE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueINS_10StringDataEE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueINS_10StringDataEE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueINS_10StringDataEE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueINS_10StringDataEE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueINS_10StringDataEE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueINS_10StringDataEE6importERKNS_9ValueBaseE -_ZN5realm5ValueINS_10StringDataEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueINS_10StringDataEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm5ValueINS_10StringDataEED0Ev -_ZThn24_N5realm5ValueINS_10StringDataEED1Ev -_ZThn24_N5realm5ValueINS_10StringDataEED0Ev -_ZThn24_NK5realm5ValueINS_10StringDataEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZThn24_N5realm5ValueINS_10StringDataEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm14NullableVectorINS_10StringDataELm8EEixEm -_ZN5realm14NullableVectorINS_10StringDataELm8EEC2ERKS2_ -_ZN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm19ConstantStringValueC2ERKNS_10StringDataE -_ZNK5realm19ConstantStringValue5cloneEPNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEE -_ZN5realm19ConstantStringValueD1Ev -_ZN5realm19ConstantStringValueD0Ev -_ZThn24_N5realm19ConstantStringValueD1Ev -_ZThn24_N5realm19ConstantStringValueD0Ev -_ZThn24_NK5realm19ConstantStringValue5cloneEPNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEE -_ZNK5realm4util8OptionalINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE5valueEv -_ZN5realm19ConstantStringValueC2ERKS0_ -_ZN5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZNK5realm13BeginsWithInsclENS_10StringDataES1_bb -_ZN5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZNK5realm8EndsWithclENS_10StringDataES1_bb -_ZN5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZNK5realm11EndsWithInsclENS_10StringDataES1_bb -_ZN5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZNK5realm8ContainsclENS_10StringDataES1_bb -_ZNSt3__18__searchIRNS_10__equal_toIccEEPKcS5_EET0_S6_S6_T1_S7_T_NS_26random_access_iterator_tagES9_ -_ZN5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZNK5realm11ContainsInsclENS_10StringDataES1_bb -_ZN5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZNK5realm8EqualInsclENS_10StringDataES1_bb -_ZN5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZNK5realm8NotEqualclINS_10StringDataEEEbRKT_S5_bb -_ZN5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZNK5realm11NotEqualInsclENS_10StringDataES1_bb -_ZN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7ColumnsINS_10StringDataEEC2EmPKNS_5TableERKNSt3__16vectorImNS6_9allocatorImEEEE -_ZN5realm7ColumnsINS_10StringDataEED0Ev -_ZNK5realm7ColumnsINS_10StringDataEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm7ColumnsINS_10StringDataEE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsINS_10StringDataEE14get_base_tableEv -_ZN5realm7ColumnsINS_10StringDataEE8evaluateEmRNS_9ValueBaseE -_ZN5realm7ColumnsINS_4LinkEE7is_nullEv -_ZN5realm16UnaryLinkCompareILb0EED1Ev -_ZN5realm16UnaryLinkCompareILb0EED0Ev -_ZNK5realm16UnaryLinkCompareILb0EE10find_firstEmm -_ZN5realm16UnaryLinkCompareILb0EE14set_base_tableEPKNS_5TableE -_ZNK5realm16UnaryLinkCompareILb0EE14get_base_tableEv -_ZNK5realm16UnaryLinkCompareILb0EE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm13FindNullLinks7consumeEm -_ZN5realm9OverloadsIbbE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IbEE -_ZN5realm9OverloadsIbbE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IbEE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN12_GLOBAL__N_123validate_property_valueERKNS_15ColumnReferenceEP11objc_objectP8NSStringP15RLMObjectSchemaS6_ -_ZN12_GLOBAL__N_123add_constraint_to_queryINS_15ColumnReferenceEU8__strongP11objc_objectEEvRN5realm5QueryE15RLMPropertyType23NSPredicateOperatorTypemT_T0_ -_ZN12_GLOBAL__N_144add_collection_operation_constraint_to_queryIJNS_19CollectionOperationEU8__strongP11objc_objectEEEvRN5realm5QueryE23NSPredicateOperatorTypeS1_DpT_ -_ZN12_GLOBAL__N_144add_collection_operation_constraint_to_queryIJU8__strongP11objc_objectNS_19CollectionOperationEEEEvRN5realm5QueryE23NSPredicateOperatorTypeS4_DpT_ -_ZN5realm5ValueIxEC2Ex -_ZN5realm5ValueIfEC2Ef -_ZN5realm5ValueIdEC2Ed -_ZN5realm5ValueIiEC2Ei -_ZNK5realm5ValueIiE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueIiE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueIiE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueIiE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueIiE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueIiE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueIiE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueIiE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueIiE6importERKNS_9ValueBaseE -_ZN5realm5ValueIiE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueIiE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm5ValueIiED1Ev -_ZN5realm5ValueIiED0Ev -_ZThn24_N5realm5ValueIiED1Ev -_ZThn24_N5realm5ValueIiED0Ev -_ZThn24_NK5realm5ValueIiE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZThn24_N5realm5ValueIiE8evaluateEmRNS_9ValueBaseE -_ZNK5realm14NullableVectorIiLm8EEixEm -_ZN5realm14NullableVectorIiLm8EEC2ERKS1_ -_ZN12_GLOBAL__N_139value_from_constant_expression_or_valueEP11objc_object -_ZN12_GLOBAL__N_19is_nsnullEP11objc_object -_ZN12_GLOBAL__N_130add_string_constraint_to_queryIN5realm10StringDataEEEvRNS1_5QueryE23NSPredicateOperatorTypemONS1_7ColumnsIS2_EET_ -_ZN12_GLOBAL__N_123value_of_type_for_queryIN5realm10StringDataEEEDaRNS1_5QueryEP11objc_object -_ZN12_GLOBAL__N_130add_binary_constraint_to_queryERN5realm5QueryE23NSPredicateOperatorTypeRKNS_15ColumnReferenceEP11objc_object -_ZN12_GLOBAL__N_128add_link_constraint_to_queryERN5realm5QueryE23NSPredicateOperatorTypeRKNS_15ColumnReferenceEP9RLMObject -_ZN5realm5ValueIbEC2Eb -_ZN5realm5ValueINS_8DateTimeEEC2ES1_ -_ZN5realm8BasicRowIKNS_5TableEED2Ev -_ZN5realm7CompareINS_5EqualEiNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_5EqualEiNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_5EqualEiNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_5EqualEiNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_5EqualEiNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_5EqualEiNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_5EqualEiNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm5ValueIiEC2Ev -_ZN5realm7CompareINS_5EqualEiNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_8NotEqualEiNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8NotEqualEiNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_8NotEqualEiNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN12_GLOBAL__N_146update_query_with_function_subquery_expressionEP9RLMSchemaP15RLMObjectSchemaRN5realm5QueryEP12NSExpression23NSPredicateOperatorTypeS8_ -_ZN12_GLOBAL__N_152simplify_self_value_for_key_path_function_expressionEP12NSExpression -_ZNK5realm8SubQueryINS_4LinkEE5countEv -_ZN5realm13SubQueryCountD1Ev -_ZN5realm8SubQueryINS_4LinkEEC2ENS_7ColumnsIS1_EENS_5QueryE -_ZN5realm13SubQueryCountD0Ev -_ZNK5realm13SubQueryCount5cloneEPNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEE -_ZN5realm13SubQueryCount20apply_handover_patchERNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEERNS_5GroupE -_ZN5realm13SubQueryCount14set_base_tableEPKNS_5TableE -_ZNK5realm13SubQueryCount14get_base_tableEv -_ZN5realm13SubQueryCount8evaluateEmRNS_9ValueBaseE -_ZN5realm13SubQueryCountC2ERKS0_PNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm26SubQueryCountHandoverPatchD1Ev -_ZN5realm26SubQueryCountHandoverPatchD0Ev -_ZN12_GLOBAL__N_115FalseExpressionD1Ev -_ZN12_GLOBAL__N_115FalseExpressionD0Ev -_ZNK12_GLOBAL__N_115FalseExpression10find_firstEmm -_ZN12_GLOBAL__N_115FalseExpression14set_base_tableEPKN5realm5TableE -_ZNK12_GLOBAL__N_115FalseExpression14get_base_tableEv -_ZNK12_GLOBAL__N_115FalseExpression5cloneEPNSt3__16vectorINS1_10unique_ptrIN5realm22QueryNodeHandoverPatchENS1_14default_deleteIS5_EEEENS1_9allocatorIS8_EEEE -_unnamed_cfstring_.18 -_unnamed_cfstring_.20 -_unnamed_cfstring_.22 -_unnamed_cfstring_.24 -OBJC_CLASSLIST_REFERENCES_$_.35 -OBJC_CLASSLIST_REFERENCES_$_.40 -_unnamed_cfstring_.53 -_ZTVN12_GLOBAL__N_114TrueExpressionE -_ZTSN12_GLOBAL__N_114TrueExpressionE -_ZTSN5realm10ExpressionE -_ZTIN5realm10ExpressionE -_ZTIN12_GLOBAL__N_114TrueExpressionE -.str.99 -_unnamed_cfstring_.100 -_unnamed_cfstring_.102 -_unnamed_cfstring_.106 -_unnamed_cfstring_.110 -.str.113 -_unnamed_cfstring_.114 -_unnamed_cfstring_.116 -.str.117 -_unnamed_cfstring_.118 -.str.119 -_unnamed_cfstring_.120 -OBJC_METH_VAR_NAME_.121 -OBJC_SELECTOR_REFERENCES_.122 -OBJC_SELECTOR_REFERENCES_.124 -_unnamed_cfstring_.126 -OBJC_SELECTOR_REFERENCES_.134 -.str.141 -_unnamed_cfstring_.142 -_unnamed_cfstring_.144 -_unnamed_cfstring_.152 -_ZTSN5realm4util17BadOptionalAccessE -_ZTIN5realm4util17BadOptionalAccessE -_unnamed_cfstring_.163 -OBJC_SELECTOR_REFERENCES_.165 -.str.167 -.str.168 -_unnamed_cfstring_.169 -_unnamed_cfstring_.175 -_unnamed_cfstring_.177 -_unnamed_cfstring_.179 -.str.180 -_unnamed_cfstring_.181 -_ZTSN5realm8Subexpr2IxEE -_ZTSN5realm7SubexprE -_ZTIN5realm7SubexprE -_ZTSN5realm9OverloadsIxPKcEE -_ZTIN5realm9OverloadsIxPKcEE -_ZTSN5realm9OverloadsIxiEE -_ZTIN5realm9OverloadsIxiEE -_ZTSN5realm9OverloadsIxfEE -_ZTIN5realm9OverloadsIxfEE -_ZTSN5realm9OverloadsIxdEE -_ZTIN5realm9OverloadsIxdEE -_ZTSN5realm9OverloadsIxxEE -_ZTIN5realm9OverloadsIxxEE -_ZTSN5realm9OverloadsIxNS_10StringDataEEE -_ZTIN5realm9OverloadsIxNS_10StringDataEEE -_ZTSN5realm9OverloadsIxbEE -_ZTIN5realm9OverloadsIxbEE -_ZTSN5realm9OverloadsIxNS_8DateTimeEEE -_ZTIN5realm9OverloadsIxNS_8DateTimeEEE -_ZTSN5realm9OverloadsIxNS_4nullEEE -_ZTIN5realm9OverloadsIxNS_4nullEEE -_ZTIN5realm8Subexpr2IxEE -_ZTSN5realm7ColumnsIxEE -_ZTIN5realm7ColumnsIxEE -_ZTSN5realm7CompareINS_4LessExNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_4LessExNS_7SubexprES2_EE -_ZTSN5realm5ValueIxEE -_ZTSN5realm9ValueBaseE -_ZTIN5realm9ValueBaseE -_ZTIN5realm5ValueIxEE -.str.183 -.str.185 -.str.187 -.str.188 -_ZTSN5realm7CompareINS_9LessEqualExNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_9LessEqualExNS_7SubexprES2_EE -_ZTSN5realm7CompareINS_7GreaterExNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_7GreaterExNS_7SubexprES2_EE -_ZTSN5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_EE -_ZTSN5realm7CompareINS_5EqualExNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_5EqualExNS_7SubexprES2_EE -_ZTSN5realm7CompareINS_8NotEqualExNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_8NotEqualExNS_7SubexprES2_EE -.str.189 -_unnamed_cfstring_.190 -_unnamed_cfstring_.196 -_unnamed_cfstring_.198 -_unnamed_cfstring_.200 -_unnamed_cfstring_.202 -_unnamed_cfstring_.204 -_unnamed_cfstring_.206 -_unnamed_cfstring_.210 -_unnamed_cfstring_.212 -_unnamed_cfstring_.216 -_unnamed_cfstring_.218 -__func__._ZN12_GLOBAL__N_140ValueOfTypeWithCollectionOperationHelperIxLNS_19CollectionOperation4TypeE0EE7convertERN5realm5QueryERKS1_ -.str.223 -_ZTSN5realm7ColumnsINS_4LinkEEE -_ZTSN5realm8Subexpr2INS_4LinkEEE -_ZTSN5realm9OverloadsINS_4LinkEPKcEE -_ZTIN5realm9OverloadsINS_4LinkEPKcEE -_ZTSN5realm9OverloadsINS_4LinkEiEE -_ZTIN5realm9OverloadsINS_4LinkEiEE -_ZTSN5realm9OverloadsINS_4LinkEfEE -_ZTIN5realm9OverloadsINS_4LinkEfEE -_ZTSN5realm9OverloadsINS_4LinkEdEE -_ZTIN5realm9OverloadsINS_4LinkEdEE -_ZTSN5realm9OverloadsINS_4LinkExEE -_ZTIN5realm9OverloadsINS_4LinkExEE -_ZTSN5realm9OverloadsINS_4LinkENS_10StringDataEEE -_ZTIN5realm9OverloadsINS_4LinkENS_10StringDataEEE -_ZTSN5realm9OverloadsINS_4LinkEbEE -_ZTIN5realm9OverloadsINS_4LinkEbEE -_ZTSN5realm9OverloadsINS_4LinkENS_8DateTimeEEE -_ZTIN5realm9OverloadsINS_4LinkENS_8DateTimeEEE -_ZTSN5realm9OverloadsINS_4LinkENS_4nullEEE -_ZTIN5realm9OverloadsINS_4LinkENS_4nullEEE -_ZTIN5realm8Subexpr2INS_4LinkEEE -_ZTIN5realm7ColumnsINS_4LinkEEE -.str.226 -_ZTSN5realm9LinkCountE -_ZTIN5realm9LinkCountE -_ZTSN5realm10CountLinksE -_ZTSN5realm15LinkMapFunctionE -_ZTIN5realm15LinkMapFunctionE -_ZTIN5realm10CountLinksE -.str.228 -.str.230 -_ZTSN5realm10LogicError9ErrorKindE -_ZTIN5realm10LogicError9ErrorKindE -_ZTSN5realm16SequentialGetterINS_6ColumnINS_4util8OptionalIxEEEEEE -_ZTSN5realm20SequentialGetterBaseE -_ZTIN5realm20SequentialGetterBaseE -_ZTIN5realm16SequentialGetterINS_6ColumnINS_4util8OptionalIxEEEEEE -_ZTSN5realm16SequentialGetterINS_6ColumnIxEEEE -_ZTIN5realm16SequentialGetterINS_6ColumnIxEEEE -_ZTSN5realm12ArrayIntNullE -_ZTIN5realm12ArrayIntNullE -_ZTSN5realm14MakeLinkVectorE -_ZTIN5realm14MakeLinkVectorE -.str.232 -.str.234 -_ZTSN5realm10SubColumnsIxEE -_ZTIN5realm10SubColumnsIxEE -_ZTSN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEEE -_ZTIN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEEE -_ZTSN5realm5ValueINS_4nullEEE -_ZTSN5realm8Subexpr2INS_4nullEEE -_ZTSN5realm9OverloadsINS_4nullEPKcEE -_ZTIN5realm9OverloadsINS_4nullEPKcEE -_ZTSN5realm9OverloadsINS_4nullEiEE -_ZTIN5realm9OverloadsINS_4nullEiEE -_ZTSN5realm9OverloadsINS_4nullEfEE -_ZTIN5realm9OverloadsINS_4nullEfEE -_ZTSN5realm9OverloadsINS_4nullEdEE -_ZTIN5realm9OverloadsINS_4nullEdEE -_ZTSN5realm9OverloadsINS_4nullExEE -_ZTIN5realm9OverloadsINS_4nullExEE -_ZTSN5realm9OverloadsINS_4nullENS_10StringDataEEE -_ZTIN5realm9OverloadsINS_4nullENS_10StringDataEEE -_ZTSN5realm9OverloadsINS_4nullEbEE -_ZTIN5realm9OverloadsINS_4nullEbEE -_ZTSN5realm9OverloadsINS_4nullENS_8DateTimeEEE -_ZTIN5realm9OverloadsINS_4nullENS_8DateTimeEEE -_ZTSN5realm9OverloadsINS_4nullES1_EE -_ZTIN5realm9OverloadsINS_4nullES1_EE -_ZTIN5realm8Subexpr2INS_4nullEEE -_ZTIN5realm5ValueINS_4nullEEE -_ZTSN5realm8Subexpr2IfEE -_ZTSN5realm9OverloadsIfPKcEE -_ZTIN5realm9OverloadsIfPKcEE -_ZTSN5realm9OverloadsIfiEE -_ZTIN5realm9OverloadsIfiEE -_ZTSN5realm9OverloadsIffEE -_ZTIN5realm9OverloadsIffEE -_ZTSN5realm9OverloadsIfdEE -_ZTIN5realm9OverloadsIfdEE -_ZTSN5realm9OverloadsIfxEE -_ZTIN5realm9OverloadsIfxEE -_ZTSN5realm9OverloadsIfNS_10StringDataEEE -_ZTIN5realm9OverloadsIfNS_10StringDataEEE -_ZTSN5realm9OverloadsIfbEE -_ZTIN5realm9OverloadsIfbEE -_ZTSN5realm9OverloadsIfNS_8DateTimeEEE -_ZTIN5realm9OverloadsIfNS_8DateTimeEEE -_ZTSN5realm9OverloadsIfNS_4nullEEE -_ZTIN5realm9OverloadsIfNS_4nullEEE -_ZTIN5realm8Subexpr2IfEE -_ZTSN5realm7ColumnsIfEE -_ZTIN5realm7ColumnsIfEE -_ZTSN5realm7CompareINS_4LessEfNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_4LessEfNS_7SubexprES2_EE -_ZTSN5realm5ValueIfEE -_ZTIN5realm5ValueIfEE -_ZTSN5realm7CompareINS_9LessEqualEfNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_9LessEqualEfNS_7SubexprES2_EE -_ZTSN5realm7CompareINS_7GreaterEfNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_7GreaterEfNS_7SubexprES2_EE -_ZTSN5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_EE -_ZTSN5realm7CompareINS_5EqualEfNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_5EqualEfNS_7SubexprES2_EE -_ZTSN5realm7CompareINS_8NotEqualEfNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_8NotEqualEfNS_7SubexprES2_EE -_ZTSN5realm16SequentialGetterINS_6ColumnIfEEEE -_ZTIN5realm16SequentialGetterINS_6ColumnIfEEEE -_ZTSN5realm10BasicArrayIfEE -_ZTIN5realm10BasicArrayIfEE -_ZTSN5realm10SubColumnsIfEE -_ZTIN5realm10SubColumnsIfEE -_ZTSN5realm18SubColumnAggregateIfNS_20aggregate_operations7MinimumIfEEEE -_ZTIN5realm18SubColumnAggregateIfNS_20aggregate_operations7MinimumIfEEEE -_ZTSN5realm8Subexpr2IdEE -_ZTSN5realm9OverloadsIdPKcEE -_ZTIN5realm9OverloadsIdPKcEE -_ZTSN5realm9OverloadsIdiEE -_ZTIN5realm9OverloadsIdiEE -_ZTSN5realm9OverloadsIdfEE -_ZTIN5realm9OverloadsIdfEE -_ZTSN5realm9OverloadsIddEE -_ZTIN5realm9OverloadsIddEE -_ZTSN5realm9OverloadsIdxEE -_ZTIN5realm9OverloadsIdxEE -_ZTSN5realm9OverloadsIdNS_10StringDataEEE -_ZTIN5realm9OverloadsIdNS_10StringDataEEE -_ZTSN5realm9OverloadsIdbEE -_ZTIN5realm9OverloadsIdbEE -_ZTSN5realm9OverloadsIdNS_8DateTimeEEE -_ZTIN5realm9OverloadsIdNS_8DateTimeEEE -_ZTSN5realm9OverloadsIdNS_4nullEEE -_ZTIN5realm9OverloadsIdNS_4nullEEE -_ZTIN5realm8Subexpr2IdEE -_ZTSN5realm7ColumnsIdEE -_ZTIN5realm7ColumnsIdEE -_ZTSN5realm7CompareINS_4LessEdNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_4LessEdNS_7SubexprES2_EE -_ZTSN5realm5ValueIdEE -_ZTIN5realm5ValueIdEE -_ZTSN5realm7CompareINS_9LessEqualEdNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_9LessEqualEdNS_7SubexprES2_EE -_ZTSN5realm7CompareINS_7GreaterEdNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_7GreaterEdNS_7SubexprES2_EE -_ZTSN5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_EE -_ZTSN5realm7CompareINS_5EqualEdNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_5EqualEdNS_7SubexprES2_EE -_ZTSN5realm7CompareINS_8NotEqualEdNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_8NotEqualEdNS_7SubexprES2_EE -_ZTSN5realm16SequentialGetterINS_6ColumnIdEEEE -_ZTIN5realm16SequentialGetterINS_6ColumnIdEEEE -_ZTSN5realm10BasicArrayIdEE -_ZTIN5realm10BasicArrayIdEE -_ZTSN5realm10SubColumnsIdEE -_ZTIN5realm10SubColumnsIdEE -_ZTSN5realm18SubColumnAggregateIdNS_20aggregate_operations7MinimumIdEEEE -_ZTIN5realm18SubColumnAggregateIdNS_20aggregate_operations7MinimumIdEEEE -_ZTSN5realm18SubColumnAggregateIxNS_20aggregate_operations7MaximumIxEEEE -_ZTIN5realm18SubColumnAggregateIxNS_20aggregate_operations7MaximumIxEEEE -_ZTSN5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEEE -_ZTIN5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEEE -_ZTSN5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEEE -_ZTIN5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEEE -_ZTSN5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEEE -_ZTIN5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEEE -_ZTSN5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEEE -_ZTIN5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEEE -_ZTSN5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEEE -_ZTIN5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEEE -_ZTSN5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEEE -_ZTIN5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEEE -_ZTSN5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEEE -_ZTIN5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEEE -_ZTSN5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEEE -_ZTIN5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEEE -.str.240 -_unnamed_cfstring_.241 -.str.244 -_unnamed_cfstring_.245 -.str.246 -_unnamed_cfstring_.247 -.str.248 -_unnamed_cfstring_.249 -.str.250 -_unnamed_cfstring_.251 -.str.252 -_unnamed_cfstring_.253 -.str.254 -_unnamed_cfstring_.255 -.str.256 -_unnamed_cfstring_.257 -.str.258 -_unnamed_cfstring_.259 -.str.260 -_unnamed_cfstring_.261 -.str.262 -_unnamed_cfstring_.263 -_unnamed_cfstring_.265 -.str.266 -_unnamed_cfstring_.267 -.str.268 -_unnamed_cfstring_.269 -_ZTSN5realm8Subexpr2IbEE -_ZTSN5realm9OverloadsIbPKcEE -_ZTIN5realm9OverloadsIbPKcEE -_ZTSN5realm9OverloadsIbiEE -_ZTIN5realm9OverloadsIbiEE -_ZTSN5realm9OverloadsIbfEE -_ZTIN5realm9OverloadsIbfEE -_ZTSN5realm9OverloadsIbdEE -_ZTIN5realm9OverloadsIbdEE -_ZTSN5realm9OverloadsIbxEE -_ZTIN5realm9OverloadsIbxEE -_ZTSN5realm9OverloadsIbNS_10StringDataEEE -_ZTIN5realm9OverloadsIbNS_10StringDataEEE -_ZTSN5realm9OverloadsIbbEE -_ZTIN5realm9OverloadsIbbEE -_ZTSN5realm9OverloadsIbNS_8DateTimeEEE -_ZTIN5realm9OverloadsIbNS_8DateTimeEEE -_ZTSN5realm9OverloadsIbNS_4nullEEE -_ZTIN5realm9OverloadsIbNS_4nullEEE -_ZTIN5realm8Subexpr2IbEE -_ZTSN5realm7ColumnsIbEE -_ZTIN5realm7ColumnsIbEE -_ZTSN5realm7CompareINS_5EqualEbNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_5EqualEbNS_7SubexprES2_EE -_ZTSN5realm5ValueIbEE -_ZTIN5realm5ValueIbEE -_ZTSN5realm7CompareINS_8NotEqualEbNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_8NotEqualEbNS_7SubexprES2_EE -_ZTSN5realm8Subexpr2INS_8DateTimeEEE -_ZTSN5realm9OverloadsINS_8DateTimeEPKcEE -_ZTIN5realm9OverloadsINS_8DateTimeEPKcEE -_ZTSN5realm9OverloadsINS_8DateTimeEiEE -_ZTIN5realm9OverloadsINS_8DateTimeEiEE -_ZTSN5realm9OverloadsINS_8DateTimeEfEE -_ZTIN5realm9OverloadsINS_8DateTimeEfEE -_ZTSN5realm9OverloadsINS_8DateTimeEdEE -_ZTIN5realm9OverloadsINS_8DateTimeEdEE -_ZTSN5realm9OverloadsINS_8DateTimeExEE -_ZTIN5realm9OverloadsINS_8DateTimeExEE -_ZTSN5realm9OverloadsINS_8DateTimeENS_10StringDataEEE -_ZTIN5realm9OverloadsINS_8DateTimeENS_10StringDataEEE -_ZTSN5realm9OverloadsINS_8DateTimeEbEE -_ZTIN5realm9OverloadsINS_8DateTimeEbEE -_ZTSN5realm9OverloadsINS_8DateTimeES1_EE -_ZTIN5realm9OverloadsINS_8DateTimeES1_EE -_ZTSN5realm9OverloadsINS_8DateTimeENS_4nullEEE -_ZTIN5realm9OverloadsINS_8DateTimeENS_4nullEEE -_ZTIN5realm8Subexpr2INS_8DateTimeEEE -_ZTSN5realm7ColumnsINS_8DateTimeEEE -_ZTIN5realm7ColumnsINS_8DateTimeEEE -_ZTSN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_EE -_ZTSN5realm5ValueINS_8DateTimeEEE -_ZTIN5realm5ValueINS_8DateTimeEEE -_ZTSN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_EE -_ZTSN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_EE -_ZTSN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_EE -_ZTSN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_EE -_ZTSN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_EE -.str.270 -_unnamed_cfstring_.271 -.str.272 -_unnamed_cfstring_.273 -.str.274 -_unnamed_cfstring_.275 -_ZTSN5realm8Subexpr2INS_10StringDataEEE -_ZTSN5realm9OverloadsINS_10StringDataEPKcEE -_ZTIN5realm9OverloadsINS_10StringDataEPKcEE -_ZTSN5realm9OverloadsINS_10StringDataEiEE -_ZTIN5realm9OverloadsINS_10StringDataEiEE -_ZTSN5realm9OverloadsINS_10StringDataEfEE -_ZTIN5realm9OverloadsINS_10StringDataEfEE -_ZTSN5realm9OverloadsINS_10StringDataEdEE -_ZTIN5realm9OverloadsINS_10StringDataEdEE -_ZTSN5realm9OverloadsINS_10StringDataExEE -_ZTIN5realm9OverloadsINS_10StringDataExEE -_ZTSN5realm9OverloadsINS_10StringDataES1_EE -_ZTIN5realm9OverloadsINS_10StringDataES1_EE -_ZTSN5realm9OverloadsINS_10StringDataEbEE -_ZTIN5realm9OverloadsINS_10StringDataEbEE -_ZTSN5realm9OverloadsINS_10StringDataENS_8DateTimeEEE -_ZTIN5realm9OverloadsINS_10StringDataENS_8DateTimeEEE -_ZTSN5realm9OverloadsINS_10StringDataENS_4nullEEE -_ZTIN5realm9OverloadsINS_10StringDataENS_4nullEEE -_ZTIN5realm8Subexpr2INS_10StringDataEEE -_ZTSN5realm7ColumnsINS_10StringDataEEE -_ZTIN5realm7ColumnsINS_10StringDataEEE -_ZTSN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_EE -_ZTSN5realm5ValueINS_10StringDataEEE -_ZTIN5realm5ValueINS_10StringDataEEE -_ZTSN5realm19ConstantStringValueE -_ZTIN5realm19ConstantStringValueE -_ZTSN5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_EE -_ZTSN5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_EE -_ZTSN5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_EE -_ZTSN5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_EE -_ZTSN5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_EE -_ZTSN5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_EE -_ZTSN5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_EE -_ZTSN5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_EE -_ZTSN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_EE -_ZTIN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_EE -.str.276 -.str.277 -_unnamed_cfstring_.278 -.str.279 -_unnamed_cfstring_.280 -.str.283 -_unnamed_cfstring_.284 -.str.285 -_ZTSN5realm16UnaryLinkCompareILb0EEE -_ZTIN5realm16UnaryLinkCompareILb0EEE -_ZTSN5realm13FindNullLinksE -_ZTIN5realm13FindNullLinksE -_unnamed_cfstring_.287 -.str.288 -_unnamed_cfstring_.289 -.str.290 -_unnamed_cfstring_.291 -OBJC_CLASSLIST_REFERENCES_$_.292 -.str.293 -_unnamed_cfstring_.294 -OBJC_METH_VAR_NAME_.295 -OBJC_SELECTOR_REFERENCES_.296 -OBJC_METH_VAR_NAME_.297 -OBJC_SELECTOR_REFERENCES_.298 -OBJC_METH_VAR_NAME_.299 -OBJC_SELECTOR_REFERENCES_.300 -_ZTSN5realm5ValueIiEE -_ZTSN5realm8Subexpr2IiEE -_ZTSN5realm9OverloadsIiPKcEE -_ZTIN5realm9OverloadsIiPKcEE -_ZTSN5realm9OverloadsIiiEE -_ZTIN5realm9OverloadsIiiEE -_ZTSN5realm9OverloadsIifEE -_ZTIN5realm9OverloadsIifEE -_ZTSN5realm9OverloadsIidEE -_ZTIN5realm9OverloadsIidEE -_ZTSN5realm9OverloadsIixEE -_ZTIN5realm9OverloadsIixEE -_ZTSN5realm9OverloadsIiNS_10StringDataEEE -_ZTIN5realm9OverloadsIiNS_10StringDataEEE -_ZTSN5realm9OverloadsIibEE -_ZTIN5realm9OverloadsIibEE -_ZTSN5realm9OverloadsIiNS_8DateTimeEEE -_ZTIN5realm9OverloadsIiNS_8DateTimeEEE -_ZTSN5realm9OverloadsIiNS_4nullEEE -_ZTIN5realm9OverloadsIiNS_4nullEEE -_ZTIN5realm8Subexpr2IiEE -_ZTIN5realm5ValueIiEE -OBJC_METH_VAR_NAME_.301 -OBJC_SELECTOR_REFERENCES_.302 -.str.303 -_unnamed_cfstring_.304 -.str.305 -_unnamed_cfstring_.306 -.str.307 -_unnamed_cfstring_.308 -OBJC_METH_VAR_NAME_.309 -OBJC_SELECTOR_REFERENCES_.310 -.str.311 -_unnamed_cfstring_.312 -OBJC_CLASSLIST_REFERENCES_$_.313 -OBJC_CLASSLIST_REFERENCES_$_.316 -.str.317 -_unnamed_cfstring_.318 -OBJC_CLASSLIST_REFERENCES_$_.319 -OBJC_CLASSLIST_REFERENCES_$_.320 -OBJC_METH_VAR_NAME_.321 -OBJC_SELECTOR_REFERENCES_.322 -OBJC_METH_VAR_NAME_.327 -OBJC_SELECTOR_REFERENCES_.328 -OBJC_METH_VAR_NAME_.329 -OBJC_SELECTOR_REFERENCES_.330 -.str.331 -_unnamed_cfstring_.332 -.str.333 -_unnamed_cfstring_.334 -_ZTSN5realm7CompareINS_5EqualEiNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_5EqualEiNS_7SubexprES2_EE -_ZTSN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_EE -_ZTIN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_EE -.str.335 -_unnamed_cfstring_.336 -.str.337 -_unnamed_cfstring_.338 -OBJC_METH_VAR_NAME_.339 -OBJC_SELECTOR_REFERENCES_.340 -.str.341 -_unnamed_cfstring_.342 -OBJC_METH_VAR_NAME_.343 -OBJC_SELECTOR_REFERENCES_.344 -.str.345 -_unnamed_cfstring_.346 -OBJC_METH_VAR_NAME_.347 -OBJC_SELECTOR_REFERENCES_.348 -.str.349 -_unnamed_cfstring_.350 -.str.351 -_unnamed_cfstring_.352 -.str.353 -_unnamed_cfstring_.354 -OBJC_METH_VAR_NAME_.355 -OBJC_SELECTOR_REFERENCES_.356 -OBJC_METH_VAR_NAME_.357 -OBJC_SELECTOR_REFERENCES_.358 -OBJC_METH_VAR_NAME_.359 -OBJC_SELECTOR_REFERENCES_.360 -OBJC_METH_VAR_NAME_.361 -OBJC_SELECTOR_REFERENCES_.362 -OBJC_METH_VAR_NAME_.363 -OBJC_SELECTOR_REFERENCES_.364 -OBJC_CLASSLIST_REFERENCES_$_.365 -OBJC_METH_VAR_NAME_.366 -OBJC_SELECTOR_REFERENCES_.367 -OBJC_METH_VAR_NAME_.368 -OBJC_SELECTOR_REFERENCES_.369 -OBJC_METH_VAR_NAME_.370 -OBJC_SELECTOR_REFERENCES_.371 -OBJC_METH_VAR_NAME_.372 -OBJC_SELECTOR_REFERENCES_.373 -.str.374 -_ZTSN5realm13SubQueryCountE -_ZTIN5realm13SubQueryCountE -_ZTSN5realm26SubQueryCountHandoverPatchE -_ZTSN5realm22QueryNodeHandoverPatchE -_ZTIN5realm22QueryNodeHandoverPatchE -_ZTIN5realm26SubQueryCountHandoverPatchE -.str.375 -.str.376 -_ZTVN12_GLOBAL__N_115FalseExpressionE -_ZTSN12_GLOBAL__N_115FalseExpressionE -_ZTIN12_GLOBAL__N_115FalseExpressionE -.str.377 -_unnamed_cfstring_.378 -.str.379 -_unnamed_cfstring_.380 -.str.381 -_unnamed_cfstring_.382 -.str.383 -_unnamed_cfstring_.384 -.str.385 -_unnamed_cfstring_.386 -.memset_pattern -.memset_pattern.387 -__bit_reference -__make_ref -__align_it -__swap_allocator > -__copy_unaligned >, false> -__copy_aligned >, false> -copy >, false> -__distance >, false, 0> > -distance >, false, 0> > -__construct_at_end >, false, 0> > -allocator -allocator -__push_back_slow_path -construct -__construct -RLMValidatedPropertyForSort -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMQueryUtil.mm -FalseExpression -clone -get_base_table -set_base_table -~FalseExpression -~SubQuery -~SubQueryCount -core/include/realm/query_expression.hpp -accumulate, int, (lambda at core/include/realm/query_expression.hpp:2244:71)> -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/numeric -evaluate -apply_handover_patch -SubQueryCount -forward -make_subexpr -move > *&> -swap > *> -move > &> -move_if_noexcept > > -forward > > -forward > -construct >, std::__1::unique_ptr > > -__construct >, std::__1::unique_ptr > > -__construct_backward > *> -forward > > &> -__emplace_back_slow_path -forward -move -construct >, realm::SubQueryCountHandoverPatch *> -__construct >, realm::SubQueryCountHandoverPatch *> -emplace_back -forward -move -~SubQueryCountHandoverPatch -~QueryNodeHandoverPatch -QueryNodeHandoverPatch -SubQueryCountHandoverPatch -move &> -move &> -LinkMap -move -count -operator== -operator== -link_map -SubQuery -column -resolveWithSubquery -add_numeric_constraint_to_query -is_self_value_for_key_path_function_expression -simplify_self_value_for_key_path_function_expression -update_query_with_subquery_count_expression -update_query_with_function_subquery_expression -update_query_with_function_expression -add_link_constraint_to_query -add_binary_constraint_to_query -move &> -add_string_constraint_to_query -add_numeric_constraint_to_query > -add_numeric_constraint_to_query > -add_numeric_constraint_to_query > -create -operator!= -create -operator== -create -operator>= -create -operator> -create -operator<= -only_numeric -create -operator< -add_numeric_constraint_to_query > -Compare -operator() -core/include/realm/query_conditions.hpp -compare -~Compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -operator!= -compare -Value -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -operator== -add_bool_constraint_to_query > -do_add_constraint_to_query -do_add_constraint_to_query -add_constraint_to_query -BasicRow -add_link_constraint_to_query -add_binary_constraint_to_query -convert -value_of_type_for_query -add_string_constraint_to_query -add_numeric_constraint_to_query, long long> -add_numeric_constraint_to_query, float> -add_numeric_constraint_to_query, double> -convert -value_of_type_for_query -create -create -create -operator>= -create -operator> -create -operator<= -forward -make_subexpr, realm::DateTime &> -unwrap -only_numeric -create -add_numeric_constraint_to_query, realm::DateTime> -convert -value_of_type_for_query -create -make_subexpr, bool &> -create -add_bool_constraint_to_query, bool> -do_add_constraint_to_query<(anonymous namespace)::ColumnReference, id> -is_nsnull -add_constraint_to_query<(anonymous namespace)::ColumnReference, id> -validate_property_value -process_or_group<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMQueryUtil.mm:935:40)> -between_datetime -RLMDynamicCast -value_from_constant_expression_or_value -validate_and_extract_between_range -add_between_constraint_to_query -add_numeric_constraint_to_query > > -operator!= -operator== -operator>= -operator> -operator<= -only_numeric -create -operator< -add_numeric_constraint_to_query > > -add_numeric_constraint_to_query > > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Average, id, (anonymous namespace)::CollectionOperation> -add_numeric_constraint_to_query > > -add_numeric_constraint_to_query > > -add_numeric_constraint_to_query > > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Sum, id, (anonymous namespace)::CollectionOperation> -add_numeric_constraint_to_query > > -add_numeric_constraint_to_query > > -add_numeric_constraint_to_query > > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Maximum, id, (anonymous namespace)::CollectionOperation> -add_numeric_constraint_to_query > > -operator!= -operator== -operator>= -operator> -operator<= -~Value -NullableVector -Subexpr2 -forward &> -make_subexpr, const realm::Value &> -import -export_null -export2 -export_BinaryData -export2 -export_StringData -export2 -export_double -export2 -export_int64_t -export2 -export_float -export2 -export_int -export2 -export_bool -~Subexpr2 -~NullableVector -forward -make_subexpr, int &> -unwrap -only_numeric -create -operator< -add_numeric_constraint_to_query > > -add_numeric_constraint_to_query > > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Minimum, id, (anonymous namespace)::CollectionOperation> -operator!= -operator== -operator>= -operator> -operator<= -operator< -add_numeric_constraint_to_query -add_collection_operation_constraint_to_query -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, double> -value_of_type_for_query_with_collection_operation -create -create -create -create -create -only_numeric -create -add_numeric_constraint_to_query >, float> -value_of_type_for_query_with_collection_operation -create -create -create -create -create -only_numeric -create -add_numeric_constraint_to_query >, long long> -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Average, (anonymous namespace)::CollectionOperation, id> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, double> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, float> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, long long> -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Sum, (anonymous namespace)::CollectionOperation, id> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, double> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, float> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, long long> -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Maximum, (anonymous namespace)::CollectionOperation, id> -convert -value_of_type_for_query -value_of_type_for_query_with_collection_operation -create -create -create -create -create -forward -make_subexpr, double &> -unwrap -only_numeric -create -add_numeric_constraint_to_query >, double> -convert -value_of_type_for_query -value_of_type_for_query_with_collection_operation -create -create -create -create -create -forward -make_subexpr, float &> -unwrap -only_numeric -create -add_numeric_constraint_to_query >, float> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, long long> -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Minimum, (anonymous namespace)::CollectionOperation, id> -forward<__strong id &> -convert -value_of_type_for_query -value_of_type_for_query_with_collection_operation -create -create -create -create -create -make_subexpr, long long &> -unwrap -only_numeric -create -add_numeric_constraint_to_query -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation, id> -property -validate_comparison -update_query_with_collection_operator_expression -update_query_with_value_expression -string_compare -not_equal -string_compare -equal -string_compare -contains -string_compare -ends_with -string_compare -add_string_constraint_to_query > -add_numeric_constraint_to_query, realm::Columns > -add_numeric_constraint_to_query, realm::Columns > -add_numeric_constraint_to_query, realm::Columns > -create2 -create2 -create2 -create2 -create2 -clone_subexpr -create2 -add_numeric_constraint_to_query, realm::Columns > -add_bool_constraint_to_query, realm::Columns > -do_add_constraint_to_query<(anonymous namespace)::ColumnReference, (anonymous namespace)::ColumnReference> -UnaryLinkCompare -consume -FindNullLinks -~UnaryLinkCompare -forward -make_expression, realm::LinkMap &> -has_links -add_binary_constraint_to_query -~Columns -make_value_for_link -Columns -forward &> -make_subexpr, const realm::Columns &> -inspect_all, std::__1::allocator >, realm::DataType> -inspect_value, std::__1::allocator >, realm::DataType> -inspect_all, std::__1::allocator >, realm::DataType, realm::DataType> -terminate -column -resolve -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -operator() -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -string_compare -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -string_compare -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -__search &, const char *, const char *> -search > -search -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -string_compare -suffix -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -string_compare -prefix -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -~ConstantStringValue -ConstantStringValue -~OptionalStorage -~Optional -value -constexpr_move &> -some > -some, std::__1::basic_string > -make_optional > -forward -make_subexpr -compare -__unwrap_iter -__copy -copy -forward &> -make_subexpr, const realm::Value &> -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -only_string -links_exist -create -string_compare -add_string_constraint_to_query -create -create -create -create -create -only_numeric -create -add_numeric_constraint_to_query, realm::null> -create -create -create -create -create -only_numeric -create -add_numeric_constraint_to_query, realm::null> -create -create -create -create -create -only_numeric -create -add_numeric_constraint_to_query, realm::null> -evaluate_internal > -evaluate_internal > > -forward &> -make_subexpr, const realm::Columns &> -column -resolve -operator() -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -compare -__unwrap_iter -__copy -copy -forward &> -make_subexpr, const realm::Value &> -dealloc -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -unwrap -only_numeric -create -add_numeric_constraint_to_query, realm::null> -forward &> -make_subexpr, const realm::Columns &> -column -resolve -operator() -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -forward -make_subexpr, realm::null &> -forward &> -make_subexpr, const realm::Value &> -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -add_bool_constraint_to_query, realm::null> -do_add_constraint_to_query<(anonymous namespace)::ColumnReference, realm::null> -is_nsnull<(anonymous namespace)::ColumnReference> -add_constraint_to_query<(anonymous namespace)::ColumnReference, (anonymous namespace)::ColumnReference> -type -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Average, (anonymous namespace)::ColumnReference, (anonymous namespace)::CollectionOperation> -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Sum, (anonymous namespace)::ColumnReference, (anonymous namespace)::CollectionOperation> -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Maximum, (anonymous namespace)::ColumnReference, (anonymous namespace)::CollectionOperation> -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Minimum, (anonymous namespace)::ColumnReference, (anonymous namespace)::CollectionOperation> -add_numeric_constraint_to_query, realm::LinkCount> -add_collection_operation_constraint_to_query<(anonymous namespace)::ColumnReference, (anonymous namespace)::CollectionOperation> -~CollectionOperation -~ColumnReference -ColumnReference -move<(anonymous namespace)::ColumnReference &> -CollectionOperation -~SubColumnAggregate -value_of_type_for_query_with_collection_operation -result -apply -accumulate -initial_value -BaseAggregateOperation -Average -SubColumnAggregate -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -value_of_type_for_query_with_collection_operation -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -value_of_type_for_query_with_collection_operation -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Average, (anonymous namespace)::CollectionOperation, (anonymous namespace)::ColumnReference> -value_of_type_for_query_with_collection_operation -Sum -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -value_of_type_for_query_with_collection_operation -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -value_of_type_for_query_with_collection_operation -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Sum, (anonymous namespace)::CollectionOperation, (anonymous namespace)::ColumnReference> -value_of_type_for_query_with_collection_operation -max > -max -Maximum -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -value_of_type_for_query_with_collection_operation -max > -max -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -value_of_type_for_query_with_collection_operation -max > -max -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Maximum, (anonymous namespace)::CollectionOperation, (anonymous namespace)::ColumnReference> -column_type -column -resolve -value_of_type_for_query_with_collection_operation -~SubColumns -min > -min -Minimum -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -SubColumns -forward &> -make_subexpr, const realm::SubColumns &> -core/include/realm/array_basic_tpl.hpp -get_next -core/include/realm/impl/sequential_getter.hpp -cache_next -make_value_for_link -evaluate_internal > -core/include/realm/array_basic.hpp -calc_item_count -calc_byte_len -~BasicArray -BasicArray -~SequentialGetter -operator() > -forward *> -SequentialGetter -forward &> -make_subexpr, const realm::Columns &> -value_of_type_for_query_with_collection_operation -operator() -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -__unwrap_iter -__copy -copy -forward &> -make_subexpr, const realm::Value &> -is_null_float -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -add_numeric_constraint_to_query >, realm::Columns > -column -resolve -value_of_type_for_query_with_collection_operation -min > -min -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -forward &> -make_subexpr, const realm::SubColumns &> -make_value_for_link -evaluate_internal > -operator() > -forward *> -forward &> -make_subexpr, const realm::Columns &> -value_of_type_for_query_with_collection_operation -operator() -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -__unwrap_iter -__copy -copy -forward &> -make_subexpr, const realm::Value &> -is_null_float -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -add_numeric_constraint_to_query >, realm::Columns > -value_of_type_for_query_with_collection_operation -__unwrap_iter -__copy -copy -forward &> -make_subexpr, const realm::Value &> -min > -min -sort > -sort -sort -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -column_index -forward &> -make_subexpr, const realm::SubColumns &> -column -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Minimum, (anonymous namespace)::CollectionOperation, (anonymous namespace)::ColumnReference> -~LinkCount -forward<(anonymous namespace)::ColumnReference &> -get_chunk -forward -OptionalStorage -some -some -null_value -operator!= -find, realm::DataType> -operator== -only_unary_links -make_value_for_link -MakeLinkVector -get_links -~ArrayIntNull -ArrayIntNull -operator() -operator() -forward -~SequentialGetterBase -SequentialGetterBase -operator== > -forward &> -make_subexpr, const realm::Columns &> -target_table -forward -resolve -value_of_type_for_query_with_collection_operation -~LinkMap -BasicRowExpr -bind_ptr -core/include/realm/column_linklist.hpp -map_links -LinkMapFunction -CountLinks -count_links -LinkCount -forward -make_subexpr -index -base_table -__construct_range_forward -__construct_at_end -forward > -__construct_range_forward -__construct_at_end -forward > -forward &> -make_subexpr, const realm::Columns &> -move -swap -__construct_backward -forward &> -__push_back_slow_path -move -forward -construct -__construct -move -swap -__construct_backward -forward &> -__push_back_slow_path -move -forward -construct -__construct -get_real_column_type -operator== -operator!= -__to_raw_pointer -__destroy -destroy -__to_raw_pointer -__destroy -destroy -forward -forward -move -swap -__construct_backward -forward &> -__push_back_slow_path -construct -__construct -link -operator== -operator!= -table_for_query -resolve -link_column -value_of_type_for_query_with_collection_operation -operatorName -operator() -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -minimum -move -__unwrap_iter -__copy -copy -Subexpr -ValueBase -forward &> -make_subexpr, const realm::Value &> -type_punning -get_null_float -type_punning -get_null_float -replace -find -~Subexpr -move > &> -forward -forward > -forward > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -add_numeric_constraint_to_query > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation, (anonymous namespace)::ColumnReference> -column_reference_from_key_path -core/include/realm/column_fwd.hpp -name_for_type -~BadOptionalAccess -BadOptionalAccess -type_for_name -move &> -forward<(anonymous namespace)::ColumnReference> -operator=<(anonymous namespace)::ColumnReference, void> -get_collection_operation_name_from_key_path -collection_operation_from_key_path -key_path_contains_collection_operator -update_query_with_column_expression -RLMPredicateException -process_or_group<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMQueryUtil.mm:1085:61)> -forward -move -Expression -TrueExpression -~TrueExpression -~Expression -update_query_with_predicate -RLMPrecondition -RLMSortOrderFromDescriptors -RLMUpdateQueryWithPredicate -RLMValidatedProperty --[RLMRealmNotificationToken stop] --[RLMRealmNotificationToken dealloc] --[RLMRealmNotificationToken realm] --[RLMRealmNotificationToken setRealm:] --[RLMRealmNotificationToken block] --[RLMRealmNotificationToken setBlock:] --[RLMRealmNotificationToken .cxx_destruct] -+[RLMRealm isCoreDebug] -+[RLMRealm initialize] --[RLMRealm isEmpty] --[RLMRealm verifyThread] --[RLMRealm inWriteTransaction] --[RLMRealm path] --[RLMRealm group] --[RLMRealm isReadOnly] --[RLMRealm autorefresh] --[RLMRealm setAutorefresh:] -+[RLMRealm writeableTemporaryPathForFile:] -+[RLMRealm defaultRealm] -+[RLMRealm realmWithPath:] -+[RLMRealm realmWithPath:key:readOnly:inMemory:dynamic:schema:error:] -+[RLMRealm realmWithSharedRealm:schema:] -_ZL25RLMRealmSetSchemaAndAlignP8RLMRealmP9RLMSchema -_ZL14RLMAutoreleaseP11objc_object -_ZN5realm4util4File16PermissionDeniedD1Ev -+[RLMRealm openSharedRealm:error:] -+[RLMRealm realmWithConfiguration:error:] -+[RLMRealm resetRealmState] --[RLMRealm verifyNotificationsAreSupported] --[RLMRealm addNotificationBlock:] --[RLMRealm removeNotification:] --[RLMRealm sendNotifications:] --[RLMRealm configuration] --[RLMRealm beginWriteTransaction] --[RLMRealm commitWriteTransaction] --[RLMRealm commitWriteTransaction:] --[RLMRealm transactionWithBlock:] --[RLMRealm transactionWithBlock:error:] --[RLMRealm cancelWriteTransaction] --[RLMRealm invalidate] --[RLMRealm compact] --[RLMRealm dealloc] --[RLMRealm refresh] --[RLMRealm addObject:] --[RLMRealm addObjects:] --[RLMRealm addOrUpdateObject:] --[RLMRealm addOrUpdateObjectsFromArray:] --[RLMRealm deleteObject:] --[RLMRealm deleteObjects:] --[RLMRealm deleteAllObjects] --[RLMRealm allObjects:] --[RLMRealm objects:where:] --[RLMRealm objects:where:args:] --[RLMRealm objects:withPredicate:] --[RLMRealm objectWithClassName:forPrimaryKey:] -+[RLMRealm schemaVersionAtPath:error:] -+[RLMRealm schemaVersionAtPath:encryptionKey:error:] -+[RLMRealm migrateRealm:] --[RLMRealm createObject:withValue:] --[RLMRealm writeCopyToPath:key:error:] --[RLMRealm writeCopyToPath:error:] --[RLMRealm writeCopyToPath:encryptionKey:error:] --[RLMRealm registerEnumerator:] --[RLMRealm unregisterEnumerator:] --[RLMRealm detachAllEnumerators] --[RLMRealm schema] --[RLMRealm setSchema:] --[RLMRealm dynamic] --[RLMRealm .cxx_destruct] --[RLMRealm .cxx_construct] -_ZN5realm4util4File16PermissionDeniedD0Ev -_ZN5realm4util4File11AccessErrorD1Ev -_ZN5realm4util4File11AccessErrorD0Ev -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EED1Ev -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EED0Ev -_ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE7__cloneEv -_ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE7__cloneEPNS0_6__baseIS9_EE -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE7destroyEv -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE18destroy_deallocateEv -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEclEOS8_SB_ -_ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE6targetERKSt9type_info -_ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE11target_typeEv -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EED1Ev -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EED0Ev -_ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE7__cloneEv -_ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE7__cloneEPNS0_6__baseIS9_EE -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE7destroyEv -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE18destroy_deallocateEv -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEclEOS8_SB_ -_ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE6targetERKSt9type_info -_ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE11target_typeEv -OBJC_IVAR_$_RLMRealmNotificationToken._realm -OBJC_IVAR_$_RLMRealmNotificationToken._block -l_OBJC_METACLASS_RO_$_RLMRealmNotificationToken -OBJC_CLASS_NAME_.3 -OBJC_METH_VAR_TYPE_.7 -OBJC_METH_VAR_TYPE_.9 -OBJC_METH_VAR_TYPE_.11 -l_OBJC_$_INSTANCE_METHODS_RLMRealmNotificationToken -l_OBJC_$_INSTANCE_VARIABLES_RLMRealmNotificationToken -OBJC_PROP_NAME_ATTR_.18 -OBJC_PROP_NAME_ATTR_.19 -OBJC_PROP_NAME_ATTR_.20 -l_OBJC_$_PROP_LIST_RLMRealmNotificationToken -l_OBJC_CLASS_RO_$_RLMRealmNotificationToken -_ZZ22+[RLMRealm initialize]E11initialized -OBJC_METH_VAR_NAME_.55 -OBJC_SELECTOR_REFERENCES_.56 -OBJC_IVAR_$_RLMRealm._dynamic -_ZZ41+[RLMRealm realmWithConfiguration:error:]E8initLock -_ZGVZ41+[RLMRealm realmWithConfiguration:error:]E8initLock -OBJC_CLASSLIST_REFERENCES_$_.83 -OBJC_SELECTOR_REFERENCES_.85 -OBJC_METH_VAR_NAME_.94 -OBJC_SELECTOR_REFERENCES_.95 -.str.110 -_unnamed_cfstring_.111 -OBJC_IVAR_$_RLMRealm._notificationHandlers -OBJC_CLASSLIST_REFERENCES_$_.118 -OBJC_IVAR_$_RLMRealm._schema -_ZTSN5realm4util4File11AccessErrorE -_ZTIN5realm4util4File11AccessErrorE -.str.136 -_unnamed_cfstring_.137 -OBJC_SELECTOR_REFERENCES_.139 -_unnamed_cfstring_.145 -OBJC_CLASSLIST_SUP_REFS_$_.146 -OBJC_CLASSLIST_REFERENCES_$_.147 -_unnamed_cfstring_.153 -_unnamed_cfstring_.157 -OBJC_METH_VAR_NAME_.163 -OBJC_SELECTOR_REFERENCES_.164 -_unnamed_cfstring_.168 -OBJC_CLASS_NAME_.170 -OBJC_METH_VAR_NAME_.171 -OBJC_SELECTOR_REFERENCES_.172 -OBJC_SELECTOR_REFERENCES_.184 -OBJC_CLASSLIST_REFERENCES_$_.185 -OBJC_CLASSLIST_REFERENCES_$_.188 -OBJC_METH_VAR_NAME_.191 -OBJC_SELECTOR_REFERENCES_.192 -_ZTSN5realm4util4File16PermissionDeniedE -_ZTIN5realm4util4File16PermissionDeniedE -_ZTSN5realm4util4File6ExistsE -_ZTIN5realm4util4File6ExistsE -_ZTSN5realm4util4File8NotFoundE -_ZTIN5realm4util4File8NotFoundE -OBJC_SELECTOR_REFERENCES_.196 -OBJC_SELECTOR_REFERENCES_.198 -OBJC_IVAR_$_RLMRealm._collectionEnumerators -OBJC_SELECTOR_REFERENCES_.202 -OBJC_CLASS_NAME_.203 -OBJC_METH_VAR_TYPE_.205 -OBJC_METH_VAR_NAME_.207 -OBJC_METH_VAR_TYPE_.208 -OBJC_METH_VAR_NAME_.209 -OBJC_METH_VAR_TYPE_.215 -OBJC_METH_VAR_TYPE_.216 -OBJC_METH_VAR_NAME_.218 -OBJC_METH_VAR_TYPE_.219 -l_OBJC_$_CLASS_METHODS_RLMRealm -l_OBJC_METACLASS_RO_$_RLMRealm -OBJC_METH_VAR_TYPE_.226 -OBJC_METH_VAR_NAME_.234 -OBJC_METH_VAR_NAME_.242 -OBJC_METH_VAR_TYPE_.248 -OBJC_METH_VAR_NAME_.250 -OBJC_METH_VAR_TYPE_.254 -l_OBJC_$_INSTANCE_METHODS_RLMRealm -OBJC_METH_VAR_NAME_.263 -OBJC_METH_VAR_TYPE_.264 -OBJC_METH_VAR_NAME_.265 -OBJC_METH_VAR_TYPE_.266 -l_OBJC_$_INSTANCE_VARIABLES_RLMRealm -OBJC_PROP_NAME_ATTR_.267 -OBJC_PROP_NAME_ATTR_.268 -OBJC_PROP_NAME_ATTR_.269 -OBJC_PROP_NAME_ATTR_.270 -OBJC_PROP_NAME_ATTR_.271 -OBJC_PROP_NAME_ATTR_.272 -OBJC_PROP_NAME_ATTR_.273 -OBJC_PROP_NAME_ATTR_.274 -OBJC_PROP_NAME_ATTR_.275 -OBJC_PROP_NAME_ATTR_.276 -OBJC_PROP_NAME_ATTR_.277 -OBJC_PROP_NAME_ATTR_.278 -l_OBJC_$_PROP_LIST_RLMRealm -l_OBJC_CLASS_RO_$_RLMRealm -_ZZL31shouldForciblyDisableEncryptionvE17disableEncryption -_ZGVZL31shouldForciblyDisableEncryptionvE17disableEncryption -.str.284 -OBJC_METH_VAR_NAME_.285 -OBJC_SELECTOR_REFERENCES_.286 -OBJC_METH_VAR_NAME_.287 -OBJC_SELECTOR_REFERENCES_.288 -OBJC_METH_VAR_NAME_.289 -OBJC_SELECTOR_REFERENCES_.290 -OBJC_METH_VAR_NAME_.291 -OBJC_SELECTOR_REFERENCES_.292 -OBJC_SELECTOR_REFERENCES_.293 -.str.294 -_unnamed_cfstring_.295 -_ZTVNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE -_ZTSNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE -_ZTSNSt3__110__function6__baseIFvNS_10shared_ptrIN5realm5RealmEEES5_EEE -_ZTINSt3__110__function6__baseIFvNS_10shared_ptrIN5realm5RealmEEES5_EEE -_ZTINSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE -OBJC_CLASSLIST_REFERENCES_$_.297 -OBJC_METH_VAR_NAME_.298 -OBJC_SELECTOR_REFERENCES_.299 -OBJC_METH_VAR_NAME_.300 -OBJC_SELECTOR_REFERENCES_.301 -_ZTSZ41+[RLMRealm realmWithConfiguration:error:]E3$_0 -_ZTIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0 -_ZTVNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE -_ZTSNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE -_ZTINSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE -_ZTSZ41+[RLMRealm realmWithConfiguration:error:]E3$_1 -_ZTIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1 -RLMDynamicCast -forward > -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &> -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &, std::__1::shared_ptr, std::__1::shared_ptr > -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &, std::__1::shared_ptr, std::__1::shared_ptr > -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &> -forward &> -forward_as_tuple &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &&> -forward &&> -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &> -forward -forward_as_tuple -allocator, void (std::__1::shared_ptr, std::__1::shared_ptr)> > -forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > > -forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> *> -move, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&, 0> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37), false> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -operator=<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -move, std::__1::shared_ptr)> *&> -swap, std::__1::shared_ptr)> *> -forward > -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &> -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &, std::__1::shared_ptr, std::__1::shared_ptr > -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &, std::__1::shared_ptr, std::__1::shared_ptr > -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &> -forward &> -forward_as_tuple &> -_ZZ41+[RLMRealm realmWithConfiguration:error:]EN3$_0C2ERKS_ -_ZZ41+[RLMRealm realmWithConfiguration:error:]EN3$_0C1ERKS_ -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &&> -forward &&> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &> -forward -forward_as_tuple -allocator, void (std::__1::shared_ptr, std::__1::shared_ptr)> > -forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > > -forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> *> -move, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&, 0> -move &> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&> -forward_as_tuple<> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37), false> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -_ZZ41+[RLMRealm realmWithConfiguration:error:]EN3$_0C2EOS_ -_ZZ41+[RLMRealm realmWithConfiguration:error:]EN3$_0C1EOS_ -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -operator=<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -CheckReadWrite -is_in_read_transaction -~PermissionDenied -core/include/realm/util/file.hpp -~AccessError -AccessError -PermissionDenied -path -kind -RLMAutorelease -RLMCopyColumnMapping -RLMRealmSetSchemaAndAlign -set_auto_refresh -auto_refresh -shouldForciblyDisableEncryption --[RLMRealm .cxx_construct] --[RLMRealm .cxx_destruct] --[RLMRealm dynamic] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm_Private.h --[RLMRealm setSchema:] --[RLMRealm schema] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.h --[RLMRealm detachAllEnumerators] --[RLMRealm unregisterEnumerator:] --[RLMRealm registerEnumerator:] --[RLMRealm writeCopyToPath:encryptionKey:error:] --[RLMRealm writeCopyToPath:error:] --[RLMRealm writeCopyToPath:key:error:] --[RLMRealm createObject:withValue:] -+[RLMRealm migrateRealm:] -+[RLMRealm schemaVersionAtPath:encryptionKey:error:] -+[RLMRealm schemaVersionAtPath:error:] --[RLMRealm objectWithClassName:forPrimaryKey:] --[RLMRealm objects:withPredicate:] --[RLMRealm objects:where:args:] --[RLMRealm objects:where:] --[RLMRealm allObjects:] --[RLMRealm deleteAllObjects] --[RLMRealm deleteObjects:] --[RLMRealm deleteObject:] --[RLMRealm addOrUpdateObjectsFromArray:] --[RLMRealm addOrUpdateObject:] --[RLMRealm addObjects:] --[RLMRealm addObject:] --[RLMRealm refresh] --[RLMRealm dealloc] --[RLMRealm compact] --[RLMRealm invalidate] --[RLMRealm cancelWriteTransaction] --[RLMRealm transactionWithBlock:error:] --[RLMRealm transactionWithBlock:] --[RLMRealm commitWriteTransaction:] --[RLMRealm commitWriteTransaction] --[RLMRealm beginWriteTransaction] --[RLMRealm configuration] --[RLMRealm sendNotifications:] --[RLMRealm removeNotification:] --[RLMRealm addNotificationBlock:] --[RLMRealm verifyNotificationsAreSupported] -+[RLMRealm resetRealmState] -+[RLMRealm realmWithConfiguration:error:] -+[RLMRealm openSharedRealm:error:] -RLMRealmTranslateException -+[RLMRealm realmWithSharedRealm:schema:] -+[RLMRealm realmWithPath:key:readOnly:inMemory:dynamic:schema:error:] -+[RLMRealm realmWithPath:] -+[RLMRealm defaultRealm] -+[RLMRealm writeableTemporaryPathForFile:] --[RLMRealm setAutorefresh:] --[RLMRealm autorefresh] --[RLMRealm isReadOnly] --[RLMRealm group] --[RLMRealm path] --[RLMRealm inWriteTransaction] --[RLMRealm verifyThread] --[RLMRealm isEmpty] -+[RLMRealm initialize] -+[RLMRealm isCoreDebug] -RLMRealmValidatedEncryptionKey --[RLMRealmNotificationToken .cxx_destruct] --[RLMRealmNotificationToken setBlock:] --[RLMRealmNotificationToken block] --[RLMRealmNotificationToken setRealm:] --[RLMRealmNotificationToken realm] --[RLMRealmNotificationToken dealloc] --[RLMRealmNotificationToken stop] -RLMDisableSyncToDisk -_ZNK12_GLOBAL__N_130PredicateExpressionTransformer5visitEP11NSPredicate -_ZNK12_GLOBAL__N_130PredicateExpressionTransformer5visitEP12NSExpression -OBJC_CLASSLIST_REFERENCES_$_.3 -OBJC_CLASSLIST_REFERENCES_$_.18 -OBJC_SELECTOR_REFERENCES_.43 -OBJC_SELECTOR_REFERENCES_.55 -visit -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMPredicateUtil.mm -PredicateExpressionTransformer -transformPredicate --[RLMRealmConfiguration config] -+[RLMRealmConfiguration defaultConfiguration] -+[RLMRealmConfiguration setDefaultConfiguration:] -+[RLMRealmConfiguration rawDefaultConfiguration] -+[RLMRealmConfiguration resetRealmConfigurationState] --[RLMRealmConfiguration init] --[RLMRealmConfiguration copyWithZone:] --[RLMRealmConfiguration description] --[RLMRealmConfiguration path] --[RLMRealmConfiguration setPath:] -_ZL22RLMNSStringToStdStringRNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEP8NSString --[RLMRealmConfiguration inMemoryIdentifier] --[RLMRealmConfiguration setInMemoryIdentifier:] --[RLMRealmConfiguration encryptionKey] --[RLMRealmConfiguration setEncryptionKey:] --[RLMRealmConfiguration readOnly] --[RLMRealmConfiguration setReadOnly:] --[RLMRealmConfiguration schemaVersion] --[RLMRealmConfiguration setSchemaVersion:] --[RLMRealmConfiguration objectClasses] --[RLMRealmConfiguration setObjectClasses:] --[RLMRealmConfiguration setDynamic:] --[RLMRealmConfiguration cache] --[RLMRealmConfiguration setCache:] --[RLMRealmConfiguration setCustomSchema:] --[RLMRealmConfiguration setDisableFormatUpgrade:] --[RLMRealmConfiguration disableFormatUpgrade] --[RLMRealmConfiguration migrationBlock] --[RLMRealmConfiguration setMigrationBlock:] --[RLMRealmConfiguration dynamic] --[RLMRealmConfiguration customSchema] --[RLMRealmConfiguration .cxx_destruct] --[RLMRealmConfiguration .cxx_construct] -_unnamed_cfstring_.14 -_ZL33c_RLMRealmConfigurationProperties -_unnamed_cfstring_.16 -OBJC_IVAR_$_RLMRealmConfiguration._config -_ZZ29-[RLMRealmConfiguration init]E16defaultRealmPath -_ZGVZ29-[RLMRealmConfiguration init]E16defaultRealmPath -OBJC_IVAR_$_RLMRealmConfiguration._dynamic -OBJC_IVAR_$_RLMRealmConfiguration._migrationBlock -OBJC_IVAR_$_RLMRealmConfiguration._customSchema -_unnamed_cfstring_.39 -_unnamed_cfstring_.49 -_unnamed_cfstring_.57 -OBJC_CLASSLIST_REFERENCES_$_.60 -OBJC_CLASSLIST_REFERENCES_$_.71 -_unnamed_cfstring_.77 -_unnamed_cfstring_.81 -OBJC_METH_VAR_NAME_.82 -OBJC_SELECTOR_REFERENCES_.83 -OBJC_CLASSLIST_REFERENCES_$_.84 -OBJC_METH_VAR_TYPE_.93 -OBJC_METH_VAR_TYPE_.95 -l_OBJC_$_CLASS_METHODS_RLMRealmConfiguration -OBJC_METH_VAR_TYPE_.97 -OBJC_CLASS_NAME_.98 -l_OBJC_CLASS_PROTOCOLS_$_RLMRealmConfiguration -l_OBJC_METACLASS_RO_$_RLMRealmConfiguration -OBJC_METH_VAR_NAME_.105 -OBJC_METH_VAR_TYPE_.108 -OBJC_METH_VAR_NAME_.109 -OBJC_METH_VAR_TYPE_.110 -OBJC_METH_VAR_TYPE_.112 -OBJC_METH_VAR_TYPE_.113 -l_OBJC_$_INSTANCE_METHODS_RLMRealmConfiguration -l_OBJC_$_INSTANCE_VARIABLES_RLMRealmConfiguration -OBJC_PROP_NAME_ATTR_.137 -OBJC_PROP_NAME_ATTR_.138 -OBJC_PROP_NAME_ATTR_.139 -OBJC_PROP_NAME_ATTR_.140 -OBJC_PROP_NAME_ATTR_.141 -OBJC_PROP_NAME_ATTR_.142 -OBJC_PROP_NAME_ATTR_.143 -OBJC_PROP_NAME_ATTR_.144 -OBJC_PROP_NAME_ATTR_.145 -OBJC_PROP_NAME_ATTR_.146 -OBJC_PROP_NAME_ATTR_.147 -OBJC_PROP_NAME_ATTR_.149 -OBJC_PROP_NAME_ATTR_.150 -OBJC_PROP_NAME_ATTR_.151 -OBJC_PROP_NAME_ATTR_.152 -OBJC_PROP_NAME_ATTR_.153 -OBJC_PROP_NAME_ATTR_.154 -l_OBJC_$_PROP_LIST_RLMRealmConfiguration -l_OBJC_CLASS_RO_$_RLMRealmConfiguration -OBJC_SELECTOR_REFERENCES_.158 -__destroy -destroy -forward -construct -__construct -__construct_range_forward -__construct_at_end -__advance -advance -__distance -distance -assign -__to_raw_pointer -RLMNSStringToStdString -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealmConfiguration.mm --[RLMRealmConfiguration .cxx_construct] --[RLMRealmConfiguration .cxx_destruct] --[RLMRealmConfiguration customSchema] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealmConfiguration_Private.h --[RLMRealmConfiguration dynamic] --[RLMRealmConfiguration setMigrationBlock:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealmConfiguration.h --[RLMRealmConfiguration migrationBlock] --[RLMRealmConfiguration disableFormatUpgrade] --[RLMRealmConfiguration setDisableFormatUpgrade:] --[RLMRealmConfiguration setCustomSchema:] --[RLMRealmConfiguration setCache:] --[RLMRealmConfiguration cache] --[RLMRealmConfiguration setDynamic:] --[RLMRealmConfiguration setObjectClasses:] --[RLMRealmConfiguration objectClasses] --[RLMRealmConfiguration setSchemaVersion:] --[RLMRealmConfiguration schemaVersion] --[RLMRealmConfiguration setReadOnly:] --[RLMRealmConfiguration readOnly] --[RLMRealmConfiguration setEncryptionKey:] --[RLMRealmConfiguration encryptionKey] --[RLMRealmConfiguration setInMemoryIdentifier:] --[RLMRealmConfiguration inMemoryIdentifier] --[RLMRealmConfiguration setPath:] --[RLMRealmConfiguration path] --[RLMRealmConfiguration description] --[RLMRealmConfiguration copyWithZone:] --[RLMRealmConfiguration init] -+[RLMRealmConfiguration resetRealmConfigurationState] -+[RLMRealmConfiguration rawDefaultConfiguration] -+[RLMRealmConfiguration setDefaultConfiguration:] -+[RLMRealmConfiguration defaultConfiguration] --[RLMRealmConfiguration config] -RLMRealmPathForFile -RLMRealmPathForFileAndBundleIdentifier -_ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEU8__strongP10NSMapTableNS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEED1Ev -_ZZ34RLMInstallUncaughtExceptionHandlervEN3$_08__invokeEP11NSException -_ZN12_GLOBAL__N_121RLMNotificationHelperD1Ev -_ZN12_GLOBAL__N_121RLMNotificationHelperD0Ev -_ZNK12_GLOBAL__N_121RLMNotificationHelper25can_deliver_notificationsEv -_ZN12_GLOBAL__N_121RLMNotificationHelper17changes_availableEv -_ZN12_GLOBAL__N_121RLMNotificationHelper17get_observed_rowsEv -_ZN12_GLOBAL__N_121RLMNotificationHelper11will_changeERKNSt3__16vectorIN5realm14BindingContext13ObserverStateENS1_9allocatorIS5_EEEERKNS2_IPvNS6_ISB_EEEE -_ZN12_GLOBAL__N_121RLMNotificationHelper10did_changeERKNSt3__16vectorIN5realm14BindingContext13ObserverStateENS1_9allocatorIS5_EEEERKNS2_IPvNS6_ISB_EEEE -_GLOBAL__sub_I_RLMRealmUtil.mm -_ZL17s_realmCacheMutex -_ZL15s_realmsPerPath -OBJC_CLASSLIST_REFERENCES_$_.2 -_ZZ34RLMInstallUncaughtExceptionHandlervE15previousHandler -_ZGVZ34RLMInstallUncaughtExceptionHandlervE15previousHandler -_ZTVN12_GLOBAL__N_121RLMNotificationHelperE -_ZTSN12_GLOBAL__N_121RLMNotificationHelperE -_ZTSN5realm14BindingContextE -_ZTIN5realm14BindingContextE -_ZTIN12_GLOBAL__N_121RLMNotificationHelperE -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealmUtil.mm -forward -move -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__tree -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/map -__destroy -destroy -__tree_right_rotate *> -__tree_left_rotate *> -__tree_balance_after_insert *> -__insert_node_at -move, NSMapTable *>, void *>, std::__1::__map_node_destructor, NSMapTable *>, void *> > > > &> -addressof -construct -__construct -forward &> -construct, const std::__1::basic_string &> -__construct, const std::__1::basic_string &> -forward, NSMapTable *>, void *> > > > -forward, NSMapTable *>, void *> *> -move, NSMapTable *>, void *> > > &> -__map_node_destructor -operator<, std::__1::allocator > -key_comp -value_comp -__find_equal_key -forward, std::__1::__value_type, NSMapTable *>, std::__1::less >, true> > -__tree_end_node -__tree -__map_value_compare -map -did_change -will_change -get_observed_rows -changes_available -can_deliver_notifications -~RLMNotificationHelper -~BindingContext -BindingContext -RLMNotificationHelper -__tree_is_left_child *> -__tree_min *> -__tree_next *> -__map_iterator -__tree_iterator -__begin_node -operator void (*)(NSException *) -addressof *> > -__end_node -__root -addressof, NSMapTable *> > -~__value_type -__destroy, NSMapTable *> > -destroy, NSMapTable *> > -~__tree -~map -RLMCreateBindingContext -RLMInstallUncaughtExceptionHandler -RLMClearRealmCache -RLMGetThreadLocalCachedRealmForPath -RLMGetAnyCachedRealmForPath -RLMCacheRealm --[RLMCancellationToken initWithToken:] --[RLMCancellationToken stop] --[RLMCancellationToken .cxx_destruct] --[RLMCancellationToken .cxx_construct] --[RLMFastEnumerator initWithCollection:objectSchema:] --[RLMFastEnumerator dealloc] --[RLMFastEnumerator detach] --[RLMFastEnumerator countByEnumeratingWithState:count:] --[RLMFastEnumerator .cxx_destruct] --[RLMFastEnumerator .cxx_construct] --[RLMResults initPrivate] -+[RLMResults resultsWithObjectSchema:results:] -_ZN5realm7ResultsaSEOS0_ --[RLMResults count] --[RLMResults objectClassName] --[RLMResults countByEnumeratingWithState:objects:count:] --[RLMResults indexOfObjectWhere:] --[RLMResults indexOfObjectWhere:args:] --[RLMResults indexOfObjectWithPredicate:] --[RLMResults objectAtIndex:] --[RLMResults firstObject] --[RLMResults lastObject] --[RLMResults indexOfObject:] --[RLMResults valueForKeyPath:] --[RLMResults valueForKey:] --[RLMResults setValue:forKey:] --[RLMResults _aggregateForKeyPath:method:methodName:] -_ZL24assertKeyPathIsNotNestedP8NSString --[RLMResults _minForKeyPath:] --[RLMResults _maxForKeyPath:] --[RLMResults _sumForKeyPath:] --[RLMResults _avgForKeyPath:] --[RLMResults _unionOfObjectsForKeyPath:] --[RLMResults _distinctUnionOfObjectsForKeyPath:] --[RLMResults _unionOfArraysForKeyPath:] --[RLMResults _distinctUnionOfArraysForKeyPath:] --[RLMResults objectsWhere:] --[RLMResults objectsWhere:args:] --[RLMResults objectsWithPredicate:] --[RLMResults sortedResultsUsingProperty:ascending:] --[RLMResults sortedResultsUsingDescriptors:] --[RLMResults objectAtIndexedSubscript:] --[RLMResults aggregate:method:methodName:] --[RLMResults minOfProperty:] --[RLMResults maxOfProperty:] --[RLMResults sumOfProperty:] --[RLMResults averageOfProperty:] --[RLMResults deleteObjectsFromRealm] --[RLMResults description] --[RLMResults indexInSource:] --[RLMResults tableView] --[RLMResults addNotificationBlock:] --[RLMResults realm] --[RLMResults objectSchema] --[RLMResults setObjectSchema:] --[RLMResults .cxx_destruct] --[RLMResults .cxx_construct] -_ZL10throwErrorP8NSString -___ZZ36-[RLMResults deleteObjectsFromRealm]ENK4$_13clEv_block_invoke -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEED1Ev -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEED0Ev -_ZNKSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE7__cloneEv -_ZNKSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE7__cloneEPNS0_6__baseIS6_EE -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE7destroyEv -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE18destroy_deallocateEv -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEEclEOS5_ -_ZNKSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE6targetERKSt9type_info -_ZNKSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE11target_typeEv -l_OBJC_METACLASS_RO_$_RLMNotificationToken -l_OBJC_CLASS_RO_$_RLMNotificationToken -OBJC_IVAR_$_RLMCancellationToken._token -OBJC_CLASS_NAME_.1 -l_OBJC_METACLASS_RO_$_RLMCancellationToken -l_OBJC_$_INSTANCE_METHODS_RLMCancellationToken -l_OBJC_$_INSTANCE_VARIABLES_RLMCancellationToken -l_OBJC_CLASS_RO_$_RLMCancellationToken -OBJC_CLASSLIST_SUP_REFS_$_.10 -OBJC_IVAR_$_RLMFastEnumerator._realm -OBJC_IVAR_$_RLMFastEnumerator._objectSchema -OBJC_IVAR_$_RLMFastEnumerator._tableView -OBJC_IVAR_$_RLMFastEnumerator._collection -OBJC_IVAR_$_RLMFastEnumerator._strongBuffer -OBJC_CLASS_NAME_.35 -l_OBJC_METACLASS_RO_$_RLMFastEnumerator -l_OBJC_$_INSTANCE_METHODS_RLMFastEnumerator -OBJC_METH_VAR_TYPE_.43 -OBJC_METH_VAR_TYPE_.45 -OBJC_METH_VAR_TYPE_.47 -OBJC_METH_VAR_TYPE_.49 -OBJC_METH_VAR_TYPE_.51 -l_OBJC_$_INSTANCE_VARIABLES_RLMFastEnumerator -l_OBJC_CLASS_RO_$_RLMFastEnumerator -OBJC_CLASSLIST_SUP_REFS_$_.52 -OBJC_IVAR_$_RLMResults._results -OBJC_IVAR_$_RLMResults._realm -OBJC_IVAR_$_RLMResults._objectSchema -OBJC_CLASSLIST_REFERENCES_$_.61 -_unnamed_cfstring_.73 -OBJC_CLASSLIST_REFERENCES_$_.76 -OBJC_CLASSLIST_REFERENCES_$_.87 -_unnamed_cfstring_.89 -_unnamed_cfstring_.97 -OBJC_CLASSLIST_REFERENCES_$_.114 -_unnamed_cfstring_.122 -OBJC_CLASSLIST_REFERENCES_$_.131 -OBJC_CLASSLIST_REFERENCES_$_.134 -OBJC_SELECTOR_REFERENCES_.138 -OBJC_CLASSLIST_REFERENCES_$_.151 -_unnamed_cfstring_.161 -OBJC_SELECTOR_REFERENCES_.179 -OBJC_CLASSLIST_REFERENCES_$_.180 -OBJC_SELECTOR_REFERENCES_.181 -OBJC_CLASS_NAME_.182 -l_OBJC_$_CLASS_METHODS_RLMResults -OBJC_METH_VAR_TYPE_.187 -OBJC_METH_VAR_TYPE_.189 -OBJC_METH_VAR_TYPE_.190 -OBJC_CLASS_NAME_.191 -OBJC_PROP_NAME_ATTR_.193 -OBJC_PROP_NAME_ATTR_.194 -OBJC_PROP_NAME_ATTR_.195 -OBJC_PROP_NAME_ATTR_.196 -OBJC_METH_VAR_TYPE_.197 -OBJC_METH_VAR_TYPE_.202 -OBJC_METH_VAR_TYPE_.210 -OBJC_METH_VAR_TYPE_.211 -OBJC_METH_VAR_TYPE_.213 -OBJC_METH_VAR_TYPE_.217 -OBJC_METH_VAR_TYPE_.223 -OBJC_METH_VAR_TYPE_.225 -OBJC_CLASS_NAME_.229 -OBJC_CLASS_NAME_.231 -l_OBJC_CLASS_PROTOCOLS_$_RLMResults -l_OBJC_METACLASS_RO_$_RLMResults -OBJC_CLASS_NAME_.234 -OBJC_METH_VAR_TYPE_.235 -OBJC_METH_VAR_NAME_.236 -OBJC_METH_VAR_NAME_.238 -l_OBJC_$_INSTANCE_METHODS_RLMResults -l_OBJC_$_INSTANCE_VARIABLES_RLMResults -OBJC_PROP_NAME_ATTR_.251 -OBJC_PROP_NAME_ATTR_.252 -l_OBJC_$_PROP_LIST_RLMResults -l_OBJC_CLASS_RO_$_RLMResults -.str.253 -.str.257 -.str.259 -.str.261 -.str.267 -.str.269 -.str.271 -.str.273 -.str.275 -.str.280 -.str.282 -_ZTSN5realm24IncorrectThreadExceptionE -_ZTIN5realm24IncorrectThreadExceptionE -_unnamed_cfstring_.285 -_unnamed_cfstring_.293 -.str.296 -_unnamed_cfstring_.297 -_unnamed_cfstring_.299 -OBJC_METH_VAR_NAME_.322 -OBJC_SELECTOR_REFERENCES_.323 -_unnamed_cfstring_.325 -OBJC_CLASSLIST_REFERENCES_$_.326 -OBJC_CLASSLIST_REFERENCES_$_.331 -OBJC_SELECTOR_REFERENCES_.332 -.str.334 -_ZTVNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEEE -_ZTSNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEEE -_ZTSNSt3__110__function6__baseIFvSt13exception_ptrEEE -_ZTINSt3__110__function6__baseIFvSt13exception_ptrEEE -_ZTINSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEEE -_ZTSZ35-[RLMResults addNotificationBlock:]E4$_16 -_ZTIZ35-[RLMResults addNotificationBlock:]E4$_16 -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &> -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &, std::exception_ptr> -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &, std::exception_ptr> -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &> -forward &> -forward_as_tuple &> -_ZZ35-[RLMResults addNotificationBlock:]EN4$_16C2ERKS_ -_ZZ35-[RLMResults addNotificationBlock:]EN4$_16C1ERKS_ -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &&> -forward &&> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &> -forward -forward_as_tuple -allocator, void (std::exception_ptr)> > -forward, void (std::exception_ptr)> > > > -forward, void (std::exception_ptr)> *> -move, void (std::exception_ptr)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -_ZZ35-[RLMResults addNotificationBlock:]EN4$_16C2EOS_ -_ZZ35-[RLMResults addNotificationBlock:]EN4$_16C1EOS_ -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&, 0> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33), false> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:528:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:524:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:480:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:456:34)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:440:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:424:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:396:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:381:28)> -assertKeyPathIsNotNested -RLMResultsValidateInWriteTransaction -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:354:21)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:348:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:317:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:308:32)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:303:32)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:297:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:287:35)> -get_mode -throwError -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:246:28)> -get_source_ndx -is_row_attached -move --[RLMResults .cxx_construct] --[RLMResults .cxx_destruct] --[RLMResults setObjectSchema:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults_Private.h --[RLMResults objectSchema] --[RLMResults realm] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.h --[RLMResults addNotificationBlock:] --[RLMResults tableView] --[RLMResults indexInSource:] --[RLMResults description] --[RLMResults deleteObjectsFromRealm] --[RLMResults averageOfProperty:] --[RLMResults sumOfProperty:] --[RLMResults maxOfProperty:] --[RLMResults minOfProperty:] --[RLMResults aggregate:method:methodName:] --[RLMResults objectAtIndexedSubscript:] --[RLMResults sortedResultsUsingDescriptors:] --[RLMResults sortedResultsUsingProperty:ascending:] --[RLMResults objectsWithPredicate:] --[RLMResults objectsWhere:args:] --[RLMResults objectsWhere:] --[RLMResults _distinctUnionOfArraysForKeyPath:] --[RLMResults _unionOfArraysForKeyPath:] --[RLMResults _distinctUnionOfObjectsForKeyPath:] --[RLMResults _unionOfObjectsForKeyPath:] --[RLMResults _avgForKeyPath:] --[RLMResults _sumForKeyPath:] --[RLMResults _maxForKeyPath:] --[RLMResults _minForKeyPath:] --[RLMResults _aggregateForKeyPath:method:methodName:] --[RLMResults setValue:forKey:] --[RLMResults valueForKey:] --[RLMResults valueForKeyPath:] --[RLMResults indexOfObject:] --[RLMResults lastObject] --[RLMResults firstObject] --[RLMResults objectAtIndex:] --[RLMResults indexOfObjectWithPredicate:] --[RLMResults indexOfObjectWhere:args:] --[RLMResults indexOfObjectWhere:] --[RLMResults countByEnumeratingWithState:objects:count:] --[RLMResults objectClassName] --[RLMResults count] -+[RLMResults resultsWithObjectSchema:results:] --[RLMResults initPrivate] --[RLMFastEnumerator .cxx_construct] --[RLMFastEnumerator .cxx_destruct] --[RLMFastEnumerator countByEnumeratingWithState:count:] --[RLMFastEnumerator detach] --[RLMFastEnumerator dealloc] --[RLMFastEnumerator initWithCollection:objectSchema:] --[RLMCancellationToken .cxx_construct] --[RLMCancellationToken .cxx_destruct] --[RLMCancellationToken stop] --[RLMCancellationToken initWithToken:] --[RLMSchema init] --[RLMSchema objectSchema] --[RLMSchema setObjectSchema:] --[RLMSchema schemaForClassName:] --[RLMSchema objectForKeyedSubscript:] -+[RLMSchema schemaWithObjectClasses:] -_ZL26RLMRegisterClassLocalNamesPP10objc_classm -_ZL16RLMRegisterClassP10objc_class -__37+[RLMSchema schemaWithObjectClasses:]_block_invoke -+[RLMSchema sharedSchemaForClass:] -+[RLMSchema partialSharedSchema] -+[RLMSchema sharedSchema] -__25+[RLMSchema sharedSchema]_block_invoke -__25+[RLMSchema sharedSchema]_block_invoke_2 -+[RLMSchema dynamicSchemaFromObjectStoreSchema:] -+[RLMSchema classForString:] --[RLMSchema copyWithZone:] --[RLMSchema shallowCopy] -__24-[RLMSchema shallowCopy]_block_invoke -__copy_helper_block_.79 -__destroy_helper_block_.80 --[RLMSchema isEqualToSchema:] -__29-[RLMSchema isEqualToSchema:]_block_invoke -__copy_helper_block_.85 -__destroy_helper_block_.86 --[RLMSchema description] --[RLMSchema objectStoreCopy] -__28-[RLMSchema objectStoreCopy]_block_invoke -__copy_helper_block_.115 -__destroy_helper_block_.116 --[RLMSchema objectSchemaByName] --[RLMSchema setObjectSchemaByName:] --[RLMSchema .cxx_destruct] -_GLOBAL__sub_I_RLMSchema.mm -_ZL14s_sharedSchema -_ZL18s_localNameToClass -OBJC_CLASSLIST_REFERENCES_$_.5 -_ZL25s_privateObjectSubclasses -OBJC_IVAR_$_RLMSchema._objectSchemaByName -OBJC_IVAR_$_RLMSchema._objectSchema -OBJC_CLASSLIST_REFERENCES_$_.27 -_ZL19s_sharedSchemaState -__block_descriptor_tmp.59 -__block_literal_global.60 -__block_descriptor_tmp.87 -OBJC_CLASSLIST_REFERENCES_$_.88 -OBJC_CLASSLIST_REFERENCES_$_.91 -_unnamed_cfstring_.93 -OBJC_SELECTOR_REFERENCES_.106 -.str.107 -_unnamed_cfstring_.108 -OBJC_SELECTOR_REFERENCES_.110 -OBJC_CLASS_NAME_.118 -OBJC_METH_VAR_TYPE_.123 -l_OBJC_$_CLASS_METHODS_RLMSchema -OBJC_METH_VAR_TYPE_.129 -l_OBJC_CLASS_PROTOCOLS_$_RLMSchema -l_OBJC_METACLASS_RO_$_RLMSchema -OBJC_CLASS_NAME_.131 -OBJC_METH_VAR_TYPE_.135 -OBJC_METH_VAR_NAME_.136 -OBJC_METH_VAR_TYPE_.137 -l_OBJC_$_INSTANCE_METHODS_RLMSchema -l_OBJC_$_INSTANCE_VARIABLES_RLMSchema -l_OBJC_$_PROP_LIST_RLMSchema -l_OBJC_CLASS_RO_$_RLMSchema -OBJC_SELECTOR_REFERENCES_.153 -_unnamed_cfstring_.155 -_unnamed_cfstring_.159 -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMSchema.mm -move &> -forward > > -make_unique > > -unique_ptr<__unsafe_unretained Class *> -operator()<__unsafe_unretained Class> -forward<__unsafe_unretained Class *> -make_unique -move > &> -__push_back_slow_path -forward -construct -__construct -RLMRegisterClass -RLMRegisterClassLocalNames --[RLMSchema .cxx_destruct] --[RLMSchema setObjectSchemaByName:] --[RLMSchema objectSchemaByName] --[RLMSchema objectStoreCopy] --[RLMSchema description] --[RLMSchema isEqualToSchema:] --[RLMSchema shallowCopy] --[RLMSchema copyWithZone:] -+[RLMSchema classForString:] -+[RLMSchema dynamicSchemaFromObjectStoreSchema:] -+[RLMSchema sharedSchema] -+[RLMSchema partialSharedSchema] -+[RLMSchema sharedSchemaForClass:] -+[RLMSchema schemaWithObjectClasses:] --[RLMSchema objectForKeyedSubscript:] --[RLMSchema schemaForClassName:] --[RLMSchema setObjectSchema:] --[RLMSchema objectSchema] --[RLMSchema init] -__cxx_global_var_init.6 -__cxx_global_var_init.4 -+[RLMSwiftSupport isSwiftClassName:] -+[RLMSwiftSupport demangleClassName:] -OBJC_METH_VAR_TYPE_.5 -l_OBJC_$_CLASS_METHODS_RLMSwiftSupport -l_OBJC_METACLASS_RO_$_RLMSwiftSupport -l_OBJC_CLASS_RO_$_RLMSwiftSupport -+[RLMSwiftSupport demangleClassName:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMSwiftSupport.m -+[RLMSwiftSupport isSwiftClassName:] -RLMCheckForUpdates -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMUpdateChecker.mm -_ZL12RLMExceptionP8NSStringP12NSDictionary -OBJC_CLASSLIST_REFERENCES_$_.8 -OBJC_CLASSLIST_REFERENCES_$_.9 -OBJC_CLASSLIST_REFERENCES_$_.57 -_unnamed_cfstring_.61 -OBJC_CLASSLIST_REFERENCES_$_.89 -.str.135 -.str.139 -OBJC_SELECTOR_REFERENCES_.193 -OBJC_CLASSLIST_REFERENCES_$_.197 -OBJC_CLASSLIST_REFERENCES_$_.198 -OBJC_CLASSLIST_REFERENCES_$_.199 -RLMDynamicCast -RLMDynamicCast -RLMIsSubclass -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMUtil.mm -get_path -RLMException -object_has_valid_type -nsnumber_is_like_double -nsnumber_is_like_float -nsnumber_is_like_integer -nsnumber_is_like_bool -RLMMixedToObjc -RLMIsDebuggerAttached -RLMIsObjectSubclass -RLMSetErrorOrThrow -RLMMakeError -RLMCollectionSetValueForKey -RLMCollectionValueForKey -RLMDefaultValuesForObjectSchema -RLMIsObjectValidForProperty -_ZL15compare_by_nameRKN5realm12ObjectSchemaES2_ -__emplace_back_slow_path -forward -construct -__construct -emplace_back -__emplace_back_slow_path -forward -construct -__construct -emplace_back -__emplace_back_slow_path -forward -construct -__construct -emplace_back -__emplace_back_slow_path -forward -construct -__construct -emplace_back -__advance > -advance > -operator- -__distance > -distance > -__lower_bound, realm::ObjectSchema> -lower_bound, realm::ObjectSchema, bool (*)(const realm::ObjectSchema &, const realm::ObjectSchema &)> -__wrap_iter -__insertion_sort_incomplete -__insertion_sort_3 -__sort5 -__sort4 -__sort3 -__unwrap_iter -__copy -copy -__advance -advance -__distance -distance -assign -swap -__sort -sort -sort -is_indexable -compare_by_name -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/schema.cpp -validate -Realm/ObjectStore/schema.cpp -_ZN5realm5Realm6ConfigaSEOS1_ -_ZN5realm25UnitializedRealmExceptionD1Ev -_ZZN5realm5Realm13update_schemaENSt3__110unique_ptrINS_6SchemaENS1_14default_deleteIS3_EEEEyEN21WriteTransactionGuardD1Ev -_ZN5realm24IncorrectThreadExceptionD1Ev -_ZL16check_read_writePN5realm5RealmE -_ZN5realm25UnitializedRealmExceptionD0Ev -_ZN5realm24IncorrectThreadExceptionD0Ev -_ZN5realm11SharedGroupC2ERNS_11ReplicationENS0_15DurabilityLevelEPKcb -_ZNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EED1Ev -_ZNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EED0Ev -_ZNKSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EE7__cloneEv -_ZNKSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EE7__cloneEPNS0_6__baseISF_EE -_ZNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EE7destroyEv -_ZNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EE18destroy_deallocateEv -_ZNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EEclEOSD_SE_ -_ZNKSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EE6targetERKSt9type_info -_ZNKSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EE11target_typeEv -_ZNSt3__120__shared_ptr_pointerIPN5realm5RealmENS_14default_deleteIS2_EENS_9allocatorIS2_EEED1Ev -_ZNSt3__120__shared_ptr_pointerIPN5realm5RealmENS_14default_deleteIS2_EENS_9allocatorIS2_EEED0Ev -_ZTSN5realm20IncompatibleLockFileE -_ZTIN5realm20IncompatibleLockFileE -_ZTSN5realm25FileFormatUpgradeRequiredE -_ZTIN5realm25FileFormatUpgradeRequiredE -_ZTSN5realm25UnitializedRealmExceptionE -_ZTIN5realm25UnitializedRealmExceptionE -_ZTVNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EEE -_ZTSNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EEE -_ZTSNSt3__110__function6__baseIFvPN5realm5GroupERNS2_6SchemaEEEE -_ZTINSt3__110__function6__baseIFvPN5realm5GroupERNS2_6SchemaEEEE -_ZTINSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EEE -_ZTSNSt3__120__shared_ptr_pointerIPN5realm5RealmENS_14default_deleteIS2_EENS_9allocatorIS2_EEEE -_ZTINSt3__120__shared_ptr_pointerIPN5realm5RealmENS_14default_deleteIS2_EENS_9allocatorIS2_EEEE -_ZTSNSt3__114default_deleteIN5realm5RealmEEE -_ZTSZN5realm5Realm13update_schemaENSt3__110unique_ptrINS_6SchemaENS1_14default_deleteIS3_EEEEyE3$_0 -_ZTIZN5realm5Realm13update_schemaENSt3__110unique_ptrINS_6SchemaENS1_14default_deleteIS3_EEEEyE3$_0 -forward -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &> -addressof, std::__1::allocator > > -addressof > -__get_deleter -~__shared_ptr_pointer -forward > -forward > > -move &> -forward > -move &> -__shared_ptr_pointer -forward -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &, realm::Group *, realm::Schema &> -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &, realm::Group *, realm::Schema &> -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &> -forward &> -forward_as_tuple &> -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &&> -forward &&> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &> -forward -forward_as_tuple -allocator, void (realm::Group *, realm::Schema &)> > -forward, void (realm::Group *, realm::Schema &)> > > > -forward, void (realm::Group *, realm::Schema &)> *> -move, void (realm::Group *, realm::Schema &)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&, 0> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31), false> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -Realm/ObjectStore/schema.hpp -forward -make_unique -forward > -move -operator() -~File -unmap -~MapBase -~Map -~Mutex -set_replication -open -init_as_regular -Mutex -MapBase -Map -File -Group -SharedGroup -forward -forward -make_unique -forward > -forward > -move -record_subtable_path -child_accessor_destroyed -get_parent_group -get_child_name -~Parent -~ArrayString -__to_raw_pointer -__destroy -destroy -init_array_parents -forward -ArrayString -Parent -forward -forward -make_unique &, const char *, realm::Group::OpenMode> -make_unique -__construct_range_forward -__construct_at_end -Realm/ObjectStore/impl/realm_coordinator.hpp -Realm/ObjectStore/binding_context.hpp -__to_raw_pointer -__destroy -destroy -check_read_write -get_transact_stage -~IncorrectThreadException -IncorrectThreadException -~WriteTransactionGuard -~UnitializedRealmException -UnitializedRealmException -move > &> -move &> -refresh -compact -invalidate -cancel_transaction -commit_transaction -begin_transaction -is_in_transaction -verify_in_write -verify_thread -get_shared_realm -read_group -~Realm -open_with_config -Realm -~Config -Config -Realm/ObjectStore/shared_realm.cpp -_ZN5realm11SharedGroup15do_advance_readIN12_GLOBAL__N_120TransactLogValidatorEEEbPT_NS0_9VersionIDERNS_5_impl7HistoryE -_ZN12_GLOBAL__N_120TransactLogValidator12erase_columnEm -_ZN12_GLOBAL__N_120TransactLogValidator17erase_link_columnEmmm -_ZN12_GLOBAL__N_120TransactLogValidator13rename_columnEmN5realm10StringDataE -_ZN12_GLOBAL__N_120TransactLogValidator11move_columnEmm -_ZN12_GLOBAL__N_120TransactLogValidator24insert_group_level_tableEmmN5realm10StringDataE -_ZN12_GLOBAL__N_120TransactLogValidator23erase_group_level_tableEmm -_ZN12_GLOBAL__N_120TransactLogValidator24rename_group_level_tableEmN5realm10StringDataE -_ZN12_GLOBAL__N_120TransactLogValidator22move_group_level_tableEmm -_ZN12_GLOBAL__N_120TransactLogValidator29schema_error_unless_new_tableEv -_ZN12_GLOBAL__N_120TransactLogValidator12schema_errorEv -_ZN5realm11SharedGroup15do_advance_readIN12_GLOBAL__N_119TransactLogObserverEEEbPT_NS0_9VersionIDERNS_5_impl7HistoryE -_ZN5realm5_impl17TransactLogParser5parseIN12_GLOBAL__N_119TransactLogObserverEEEvRNS0_17NoCopyInputStreamERT_ -_ZN12_GLOBAL__N_119TransactLogObserver10mark_dirtyEmm -_ZN12_GLOBAL__N_119TransactLogObserver10get_changeERN5realm14BindingContext13ObserverStateEm -_ZN12_GLOBAL__N_119TransactLogObserver10invalidateEPN5realm14BindingContext13ObserverStateE -_ZN12_GLOBAL__N_119TransactLogObserver23append_link_list_changeEN5realm14BindingContext10ColumnInfo4KindEm -_ZZN5realm5_impl11transaction5beginERNS_11SharedGroupEPNS_14BindingContextEbENK3$_1clIJRN12_GLOBAL__N_120TransactLogValidatorEEEEDaDpOT_ -_ZN5realm11SharedGroup16promote_to_writeINS_5_impl23NullInstructionObserverEEEvPT_ -_ZN5realm5_impl25ReversedNoCopyInputStreamD1Ev -_ZN5realm5_impl17SimpleInputStreamD1Ev -_ZN5realm5_impl17SimpleInputStream4readEPcm -_ZN5realm5_impl17SimpleInputStreamD0Ev -_ZN5realm5_impl23TransactLogBufferStream20transact_log_reserveEmPPcS3_ -_ZN5realm5_impl23TransactLogBufferStream19transact_log_appendEPKcmPPcS5_ -_ZN5realm4util6BufferIcE13reserve_extraEmm -_ZN5realm4util18BufferSizeOverflowD1Ev -_ZN5realm4util6BufferIcE7reserveEmm -_ZN5realm4util18BufferSizeOverflowD0Ev -_ZNK5realm4util18BufferSizeOverflow4whatEv -_ZN5realm4util6BufferIcE6resizeEmmmm -_ZN5realm5_impl24NoCopyInputStreamAdaptorD1Ev -_ZN5realm5_impl24NoCopyInputStreamAdaptor10next_blockERPKcS4_ -_ZN5realm5_impl24NoCopyInputStreamAdaptorD0Ev -_ZN5realm5_impl16TransactReverser12select_tableEmmPKm -_ZN5realm5_impl16TransactReverser15link_list_clearEm -_ZN5realm5_impl16TransactReverser16select_link_listEmmm -_ZN5realm5_impl16TransactReverser17select_descriptorEmPKm -_ZN5realm5_impl16TransactReverser24insert_group_level_tableEmmNS_10StringDataE -_ZN5realm5_impl16TransactReverser23erase_group_level_tableEmm -_ZN5realm5_impl16TransactReverser18append_instructionEv -_ZNK5realm5_impl16TransactReverser17transact_log_sizeEv -_ZN5realm5_impl16TransactReverser10sync_tableEv -_ZN5realm5_impl16TransactReverser15sync_descriptorEv -_ZN5realm5_impl16TransactReverser18append_instructionENS1_5InstrE -_ZN5realm5_impl25ReversedNoCopyInputStream10next_blockERPKcS4_ -_ZN5realm5_impl25ReversedNoCopyInputStreamD0Ev -_ZN5realm11SharedGroup29rollback_and_continue_as_readINS_5_impl23NullInstructionObserverEEEvPT_ -_ZTSN5realm5_impl17SimpleInputStreamE -_ZTSN5realm5_impl11InputStreamE -_ZTIN5realm5_impl11InputStreamE -_ZTIN5realm5_impl17SimpleInputStreamE -_ZTSN5realm5_impl23TransactLogBufferStreamE -_ZTSN5realm5_impl17TransactLogStreamE -_ZTIN5realm5_impl17TransactLogStreamE -_ZTIN5realm5_impl23TransactLogBufferStreamE -_ZTSN5realm4util18BufferSizeOverflowE -_ZTIN5realm4util18BufferSizeOverflowE -_ZTSN5realm5_impl24NoCopyInputStreamAdaptorE -_ZTIN5realm5_impl24NoCopyInputStreamAdaptorE -_ZTSN5realm5_impl25ReversedNoCopyInputStreamE -_ZTIN5realm5_impl25ReversedNoCopyInputStreamE -rollback_and_continue_as_read<(anonymous namespace)::TransactLogObserver> -operator()<(anonymous namespace)::TransactLogObserver &> -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/transact_log_handler.cpp -rollback_and_continue_as_read -rollback_and_continue_as_read -operator()<> -~SimpleInputStream -~TransactReverser -abort_transact -core/include/realm/replication.hpp -advance_transact -~ReversedNoCopyInputStream -ReversedNoCopyInputStream -~NoCopyInputStreamAdaptor -Tuple -core/include/realm/util/tuple.hpp -cons > > -tuple -cons > > > -tuple -cons > > > -append > >, unsigned long> -cons > > > > -append > > >, unsigned long> -for_each > > >, char **> -for_each > > > >, char **> -append_string_instr > > > > -is_link_type -tuple -append_string_instr > > -append_simple_instr > > > -append_simple_instr > -__push_back_slow_path -forward -construct -__construct -append_instruction -sync_select -sync_linkview -sync_descriptor -sync_table -cons > > > -tuple -for_each > > >, char **> -append_simple_instr > > > > -tuple -append_simple_instr > > > > -for_each, char **> -for_each >, char **> -for_each > >, char **> -append_simple_instr > > > -cons > -append, unsigned long> -cons > > -append >, unsigned long> -cons > > > -append > >, unsigned long> -for_each >, char **> -for_each > >, char **> -for_each > > >, char **> -append_string_instr > > > -append -cons > -append, double> -cons > > -append >, double> -cons > > > -append > >, double> -for_each >, char **> -for_each > >, char **> -for_each > > >, char **> -append_simple_instr > > > > -append -cons > -append, float> -cons > > -append >, float> -cons > > > -append > >, float> -for_each >, char **> -for_each > >, char **> -for_each > > >, char **> -append_simple_instr > > > > -append -cons > -append, bool> -cons > > -append >, bool> -cons > > > -append > >, bool> -for_each >, char **> -for_each > >, char **> -for_each > > >, char **> -append_simple_instr > > > > -append -cons > -append, long long> -cons > > -append >, long long> -cons > > > -append > >, long long> -for_each >, char **> -for_each > >, char **> -for_each > > >, char **> -append_simple_instr > > > > -cons -tuple -append -cons > -append, realm::DataType> -cons > > -append >, realm::DataType> -append_mixed_instr > > -tuple -cons > > > -append > >, unsigned long> -for_each > > >, char **> -append_string_instr > > > -tuple -cons -tuple -append -cons > -append, unsigned long> -cons > > -append >, unsigned long> -for_each > >, char **> -append_string_instr > > -for_each, char **> -for_each >, char **> -append_simple_instr > > -cons -tuple -cons > -tuple -cons > > -tuple -encode_double -for_each, char **> -for_each >, char **> -for_each > >, char **> -append_simple_instr > > > -cons -tuple -cons > -tuple -cons > > -tuple -encode_float -for_each, char **> -for_each >, char **> -for_each > >, char **> -append_simple_instr > > > -cons -tuple -cons > -tuple -cons > > -tuple -test -is_negative -encode_int -for_each, char **> -for_each >, char **> -for_each > >, char **> -append_simple_instr > > > -cons > > > -tuple -for_each > > >, char **> -append_simple_instr > > > > -inspect_value, std::__1::allocator > > -inspect_all, std::__1::allocator >, const char *> -inspect_value, std::__1::allocator >, char *> -inspect_all, std::__1::allocator >, char *, const char *> -terminate -transact_log_data -write_position -transact_log_size -get_inst -__destroy -destroy -move -swap -__construct_backward -forward &> -__push_back_slow_path -move -__to_raw_pointer -forward -construct -__construct -cons -tuple -cons > -tuple -cons > > -tuple -advance -for_each -is_negative -encode_int -for_each, char **> -for_each >, char **> -is_negative -encode_int -for_each > >, char **> -append_simple_instr > > > -parse_one -parse -NoCopyInputStreamAdaptor -~TransactLogBufferStream -forward -TransactLogEncoder -transact_log_append -reset -__copy -copy -~BufferSizeOverflow -BufferSizeOverflow -int_add_with_overflow_detect -reserve_extra -transact_log_reserve -TransactLogStream -TransactLogBufferStream -TransactReverser -read -~InputStream -InputStream -SimpleInputStream -reset_free_space_tracking -rollback_and_continue_as_read<(anonymous namespace)::TransactLogValidator> -operator()<(anonymous namespace)::TransactLogValidator &> -TransactLogObserver<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/transact_log_handler.cpp:460:38)> -promote_to_write<(anonymous namespace)::TransactLogObserver> -promote_to_write -promote_to_write -create_empty_group_when_missing -unselect_all -reset_selection_caches -initiate_transact -promote_to_write<(anonymous namespace)::TransactLogValidator> -TransactLogObserver<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/transact_log_handler.cpp:444:38)> -move<(anonymous namespace)::TransactLogObserver &> -append_link_list_change -__wrap_iter -__unwrap_iter -__move -move -operator- -move -swap -__construct_backward -forward &> -__push_back_slow_path -forward -construct -__construct -move -swap -move -move_if_noexcept -forward -forward > > -move > &> -IndexSet -ColumnInfo -construct -__construct -__construct_backward -forward &> -construct -__construct -get_change -operator== -operator!= -current_table -__advance > -advance > -operator- -__distance > -distance > -__lower_bound &, std::__1::__wrap_iter, realm::BindingContext::ObserverState> -lower_bound, realm::BindingContext::ObserverState, std::__1::__less > -lower_bound, realm::BindingContext::ObserverState> -mark_dirty -parse_one<(anonymous namespace)::TransactLogObserver> -parse<(anonymous namespace)::TransactLogObserver> -do_advance_read<(anonymous namespace)::TransactLogObserver> -advance_read<(anonymous namespace)::TransactLogObserver> -move &> -move<(anonymous namespace)::TransactLogValidator &> -schema_error -end > > -begin > > -find, unsigned long> -schema_error_unless_new_table -parse_one<(anonymous namespace)::TransactLogValidator> -parse<(anonymous namespace)::TransactLogValidator> -do_advance_read<(anonymous namespace)::TransactLogValidator> -advance_read<(anonymous namespace)::TransactLogValidator> -TransactLogValidator -TransactLogObserver<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/transact_log_handler.cpp:437:38)> -commit_and_continue_as_read -~TransactLogValidator -~TransactLogObserver -cancel -commit -.str1 -.str2 -.str3 -_ZTSN5realm4util16DecryptionFailedE -_ZTIN5realm4util16DecryptionFailedE -.str4 -.str5 -.str6 -.str7 -.str8 -.str9 -.str10 -.str11 -.str12 -.str13 -.str14 -.str15 -_ZN12_GLOBAL__N_115system_categoryD1Ev -_ZN12_GLOBAL__N_115system_categoryD0Ev -_ZNK12_GLOBAL__N_115system_category4nameEv -_ZNK12_GLOBAL__N_115system_category7messageEi -_GLOBAL__sub_I_basic_system_errors.cpp -_ZN12_GLOBAL__N_117g_system_categoryE -_ZTVN12_GLOBAL__N_115system_categoryE -_ZTSN12_GLOBAL__N_115system_categoryE -_ZTIN12_GLOBAL__N_115system_categoryE -_ZZN5realm4util9page_sizeEvE16cached_page_size -_ZGVZN5realm4util9page_sizeEvE16cached_page_size -.str18 -.str19 -.str20 -.str21 -.str22 -.str23 -.str24 -.str25 -.str26 -.str27 -.str28 -.str29 -.str30 -.str31 -.str32 -.str33 -.str34 -.str35 -.str38 -_GLOBAL__sub_I_file_mapper.cpp -_ZTSN5realm21AddressSpaceExhaustedE -_ZTIN5realm21AddressSpaceExhaustedE -_ZTSNSt3__119basic_ostringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEEE -_ZTINSt3__119basic_ostringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEEE -_ZN12_GLOBAL__N_15nslogEPKc -_ZN12_GLOBAL__N_133termination_notification_callbackE -.str16 -.str17 -_GLOBAL__sub_I_platform_specific_condvar.cpp -_ZN12_GLOBAL__N_116DefaultAllocatorD1Ev -_ZN12_GLOBAL__N_116DefaultAllocatorD0Ev -_ZN12_GLOBAL__N_116DefaultAllocator8do_allocEm -_ZN12_GLOBAL__N_116DefaultAllocator10do_reallocEmPKcmm -_ZN12_GLOBAL__N_116DefaultAllocator7do_freeEmPKc -_ZNK12_GLOBAL__N_116DefaultAllocator12do_translateEm -_ZZN5realm9Allocator11get_defaultEvE13default_alloc -_ZGVZN5realm9Allocator11get_defaultEvE13default_alloc -_ZTVN12_GLOBAL__N_116DefaultAllocatorE -_ZTSN12_GLOBAL__N_116DefaultAllocatorE -_ZTIN12_GLOBAL__N_116DefaultAllocatorE -_ZN12_GLOBAL__N_116InvalidFreeSpaceD1Ev -_ZN12_GLOBAL__N_116InvalidFreeSpaceD0Ev -_ZNK12_GLOBAL__N_116InvalidFreeSpace4whatEv -_ZTSN12_GLOBAL__N_116InvalidFreeSpaceE -_ZTIN12_GLOBAL__N_116InvalidFreeSpaceE -_ZTSN5realm15InvalidDatabaseE -_ZTIN5realm15InvalidDatabaseE -_ZTSN5realm9SlabAlloc5RetryE -_ZTIN5realm9SlabAlloc5RetryE -_ZTVN12_GLOBAL__N_116InvalidFreeSpaceE -.str36 -.str37 -_ZN12_GLOBAL__N_119foreach_bptree_leafINS_12VisitAdapterEEEbRN5realm5ArrayEmmT_m -_ZN12_GLOBAL__N_130simplified_foreach_bptree_leafINS_13UpdateAdapterEEEvRN5realm5ArrayET_ -_ZN12_GLOBAL__N_129destroy_singlet_bptree_branchEN5realm6MemRefERNS0_9AllocatorERNS0_5Array12EraseHandlerE -_ZN12_GLOBAL__N_128elim_superfluous_bptree_rootEPN5realm5ArrayENS0_6MemRefExmRNS1_12EraseHandlerE -__cxx_global_var_init36 -__cxx_global_var_init37 -__cxx_global_var_init38 -__cxx_global_var_init39 -__cxx_global_var_init40 -__cxx_global_var_init41 -__cxx_global_var_init42 -_ZN12_GLOBAL__N_117find_bptree_childExmRKN5realm9AllocatorE -_ZZN5realm5Array9bit_widthExE4bits -_ZZNK5realm5Array13first_set_bitEjE27MultiplyDeBruijnBitPosition -.str43 -.str44 -.str45 -.str46 -.str47 -.str48 -.str49 -.str50 -.str51 -_ZTSN5realm10QueryStateIxEE -_ZTSN5realm14QueryStateBaseE -_ZTIN5realm14QueryStateBaseE -_ZTIN5realm10QueryStateIxEE -.str52 -.str53 -.str54 -.str55 -.str56 -.str57 -.str58 -.str59 -.str60 -.str61 -.str62 -.str64 -.str65 -.str66 -.str67 -.str68 -.str69 -.str70 -.str71 -.str72 -.str73 -.str74 -.str75 -.str76 -.str77 -.str78 -.str80 -.str81 -.str83 -.str84 -.str85 -_ZTSN5realm11ArrayBinaryE -_ZTIN5realm11ArrayBinaryE -_ZTSN5realm9ArrayBlobE -_ZTIN5realm9ArrayBlobE -_ZTSN5realm13ArrayBigBlobsE -_ZTIN5realm13ArrayBigBlobsE -_ZTSN5realm15ArrayStringLongE -_ZTIN5realm15ArrayStringLongE -_ZN12_GLOBAL__N_110TreeWriter11ParentLevel13add_child_refEmmbPm -_ZN12_GLOBAL__N_110TreeWriter11ParentLevelD2Ev -_ZTSN5realm10BpTreeBase17WriteSliceHandlerE -_ZTSN5realm5Array12VisitHandlerE -_ZTIN5realm5Array12VisitHandlerE -_ZTIN5realm10BpTreeBase17WriteSliceHandlerE -.str39 -_ZN12_GLOBAL__N_111SetLeafElemD1Ev -_ZN12_GLOBAL__N_111SetLeafElem6updateEN5realm6MemRefEPNS1_11ArrayParentEmm -_ZN12_GLOBAL__N_111SetLeafElemD0Ev -_ZTVN12_GLOBAL__N_111SetLeafElemE -_ZTSN12_GLOBAL__N_111SetLeafElemE -_ZTIN12_GLOBAL__N_111SetLeafElemE -_ZTSN5realm12BinaryColumn13EraseLeafElemE -_ZTIN5realm12BinaryColumn13EraseLeafElemE -_ZTSN5realm12BinaryColumn13CreateHandlerE -_ZTIN5realm12BinaryColumn13CreateHandlerE -_ZTSN5realm12BinaryColumn12SliceHandlerE -_ZTIN5realm12BinaryColumn12SliceHandlerE -_ZTSN5realm8LinkViewE -_ZTIN5realm8LinkViewE -_ZTSN5realm11MixedColumn10RefsColumnE -_ZTIN5realm11MixedColumn10RefsColumnE -.str40 -.str41 -.str42 -_ZTSN5realm14ColumnTemplateINS_10StringDataEEE -_ZTIN5realm14ColumnTemplateINS_10StringDataEEE -_ZTSN5realm12StringColumn13EraseLeafElemE -_ZTIN5realm12StringColumn13EraseLeafElemE -_ZTSN5realm12StringColumn13CreateHandlerE -_ZTIN5realm12StringColumn13CreateHandlerE -_ZTSN5realm12StringColumn12SliceHandlerE -_ZTIN5realm12StringColumn12SliceHandlerE -_ZN12_GLOBAL__N_119InsertColumnUpdaterD1Ev -_ZN12_GLOBAL__N_119InsertColumnUpdater6updateERN5realm5TableE -_ZN12_GLOBAL__N_119InsertColumnUpdater13update_parentERN5realm5TableE -_ZN12_GLOBAL__N_119InsertColumnUpdaterD0Ev -_ZN12_GLOBAL__N_118EraseColumnUpdaterD1Ev -_ZN12_GLOBAL__N_118EraseColumnUpdater6updateERN5realm5TableE -_ZN12_GLOBAL__N_118EraseColumnUpdater13update_parentERN5realm5TableE -_ZN12_GLOBAL__N_118EraseColumnUpdaterD0Ev -_ZN12_GLOBAL__N_117MoveColumnUpdaterD1Ev -_ZN12_GLOBAL__N_117MoveColumnUpdater6updateERN5realm5TableE -_ZN12_GLOBAL__N_117MoveColumnUpdater13update_parentERN5realm5TableE -_ZN12_GLOBAL__N_117MoveColumnUpdaterD0Ev -_ZN12_GLOBAL__N_116MarkDirtyUpdaterD1Ev -_ZN12_GLOBAL__N_116MarkDirtyUpdater6updateERN5realm5TableE -_ZN12_GLOBAL__N_116MarkDirtyUpdater13update_parentERN5realm5TableE -_ZN12_GLOBAL__N_116MarkDirtyUpdaterD0Ev -_GLOBAL__sub_I_group.cpp -_ZTSN5realm18DescriptorMismatchE -_ZTIN5realm18DescriptorMismatchE -_ZTSN5realm14TableNameInUseE -_ZTIN5realm14TableNameInUseE -_ZTSN5realm11NoSuchTableE -_ZTIN5realm11NoSuchTableE -_ZTSN5realm20CrossTableLinkTargetE -_ZTIN5realm20CrossTableLinkTargetE -_ZTSN5realm5Group18DefaultTableWriterE -_ZTSN5realm5Group11TableWriterE -_ZTIN5realm5Group11TableWriterE -_ZTIN5realm5Group18DefaultTableWriterE -_ZTSN5realm4util4File9StreambufE -_ZTIN5realm4util4File9StreambufE -_ZTSN5realm4util18MemoryOutputStreamE -_ZTIN5realm4util18MemoryOutputStreamE -_ZTSN5realm4util21MemoryOutputStreambufE -_ZTIN5realm4util21MemoryOutputStreambufE -_ZTVN12_GLOBAL__N_119InsertColumnUpdaterE -_ZTSN12_GLOBAL__N_119InsertColumnUpdaterE -_ZTSN5realm5Table15AccessorUpdaterE -_ZTIN5realm5Table15AccessorUpdaterE -_ZTIN12_GLOBAL__N_119InsertColumnUpdaterE -_ZTVN12_GLOBAL__N_118EraseColumnUpdaterE -_ZTSN12_GLOBAL__N_118EraseColumnUpdaterE -_ZTIN12_GLOBAL__N_118EraseColumnUpdaterE -_ZTVN12_GLOBAL__N_117MoveColumnUpdaterE -_ZTSN12_GLOBAL__N_117MoveColumnUpdaterE -_ZTIN12_GLOBAL__N_117MoveColumnUpdaterE -.str63 -_ZTVN12_GLOBAL__N_116MarkDirtyUpdaterE -_ZTSN12_GLOBAL__N_116MarkDirtyUpdaterE -_ZTIN12_GLOBAL__N_116MarkDirtyUpdaterE -_ZTSN5realm5_impl15ArrayWriterBaseE -_ZTIN5realm5_impl15ArrayWriterBaseE -_ZN12_GLOBAL__N_120has_duplicate_valuesERKN5realm5ArrayE -_ZTSN5realm6BpTreeIxE15AdjustGEHandlerE -_ZTIN5realm6BpTreeIxE15AdjustGEHandlerE -_ZTSN5realm6OrNodeE -_ZTIN5realm6OrNodeE -_ZTSN5realm14ExpressionNodeE -_ZTIN5realm14ExpressionNodeE -_ZTSN5realm11LinksToNodeE -_ZTIN5realm11LinksToNodeE -_ZTSN5realm24LinksToNodeHandoverPatchE -_ZTIN5realm24LinksToNodeHandoverPatchE -_ZTSN5realm12SubtableNodeE -_ZTIN5realm12SubtableNodeE -_ZTSN5realm10BinaryNodeINS_5EqualEEE -_ZTIN5realm10BinaryNodeINS_5EqualEEE -_ZTSN5realm10BinaryNodeINS_8NotEqualEEE -_ZTIN5realm10BinaryNodeINS_8NotEqualEEE -_ZTSN5realm10BinaryNodeINS_10BeginsWithEEE -_ZTIN5realm10BinaryNodeINS_10BeginsWithEEE -_ZTSN5realm10BinaryNodeINS_8EndsWithEEE -_ZTIN5realm10BinaryNodeINS_8EndsWithEEE -_ZTSN5realm10BinaryNodeINS_8ContainsEEE -_ZTIN5realm10BinaryNodeINS_8ContainsEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIxEENS_5EqualEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIxEENS_5EqualEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIxEENS_8NotEqualEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIxEENS_8NotEqualEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIxEENS_4LessEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIxEENS_4LessEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIxEENS_12GreaterEqualEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIxEENS_12GreaterEqualEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIxEENS_9LessEqualEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIxEENS_9LessEqualEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIxEENS_7GreaterEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIxEENS_7GreaterEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIfEENS_8NotEqualEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIfEENS_8NotEqualEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIfEENS_4LessEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIfEENS_4LessEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIfEENS_7GreaterEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIfEENS_7GreaterEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIfEENS_12GreaterEqualEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIfEENS_12GreaterEqualEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIfEENS_9LessEqualEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIfEENS_9LessEqualEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIfEENS_5EqualEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIfEENS_5EqualEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIdEENS_5EqualEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIdEENS_5EqualEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIdEENS_9LessEqualEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIdEENS_9LessEqualEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIdEENS_12GreaterEqualEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIdEENS_12GreaterEqualEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIdEENS_7GreaterEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIdEENS_7GreaterEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIdEENS_4LessEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIdEENS_4LessEEE -_ZTSN5realm14TwoColumnsNodeINS_6ColumnIdEENS_8NotEqualEEE -_ZTIN5realm14TwoColumnsNodeINS_6ColumnIdEENS_8NotEqualEEE -_ZTSN5realm11IntegerNodeINS_6ColumnINS_4util8OptionalIxEEEENS_5EqualEEE -_ZTSN5realm15IntegerNodeBaseINS_6ColumnINS_4util8OptionalIxEEEEEE -_ZTSN5realm14ColumnNodeBaseE -_ZTIN5realm14ColumnNodeBaseE -_ZTIN5realm15IntegerNodeBaseINS_6ColumnINS_4util8OptionalIxEEEEEE -_ZTIN5realm11IntegerNodeINS_6ColumnINS_4util8OptionalIxEEEENS_5EqualEEE -_ZTSN5realm15FloatDoubleNodeINS_6ColumnIfEENS_5EqualEEE -_ZTIN5realm15FloatDoubleNodeINS_6ColumnIfEENS_5EqualEEE -_ZTSN5realm15FloatDoubleNodeINS_6ColumnIdEENS_5EqualEEE -_ZTIN5realm15FloatDoubleNodeINS_6ColumnIdEENS_5EqualEEE -_ZTSN5realm10StringNodeINS_5EqualEEE -_ZTSN5realm14StringNodeBaseE -_ZTIN5realm14StringNodeBaseE -_ZTIN5realm10StringNodeINS_5EqualEEE -_ZTSN5realm16SequentialGetterINS_16StringEnumColumnEEE -_ZTIN5realm16SequentialGetterINS_16StringEnumColumnEEE -_ZTSN5realm11IntegerNodeINS_6ColumnINS_4util8OptionalIxEEEENS_8NotEqualEEE -_ZTIN5realm11IntegerNodeINS_6ColumnINS_4util8OptionalIxEEEENS_8NotEqualEEE -_ZTSN5realm15FloatDoubleNodeINS_6ColumnIfEENS_8NotEqualEEE -_ZTIN5realm15FloatDoubleNodeINS_6ColumnIfEENS_8NotEqualEEE -_ZTSN5realm15FloatDoubleNodeINS_6ColumnIdEENS_8NotEqualEEE -_ZTIN5realm15FloatDoubleNodeINS_6ColumnIdEENS_8NotEqualEEE -_ZTSN5realm10StringNodeINS_8NotEqualEEE -_ZTIN5realm10StringNodeINS_8NotEqualEEE -.str79 -.str82 -_ZTSN5realm11IntegerNodeINS_6ColumnIxEENS_5EqualEEE -_ZTSN5realm15IntegerNodeBaseINS_6ColumnIxEEEE -_ZTIN5realm15IntegerNodeBaseINS_6ColumnIxEEEE -_ZTIN5realm11IntegerNodeINS_6ColumnIxEENS_5EqualEEE -_ZTSN5realm11IntegerNodeINS_6ColumnIxEENS_8NotEqualEEE -_ZTIN5realm11IntegerNodeINS_6ColumnIxEENS_8NotEqualEEE -_ZTSN5realm11IntegerNodeINS_6ColumnINS_4util8OptionalIxEEEENS_7GreaterEEE -_ZTIN5realm11IntegerNodeINS_6ColumnINS_4util8OptionalIxEEEENS_7GreaterEEE -_ZTSN5realm11IntegerNodeINS_6ColumnIxEENS_7GreaterEEE -_ZTIN5realm11IntegerNodeINS_6ColumnIxEENS_7GreaterEEE -_ZTSN5realm11IntegerNodeINS_6ColumnINS_4util8OptionalIxEEEENS_4LessEEE -_ZTIN5realm11IntegerNodeINS_6ColumnINS_4util8OptionalIxEEEENS_4LessEEE -_ZTSN5realm11IntegerNodeINS_6ColumnIxEENS_4LessEEE -_ZTIN5realm11IntegerNodeINS_6ColumnIxEENS_4LessEEE -_ZTSN5realm15FloatDoubleNodeINS_6ColumnIfEENS_7GreaterEEE -_ZTIN5realm15FloatDoubleNodeINS_6ColumnIfEENS_7GreaterEEE -_ZTSN5realm15FloatDoubleNodeINS_6ColumnIfEENS_12GreaterEqualEEE -_ZTIN5realm15FloatDoubleNodeINS_6ColumnIfEENS_12GreaterEqualEEE -_ZTSN5realm15FloatDoubleNodeINS_6ColumnIfEENS_9LessEqualEEE -_ZTIN5realm15FloatDoubleNodeINS_6ColumnIfEENS_9LessEqualEEE -_ZTSN5realm15FloatDoubleNodeINS_6ColumnIfEENS_4LessEEE -_ZTIN5realm15FloatDoubleNodeINS_6ColumnIfEENS_4LessEEE -_ZTSN5realm15FloatDoubleNodeINS_6ColumnIdEENS_7GreaterEEE -_ZTIN5realm15FloatDoubleNodeINS_6ColumnIdEENS_7GreaterEEE -_ZTSN5realm15FloatDoubleNodeINS_6ColumnIdEENS_12GreaterEqualEEE -_ZTIN5realm15FloatDoubleNodeINS_6ColumnIdEENS_12GreaterEqualEEE -_ZTSN5realm15FloatDoubleNodeINS_6ColumnIdEENS_9LessEqualEEE -_ZTIN5realm15FloatDoubleNodeINS_6ColumnIdEENS_9LessEqualEEE -_ZTSN5realm15FloatDoubleNodeINS_6ColumnIdEENS_4LessEEE -_ZTIN5realm15FloatDoubleNodeINS_6ColumnIdEENS_4LessEEE -_ZTSN5realm10StringNodeINS_8EqualInsEEE -_ZTIN5realm10StringNodeINS_8EqualInsEEE -_ZTSN5realm10StringNodeINS_10BeginsWithEEE -_ZTIN5realm10StringNodeINS_10BeginsWithEEE -_ZTSN5realm10StringNodeINS_13BeginsWithInsEEE -_ZTIN5realm10StringNodeINS_13BeginsWithInsEEE -_ZTSN5realm10StringNodeINS_8EndsWithEEE -_ZTIN5realm10StringNodeINS_8EndsWithEEE -_ZTSN5realm10StringNodeINS_11EndsWithInsEEE -_ZTIN5realm10StringNodeINS_11EndsWithInsEEE -_ZTSN5realm10StringNodeINS_8ContainsEEE -_ZTIN5realm10StringNodeINS_8ContainsEEE -_ZTSN5realm10StringNodeINS_11ContainsInsEEE -_ZTIN5realm10StringNodeINS_11ContainsInsEEE -_ZTSN5realm10StringNodeINS_11NotEqualInsEEE -_ZTIN5realm10StringNodeINS_11NotEqualInsEEE -_ZTSN5realm6ColumnINS_4util8OptionalIxEEEE -_ZTSN5realm10QueryStateIdEE -_ZTIN5realm10QueryStateIdEE -_ZTSN5realm6ColumnIfEE -_ZTSN5realm6ColumnIdEE -_ZTSN5realm10QueryStateIfEE -_ZTIN5realm10QueryStateIfEE -_ZN12_GLOBAL__N_121get_group_ndx_blockedEmRNS_9AggrStateERN5realm5TableE -_ZN12_GLOBAL__N_113get_group_ndxEmRNS_9AggrStateERN5realm5TableE -.str86 -.str87 -.str88 -.str89 -.str90 -.str91 -.str92 -.str93 -.str94 -.str95 -.str96 -.str97 -.str98 -.str99 -.str100 -.str101 -.str102 -.str104 -.str105 -.str106 -.str107 -.str108 -.str109 -.str110 -.str111 -.str112 -.str113 -_ZTSN5realm5Table21InsertSubtableColumnsE -_ZTSN5realm5Table15SubtableUpdaterE -_ZTIN5realm5Table15SubtableUpdaterE -_ZTIN5realm5Table21InsertSubtableColumnsE -.str114 -.str115 -.str116 -.str117 -.str118 -.str119 -.str120 -.str121 -_ZTSN5realm5Table20EraseSubtableColumnsE -_ZTIN5realm5Table20EraseSubtableColumnsE -_ZTSN5realm5Table19MoveSubtableColumnsE -_ZTIN5realm5Table19MoveSubtableColumnsE -.str122 -_ZTSN5realm5Table21RenameSubtableColumnsE -_ZTIN5realm5Table21RenameSubtableColumnsE -.str123 -.str124 -.str125 -.str126 -.str127 -.str128 -.str129 -.str130 -.str131 -.str132 -.str133 -.str134 -.str135 -.str136 -.str137 -.str138 -.str139 -.str140 -.str141 -.str142 -.str143 -.str144 -.str145 -.str146 -.str148 -.str149 -.str150 -.str151 -.str152 -.str153 -.str154 -.str155 -.str156 -.str157 -.str158 -.str159 -.str160 -.str161 -.str162 -.str163 -.str164 -.str165 -.str166 -.str167 -.str168 -.str169 -.str170 -.str171 -.str172 -.str173 -.str174 -.str175 -.str176 -.str177 -.str178 -.str179 -_ZTSN5realm14ConstTableViewE -_ZTIN5realm14ConstTableViewE -_ZTSN5realm5Table11SliceWriterE -_ZTIN5realm5Table11SliceWriterE -.str180 -.str181 -.str182 -_ZTSN5realm14ColumnTemplateINS_4util8OptionalIxEEEE -_ZTIN5realm14ColumnTemplateINS_4util8OptionalIxEEEE -_ZTIN5realm6ColumnINS_4util8OptionalIxEEEE -_ZTSN5realm6BpTreeINS_4util8OptionalIxEEE14SetNullHandlerE -_ZTIN5realm6BpTreeINS_4util8OptionalIxEEE14SetNullHandlerE -_ZTSN5realm6BpTreeINS_4util8OptionalIxEEE12EraseHandlerE -_ZTIN5realm6BpTreeINS_4util8OptionalIxEEE12EraseHandlerE -_ZTSN5realm6BpTreeINS_4util8OptionalIxEEE13UpdateHandlerE -_ZTIN5realm6BpTreeINS_4util8OptionalIxEEE13UpdateHandlerE -.str187 -_ZTSN5realm6BpTreeINS_4util8OptionalIxEEE12SliceHandlerE -_ZTIN5realm6BpTreeINS_4util8OptionalIxEEE12SliceHandlerE -_ZTSN5realm14ColumnTemplateIfEE -_ZTIN5realm14ColumnTemplateIfEE -_ZTIN5realm6ColumnIfEE -.str188 -_ZTSN5realm6BpTreeIfE14SetNullHandlerE -_ZTIN5realm6BpTreeIfE14SetNullHandlerE -.str189 -.str190 -.str191 -.str192 -.str193 -.str195 -_ZTSN5realm6BpTreeIfE12EraseHandlerE -_ZTIN5realm6BpTreeIfE12EraseHandlerE -_ZTSN5realm6BpTreeIfE13UpdateHandlerE -_ZTIN5realm6BpTreeIfE13UpdateHandlerE -_ZTSN5realm6BpTreeIfE12SliceHandlerE -_ZTIN5realm6BpTreeIfE12SliceHandlerE -_ZTSN5realm14ColumnTemplateIdEE -_ZTIN5realm14ColumnTemplateIdEE -_ZTIN5realm6ColumnIdEE -_ZTSN5realm6BpTreeIdE14SetNullHandlerE -_ZTIN5realm6BpTreeIdE14SetNullHandlerE -_ZTSN5realm6BpTreeIdE12EraseHandlerE -_ZTIN5realm6BpTreeIdE12EraseHandlerE -_ZTSN5realm6BpTreeIdE13UpdateHandlerE -_ZTIN5realm6BpTreeIdE13UpdateHandlerE -_ZTSN5realm6BpTreeIdE12SliceHandlerE -_ZTIN5realm6BpTreeIdE12SliceHandlerE -.str196 -_ZTSN5realm6ColumnINS_4util8OptionalIxEEE13CreateHandlerE -_ZTIN5realm6ColumnINS_4util8OptionalIxEEE13CreateHandlerE -_ZTSN5realm6ColumnIfE13CreateHandlerE -_ZTIN5realm6ColumnIfE13CreateHandlerE -_ZTSN5realm6ColumnIdE13CreateHandlerE -_ZTIN5realm6ColumnIdE13CreateHandlerE -.str197 -.str198 -.str199 -.str200 -.str201 -.str202 -.str203 -.str204 -_ZZN5realm15sequence_lengthEcE7lengths -_ZZN5realm12utf8_compareENS_10StringDataES0_E15collation_order -_GLOBAL__sub_I_utilities.cpp -_ZN12_GLOBAL__N_1L15a_popcount_bitsE -_ZZN5realm8fastrandEybE5state -_ZGVZN5realm8fastrandEybE5state -_ZTSN5realm11ReplicationE -_ZTSN5realm5_impl28TransactLogConvenientEncoderE -_ZTIN5realm5_impl28TransactLogConvenientEncoderE -_ZTIN5realm11ReplicationE -_ZTSN5realm5_impl7HistoryE -_ZTIN5realm5_impl7HistoryE -_ZN12_GLOBAL__N_122g_disable_sync_to_diskE diff --git a/Carthage/Build/tvOS/D498A3A8-CABE-3E77-A876-06631D49422B.bcsymbolmap b/Carthage/Build/tvOS/D498A3A8-CABE-3E77-A876-06631D49422B.bcsymbolmap deleted file mode 100644 index 7611ef1..0000000 --- a/Carthage/Build/tvOS/D498A3A8-CABE-3E77-A876-06631D49422B.bcsymbolmap +++ /dev/null @@ -1,2428 +0,0 @@ -BCSymbolMap Version: 1.0 -_TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TFSaCft12arrayLiteralGSax__GSax_ -_TFEsPs30RangeReplaceableCollectionType15reserveCapacityfWx5Index8Distance_T_ -_TFEsPs30RangeReplaceableCollectionTypeCuRd__s12SequenceTypeWx9Generator7Element_zWd__9GeneratorS2__rfqd__x -_TFEsPs30RangeReplaceableCollectionType16insertContentsOfuRd__s14CollectionTypeWx9Generator7Element_zWd__S1_S2__rfTqd__2atwx5Index_T_ -_TFEsPs30RangeReplaceableCollectionType13removeAtIndexfwx5IndexWx9Generator7Element_ -_TFEsPs30RangeReplaceableCollectionType17_customRemoveLastfT_GSqWx9Generator7Element__ -_TFEsPs30RangeReplaceableCollectionType11removeFirstfT_Wx9Generator7Element_ -_TFEsPs30RangeReplaceableCollectionType11removeFirstfSiT_ -_TFEsPs30RangeReplaceableCollectionType11removeRangefGVs5Rangewx5Index_T_ -_TFEsPs30RangeReplaceableCollectionType9removeAllfT12keepCapacitySb_T_ -_TFesRxs14CollectionTypewx11SubSequencezGVs5Slicex_wx5IndexzWxS0_S2__wx8_ElementzWxS0_9Generator7Element_WxS0_S3__zWxS0_S4_S5__WxS0_S4__zGVs17IndexingGeneratorGS1_x__WxS0_11SubSequence_zGS1_x_rS_g9subscriptFGVs5RangewxS2__GS1_x_ -_TFEsPs14CollectionType10prefixUpTofwx5Indexwx11SubSequence -_TFEsPs14CollectionType10suffixFromfwx5Indexwx11SubSequence -_TFEsPs14CollectionType13prefixThroughfwx5Indexwx11SubSequence -_TFEsPs14CollectionTypeg7isEmptySb -_TFEsPs14CollectionType30_customIndexOfEquatableElementfWx9Generator7Element_GSqGSqwx5Index__ -_TFEsPs14CollectionType18underestimateCountfT_Si -_TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___ -_TFEsPs12SequenceType6filterfzFzWx9Generator7Element_SbGSaWxS0_S1___ -_TFEsPs12SequenceType7forEachfzFzWx9Generator7Element_T_T_ -_TFEsPs14CollectionType9dropFirstfSiwx11SubSequence -_TFesRxs14CollectionTypewx5Indexs22BidirectionalIndexTyperS_8dropLastfSiwx11SubSequence -_TFEsPs14CollectionType6prefixfSiwx11SubSequence -_TFesRxs14CollectionTypewx5Indexs22BidirectionalIndexTyperS_6suffixfSiwx11SubSequence -_TFEsPs14CollectionType5splitfzTSi16allowEmptySlicesSb11isSeparatorFzWx9Generator7Element_Sb_GSawx11SubSequence_ -_TFEsPs12SequenceType31_customContainsEquatableElementfWx9Generator7Element_GSqSb_ -_TFEsPs14CollectionType18_preprocessingPassurfFxqd__GSqqd___ -_TFEsPs14CollectionType24_copyToNativeArrayBufferfT_GVs22_ContiguousArrayBufferWx9Generator7Element__ -_TFEsPs12SequenceType13_initializeTofGSpWx9Generator7Element__GSpWxS0_S1___ -_TFVC10RealmSwift5Realm13Configurationg16rlmConfigurationCSo21RLMRealmConfiguration -_TFEsPs14CollectionTypeg5firstGSqWx9Generator7Element__ -_TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__ -objectdestroy -_TPA__TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__ -_TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_ -objectdestroy.1 -_TPA__TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_ -_TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__ -_TPA__TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__ -__swift_noop_void_return -__swift_noop_self_return -_TTWOSC15RLMPropertyTypes16RawRepresentable5RealmFS0_CfT8rawValuewx8RawValue_GSqx_ -_TTWOSC15RLMPropertyTypes16RawRepresentable5RealmFS0_g8rawValuewx8RawValue -_TTWVSC17NSMatchingOptionss9Equatable10FoundationZFS0_oi2eefTxx_Sb -_TTWVSC17NSMatchingOptionss23ArrayLiteralConvertible10FoundationFS0_Cft12arrayLiteralGSawx7Element__x -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_CfT_x -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_5unionfxx -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_9intersectfxx -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_11exclusiveOrfxx -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_6insertfwx7ElementT_ -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_6removefwx7ElementGSqwxS2__ -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_12unionInPlacefxT_ -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_12unionInPlacefxT_ -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_12unionInPlacefxT_ -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_16intersectInPlacefxT_ -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_16intersectInPlacefxT_ -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_16intersectInPlacefxT_ -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_18exclusiveOrInPlacefxT_ -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_18exclusiveOrInPlacefxT_ -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_18exclusiveOrInPlacefxT_ -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_8subtractfxx -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_10isSubsetOffxSb -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_14isDisjointWithfxSb -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_12isSupersetOffxSb -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_g7isEmptySb -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_CuRd__s12SequenceTypewx7ElementzWd__9Generator7Element_rfqd__x -_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S__GSaS__GSaS__s12SequenceTypes_GVs17IndexingGeneratorGSaS___GS3_GSaS___s13GeneratorTypes_GVs10ArraySliceS_____TFEsPs14SetAlgebraTypeCuRd__s12SequenceTypewx7ElementzWd__9Generator7Element_rfqd__x -_TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S__GSaS__GSaS__s12SequenceTypes_GVs17IndexingGeneratorGSaS___GS3_GSaS___s13GeneratorTypes_GVs10ArraySliceS_____TFEsPs14SetAlgebraTypeCuRd__s12SequenceTypewx7ElementzWd__9Generator7Element_rfqd__x -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_15subtractInPlacefxT_ -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationZFS0_7elementfTwx7Element8subsumeswxS2__Sb -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationZFS0_7elementfTwx7Element14isDisjointWithwxS2__Sb -_TTWVSC26NSRegularExpressionOptionss23ArrayLiteralConvertible10FoundationFS0_Cft12arrayLiteralGSawx7Element__x -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_CfT_x -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_5unionfxx -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_9intersectfxx -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_11exclusiveOrfxx -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_6insertfwx7ElementT_ -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_6removefwx7ElementGSqwxS2__ -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_12unionInPlacefxT_ -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_16intersectInPlacefxT_ -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_18exclusiveOrInPlacefxT_ -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_8subtractfxx -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_10isSubsetOffxSb -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_14isDisjointWithfxSb -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_12isSupersetOffxSb -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_CuRd__s12SequenceTypewx7ElementzWd__9Generator7Element_rfqd__x -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_15subtractInPlacefxT_ -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationZFS0_7elementfTwx7Element8subsumeswxS2__Sb -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationZFS0_7elementfTwx7Element14isDisjointWithwxS2__Sb -_TTWVSC17NSMatchingOptionss16RawRepresentable10FoundationFS0_CfT8rawValuewx8RawValue_GSqx_ -_TTWVSC17NSMatchingOptionss16RawRepresentable10FoundationFS0_g8rawValuewx8RawValue -_TTWVSC17NSMatchingOptionss13OptionSetType10FoundationFS0_CfT8rawValuewx8RawValue_x -_TTSf4gs_gs___TZFsoi2eeFTSSSS_Sb -_TFVs20ManagedBufferPointerlu5valuex -_TFSaCfGVs12_ArrayBufferx_GSax_ -_TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ -_TFSaCuRd__s12SequenceTypexzWd__9Generator7Element_rfqd__GSax_ -_TFSag5countSi -_TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ -_TFSp10initializefxT_ -_TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TFVs22_ContiguousArrayBufferg5countSi -_TZFsoi2eeurFTGSqx_Vs26_OptionalNilComparisonType_Sb -_TFVs22_ContiguousArrayBuffers5countSi -_TFVs15ContiguousArrayCfT_GS_x_ -_TFVs15ContiguousArray6appendfxT_ -_TFSa6appendfxT_ -_TFs11numericCastu0_Rxs18_SignedIntegerType_S_rFxq_ -_TFVs15ContiguousArray15reserveCapacityfSiT_ -_TFEsPs14CollectionTypeg7indicesGVs5Rangewx5Index_ -_TFVs12_ArrayBufferg8capacitySi -_TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TFVs5SliceCfT4basex6boundsGVs5Rangewx5Index__GS_x_ -_TFFEsPs14CollectionType5splitFzTSi16allowEmptySlicesSb11isSeparatorFzWx9Generator7Element_Sb_GSawx11SubSequence_L_17appendSubsequencefT3endQQPS_5Index_Sb -_TZFsoi2neuRxs9EquatablerFTxx_Sb -_TFesRxs12SequenceTypexzwxPS_9GeneratorrS_8generatefT_x -_TFVs17GeneratorSequenceCfxGS_x_ -_TFVs17GeneratorSequence4nextfT_GSqwx7Element_ -_TTSf4gs_gs_gs_d___TF10RealmSwift4gsubFTSS8templateSS6stringSS5errorGVs33AutoreleasingUnsafeMutablePointerGSqCSo7NSError___GSqSS_ -_TMaVSC17NSMatchingOptions -__swift_memcpy8_8 -__swift_memcpy_array8_8 -__swift_memmove_array8_8 -get_field_types_NSMatchingOptions -_TMaVSC26NSRegularExpressionOptions -get_field_types_NSRegularExpressionOptions -_TWturGSax_s12SequenceTypes9Generator -_TWTurGSax_s12SequenceTypes9GeneratorPs13GeneratorType_ -_TWturGSax_s12SequenceTypes11SubSequence -_TWtuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypes7Element -_TWturGSax_s9Indexables8_Element -_TWturGVs20AnyForwardCollectionx_s12SequenceTypes9Generator -_TWTurGVs20AnyForwardCollectionx_s12SequenceTypes9GeneratorPs13GeneratorType_ -_TWturGVs20AnyForwardCollectionx_s12SequenceTypes11SubSequence -_TWturGVs14_IgnorePointerx_s20_PointerFunctionTypes7Element -_TWturGVs15ContiguousArrayx_s12SequenceTypes9Generator -_TWTurGSax_s14CollectionTypes11SubSequencePs9Indexable_ -_TWTurGSax_s14CollectionTypes11SubSequencePs12SequenceType_ -_TWturGVs22_ContiguousArrayBufferx_s14CollectionTypes9Generator -_TWturGVs22_ContiguousArrayBufferx_s14CollectionTypes11SubSequence -_TWTurGVs22_ContiguousArrayBufferx_s14CollectionTypes11SubSequencePs9Indexable_ -_TWTurGVs22_ContiguousArrayBufferx_s14CollectionTypes11SubSequencePs12SequenceType_ -__swift_memcpy4_4 -__swift_memcpy_array4_4 -__swift_memmove_array4_4 -_TwugOSC15RLMPropertyType -_TwupOSC15RLMPropertyType -_TwuiOSC15RLMPropertyType -get_field_types_RLMPropertyType -_TTSf4n_n_d___TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element8subsumeswxS0__Sb -_TTSf4n_n_d___TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element8subsumeswxS0__Sb -_TTSf4n_n_d___TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element14isDisjointWithwxS0__Sb -_TTSf4n_n_d___TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element14isDisjointWithwxS0__Sb -objectdestroy.14 -_swift_dead_method_stub -_TPA__TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__.7 -_TWturGVs15ContiguousArrayx_s12SequenceTypes11SubSequence -_TWturGSax_s14CollectionTypes11SubSequence -_TWturGSax_s14CollectionTypes9Generator -_TTWVSC26NSRegularExpressionOptionss16RawRepresentable10FoundationFS0_CfT8rawValuewx8RawValue_GSqx_ -objectdestroy.3 -objectdestroy.5 -objectdestroy.8 -objectdestroy.11 -_TWturGVs12AnyGeneratorx_s13GeneratorTypes7Element -_TWturGVs12_ArrayBufferx_s16_ArrayBufferTypes7Element -_TWturGVs12_ArrayBufferx_s9Indexables8_Element -_TWturGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypes7Element -_TWturGVs22_ContiguousArrayBufferx_s9Indexables8_Element -_TTWVSC26NSRegularExpressionOptionss9Equatable10FoundationZFS0_oi2eefTxx_Sb -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_g7isEmptySb -_TPA__TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__.13 -_TTWVSC26NSRegularExpressionOptionss16RawRepresentable10FoundationFS0_g8rawValuewx8RawValue -_TWTurGVs15ContiguousArrayx_s12SequenceTypes9GeneratorPs13GeneratorType_ -_TWTurGSax_s14CollectionTypes9GeneratorPs13GeneratorType_ -_TWTurGVs22_ContiguousArrayBufferx_s14CollectionTypes9GeneratorPs13GeneratorType_ -_TTWVSC26NSRegularExpressionOptionss13OptionSetType10FoundationFS0_CfT8rawValuewx8RawValue_x -_TPA__TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_.10 -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_8containsfwx7ElementSb -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_8containsfwx7ElementSb -globalinit_33_47969F13D2F39044D14973F482FBAD86_token0 -L_selector_data(_rlmArray) -L_selector(_rlmArray) -L_selector_data(count) -L_selector(count) -L_selector_data(defaultConfiguration) -L_selector(defaultConfiguration) -L_selector_data(path) -L_selector(path) -L_selector_data(inMemoryIdentifier) -L_selector(inMemoryIdentifier) -L_selector_data(encryptionKey) -L_selector(encryptionKey) -L_selector_data(readOnly) -L_selector(readOnly) -L_selector_data(schemaVersion) -L_selector(schemaVersion) -L_selector_data(migrationBlock) -L_selector(migrationBlock) -metadata -metadata.2 -metadata.4 -L_selector_data(customSchema) -L_selector(customSchema) -L_selector_data(disableFormatUpgrade) -L_selector(disableFormatUpgrade) -_TMLCSo12NSDictionary -L_selector_data(description) -L_selector(description) -L_selector_data(isEqualToObjectSchema:) -L_selector(isEqualToObjectSchema:) -L_selector_data(isEqualToProperty:) -L_selector(isEqualToProperty:) -metadata.6 -metadata.9 -metadata.12 -L_selector_data(isEqualToSchema:) -L_selector(isEqualToSchema:) -_TWPOSC15RLMPropertyTypes16RawRepresentable5Realm -_TWVVSC17NSMatchingOptions -_TMnVSC17NSMatchingOptions -_TMVSC17NSMatchingOptions -_TWPVSC17NSMatchingOptionss23ArrayLiteralConvertible10Foundation -_TWPVSC17NSMatchingOptionss9Equatable10Foundation -_TWPVSC17NSMatchingOptionss14SetAlgebraType10Foundation -_TWVVSC26NSRegularExpressionOptions -_TMnVSC26NSRegularExpressionOptions -_TMVSC26NSRegularExpressionOptions -_TWPVSC26NSRegularExpressionOptionss23ArrayLiteralConvertible10Foundation -_TWPVSC26NSRegularExpressionOptionss9Equatable10Foundation -_TWPVSC26NSRegularExpressionOptionss14SetAlgebraType10Foundation -_TWPVSC17NSMatchingOptionss16RawRepresentable10Foundation -_TWPVSC17NSMatchingOptionss13OptionSetType10Foundation -_TWPVSC26NSRegularExpressionOptionss16RawRepresentable10Foundation -_TWPVSC26NSRegularExpressionOptionss13OptionSetType10Foundation -_swift_FORCE_LOAD_$_swiftFoundation_$_RealmSwift -_swift_FORCE_LOAD_$_swiftObjectiveC_$_RealmSwift -_swift_FORCE_LOAD_$_swiftDarwin_$_RealmSwift -_swift_FORCE_LOAD_$_swiftDispatch_$_RealmSwift -l_protocol_conformances -got._TMps16RawRepresentable -_TWVOSC15RLMPropertyType -_TMnOSC15RLMPropertyType -_TMOSC15RLMPropertyType -got._TMps23ArrayLiteralConvertible -got._TMps9Equatable -got._TMps14SetAlgebraType -got._TMps13OptionSetType -field_type_vector_RLMPropertyType -field_type_vector_NSRegularExpressionOptions -field_type_vector_NSMatchingOptions -_TMLGCs23_ContiguousArrayStorageVSC26NSRegularExpressionOptions_ -_TMLGCs23_ContiguousArrayStorageVSC17NSMatchingOptions_ -metadata.15 -switch.table -Apple LLVM version 7.3.0 (clang-703.0.29) --emit-bc /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Aliases.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Error.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/List.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Migration.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Object.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/ObjectSchema.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Optional.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Property.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Realm.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmCollectionType.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmConfiguration.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Results.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Schema.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SortDescriptor.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SwiftVersion.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Util.swift -target arm64-apple-tvos9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-7.3.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS9.2.sdk -I /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Products/Release-appletvos -F /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Products/Release-appletvos -application-extension -g -module-cache-path /Users/realm/Library/Developer/Xcode/DerivedData/ModuleCache -serialize-debugging-options -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/RealmSwift-generated-files.hmap -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/RealmSwift-own-target-headers.hmap -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/RealmSwift-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/RealmSwift-project-headers.hmap -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Products/Release-appletvos/include -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/DerivedSources/arm64 -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/DerivedSources -Xcc -DREALM_HAVE_CONFIG -Xcc -D__ASSERTMACROS__ -Xcc -working-directory/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release -emit-module-doc-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/RealmSwift.swiftdoc -O -module-name RealmSwift -emit-module-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/RealmSwift.swiftmodule -emit-objc-header-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/RealmSwift-Swift.h -serialize-diagnostics-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/Aliases.dia -emit-dependencies-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/Aliases.d -num-threads 4 -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/Aliases.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/Error.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/List.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/Migration.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/Object.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/ObjectSchema.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/Optional.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/Property.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/Realm.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/RealmCollectionType.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/RealmConfiguration.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/Results.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/Schema.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/SortDescriptor.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/SwiftVersion.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-appletvos/RealmSwift.build/Objects-normal/arm64/Util.bc -resource-dir /Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -$NSDecimal$_exponent$getter - -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release -$NSDecimal$_exponent$setter -$NSDecimal$_length$getter -$NSDecimal$_length$setter -$NSDecimal$_isNegative$getter -$NSDecimal$_isNegative$setter -$NSDecimal$_isCompact$getter -$NSDecimal$_isCompact$setter -$NSDecimal$_reserved$getter -$NSDecimal$_reserved$setter -Apple Swift version 2.2 (swiftlang-703.0.18.1 clang-703.0.29) -Aliases.swift -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift -_TFEsPs30RangeReplaceableCollectionType17_customRemoveLastfSiSb -_TFVs15EmptyCollectionCfT_GS_x_ -_TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ -_TFVs15ContiguousArrayg5countSi -_TFSp14initializeFromfTGSpx_5countSi_T_ -_TFVs22_ContiguousArrayBufferg5ownerPs9AnyObject_ -_TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ -_TFVs22_ContiguousArrayBufferg10startIndexSi -_TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb -_TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb -_TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TFVs15ContiguousArray9_getCountfT_Si -_TFVs15ContiguousArray16_copyToNewBufferfSiT_ -_TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ -_TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ -_TFVs12_ArrayBufferCfT_GS_x_ -_TZFSa28_allocateBufferUninitializedfSiGVs12_ArrayBufferx_ -_TFSaCfT19_uninitializedCountSi_GSax_ -_TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ -_TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ -_TFVs20ManagedBufferPointerg6bufferPs9AnyObject_ -_TFVs12_ArrayBuffer20isUniquelyReferencedfT_Sb -_TFVs12_ArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TFSa40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TFVs22_ContiguousArrayBufferg8capacitySi -_TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TFSp7destroyfSiT_ -_TFSp18moveInitializeFromfTGSpx_5countSi_T_ -_TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ -_TFVs14_IgnorePointerCfT_GS_x_ -_TFSa16_copyToNewBufferfSiT_ -_TFSa36_reserveCapacityAssumingUniqueBufferfSiT_ -_TFVs12_ArrayBuffers5countSi -_TFVs12_ArrayBufferg19firstElementAddressGSpx_ -_TFSa37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ -_TFEsPs14_Incrementable17_successorInPlacefT_T_ -_TFs10_expectEnduRxs14CollectionTyperFTwx5Indexx_T_ -_TFs34_copyCollectionToNativeArrayBufferuRxs14CollectionTyperFxGVs22_ContiguousArrayBufferWx9Generator7Element__ -init -_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraTypeCft12arrayLiteralGSawx7Element__x -== -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_8containsfxSb -contains -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType5unionfxx -union -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType9intersectfxx -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType11exclusiveOrfxx -unionInPlace -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_6insertfwxS0_T_ -insert -remove -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_6removefwxS0_GSqwxS0__ -_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType8subtractfxx -subtract -_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType10isSubsetOffxSb -isSubsetOf -_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType14isDisjointWithfxSb -isDisjointWith -_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType12isSupersetOffxSb -intersect -isSupersetOf -_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraTypeg7isEmptySb -isEmpty.get -intersectInPlace -exclusiveOrInPlace -exclusiveOr -_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType15subtractInPlacefxT_ -subtractInPlace -element -_TTSg5Vs10_ArrayBody_VSC17NSMatchingOptions___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5VSC17NSMatchingOptions___TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5VSC17NSMatchingOptions___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5Vs10_ArrayBody_VSC17NSMatchingOptions___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_VSC17NSMatchingOptions___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ -_TTSg5VSC17NSMatchingOptions___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ -_TTSg5Vs10_ArrayBody_VSC17NSMatchingOptions___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5Vs10_ArrayBody_VSC17NSMatchingOptions___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_VSC17NSMatchingOptions___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TMaGCs23_ContiguousArrayStorageVSC17NSMatchingOptions_ -_TTSg5VSC17NSMatchingOptions___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TTSg5Vs10_ArrayBody_VSC17NSMatchingOptions___TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraTypeCft12arrayLiteralGSawx7Element__x -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_8containsfxSb -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType5unionfxx -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType9intersectfxx -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType11exclusiveOrfxx -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_6insertfwxS0_T_ -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_6removefwxS0_GSqwxS0__ -_TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType8subtractfxx -_TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType10isSubsetOffxSb -_TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType14isDisjointWithfxSb -_TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType12isSupersetOffxSb -_TTWSus9EquatablesZFS_oi2eefTxx_Sb -_TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraTypeg7isEmptySb -_TTWSus21BitwiseOperationsTypesZFS_g8allZerosx -_TTWSus21BitwiseOperationsTypesZFS_oi1xfTxx_x -_TTWSus21BitwiseOperationsTypesZFS_oi1afTxx_x -_TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType15subtractInPlacefxT_ -_TTSg5Vs10_ArrayBody_VSC26NSRegularExpressionOptions___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5VSC26NSRegularExpressionOptions___TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5VSC26NSRegularExpressionOptions___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5Vs10_ArrayBody_VSC26NSRegularExpressionOptions___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_VSC26NSRegularExpressionOptions___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ -_TTSg5VSC26NSRegularExpressionOptions___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ -_TTSg5Vs10_ArrayBody_VSC26NSRegularExpressionOptions___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5Vs10_ArrayBody_VSC26NSRegularExpressionOptions___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_VSC26NSRegularExpressionOptions___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TMaGCs23_ContiguousArrayStorageVSC26NSRegularExpressionOptions_ -_TTSg5VSC26NSRegularExpressionOptions___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TTSg5Vs10_ArrayBody_VSC26NSRegularExpressionOptions___TZFVs20ManagedBufferPointerg14_alignmentMaskSi -rawValue.get -_TWaVSC26NSRegularExpressionOptionss13OptionSetType10Foundation -_TWaVSC26NSRegularExpressionOptionss16RawRepresentable10Foundation -_TWaVSC17NSMatchingOptionss13OptionSetType10Foundation -_TWaVSC17NSMatchingOptionss16RawRepresentable10Foundation -_TWaVSC26NSRegularExpressionOptionss14SetAlgebraType10Foundation -_TWaVSC26NSRegularExpressionOptionss9Equatable10Foundation -_TWaVSC26NSRegularExpressionOptionss23ArrayLiteralConvertible10Foundation -_TWaVSC17NSMatchingOptionss14SetAlgebraType10Foundation -_TWaVSC17NSMatchingOptionss9Equatable10Foundation -_TWaVSC17NSMatchingOptionss23ArrayLiteralConvertible10Foundation -_TWaOSC15RLMPropertyTypes16RawRepresentable5Realm -description.get -_TIFV10RealmSwift14SortDescriptorcFT8propertySS9ascendingSb_S0_A0_ -_initializeTo -_copyToNativeArrayBuffer -_preprocessingPass -_customContainsEquatableElement -split -suffix -prefix -dropLast -dropFirst -forEach -filter -map -underestimateCount -generate -subscript.get -endIndex.get -startIndex.get -first.get -_customIndexOfEquatableElement -count.get -prefixThrough -suffixFrom -prefixUpTo -_addNotificationBlock -setValue -valueForKeyPath -valueForKey -average -sum -max -min -sorted -indexOf -realm.get -_TIFC10RealmSwift7Results6sortedFTSS9ascendingSb_GS0_x_A0_ -Results.swift -objectTypes.materialize -inMemoryIdentifier.materialize -path.materialize -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A5_ -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A3_ -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A2_ -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A1_ -defaultConfiguration.materialize -next -hashValue.get -_TTWSSs9EquatablesZFS_oi2eefTxx_Sb -_TTSg5O10RealmSwift12NotificationS0_s16RawRepresentableS__SSSSs9Equatables___TZFsoi2eeuRxs16RawRepresentablewx8RawValues9EquatablerFTxx_Sb -_TIFC10RealmSwift5Realm15writeCopyToPathFzTSS13encryptionKeyGSqCSo6NSData__T_A0_ -Realm.swift -_TIFC10RealmSwift5Realm13dynamicCreateFTSS5valuePs9AnyObject_6updateSb_CS_13DynamicObjectA1_ -_TIFC10RealmSwift5Realm13dynamicCreateFTSS5valuePs9AnyObject_6updateSb_CS_13DynamicObjectA0_ -_TIFC10RealmSwift5Realm6createuRxCS_6ObjectrFTMx5valuePs9AnyObject_6updateSb_xA1_ -_TIFC10RealmSwift5Realm6createuRxCS_6ObjectrFTMx5valuePs9AnyObject_6updateSb_xA0_ -_TIFC10RealmSwift5Realm3adduRxs12SequenceTypeWx9Generator7Element_CS_6ObjectrFTx6updateSb_T_A0_ -_TIFC10RealmSwift5Realm3addFTCS_6Object6updateSb_T_A0_ -_TIFC10RealmSwift5RealmcFzT13configurationVS0_13Configuration_S0_A_ -_TIFC10RealmSwift13RealmOptionalcFTGSqx__GS0_x_A_ -Optional.swift -subscript.materialize -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs12_ArrayBufferg9_isNativeSb -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs12_ArrayBufferg19firstElementAddressGSpx_ -_TTSg5Vs10_ArrayBody_TPSo9NSCopying_Ps9AnyObject_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -__swift_memmove_array16_8 -__swift_memcpy_array16_8 -__swift_memcpy16_8 -_TTSg5Vs10_ArrayBody_TPSo9NSCopying_Ps9AnyObject_____TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs22_ContiguousArrayBuffers5countSi -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs12_ArrayBuffers5countSi -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs12_ArrayBufferCfT_GS_x_ -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFSaCfT19_uninitializedCountSi_GSax_ -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TMaCSo12NSDictionary -_TIFC10RealmSwift9Migration6createFTSS5valuePs9AnyObject__CS_13DynamicObjectA0_ -Migration.swift -_TTRXFo_oXFo_oCSo12RLMMigrationdVs6UInt64_dT___oXFo_oC10RealmSwift9MigrationdS0__dT__zoPs9ErrorType__XFo_iXFo_iTS_S0___iT___iXFo_iT9migrationS2_16oldSchemaVersionS0___iT__zoPS3___ -_TFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_ -_TTSg5SSSSs9Equatables___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb -_TTSg5SSSSs9Equatables___TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb -path.set -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A4_ -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A0_ -_TFSSCfT21_builtinStringLiteralBp8byteSizeBw7isASCIIBi1__SS -_TTSf4n_n_n_d___TFSSCfT21_builtinStringLiteralBp8byteSizeBw7isASCIIBi1__SS -_TMaCSo21RLMRealmConfiguration -_TTSg5FTCSo12RLMMigrationVs6UInt64_T__FT9migrationC10RealmSwift9Migration16oldSchemaVersionS0__T____TFSq3mapurfzFzxqd__GSqqd___ -fromRLMRealmConfiguration -defaultConfiguration.get -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A_ -_TIF10RealmSwift12migrateRealmFTVCS_5Realm13Configuration_GSqCSo7NSError_A_ -_TIF10RealmSwift19schemaVersionAtPathFTSS13encryptionKeyGSqCSo6NSData_5errorGVs33AutoreleasingUnsafeMutablePointerGSqCSo7NSError___GSqVs6UInt64_A1_ -_TIF10RealmSwift19schemaVersionAtPathFTSS13encryptionKeyGSqCSo6NSData_5errorGVs33AutoreleasingUnsafeMutablePointerGSqCSo7NSError___GSqVs6UInt64_A0_ -removeAll -removeRange -removeFirst -_customRemoveLast -removeAtIndex -insertContentsOf -appendContentsOf -append -reserveCapacity -replaceRange -_TIFC10RealmSwift4List6sortedFTSS9ascendingSb_GCS_7Resultsx_A0_ -List.swift -_code.get -rlmError.get -_domain.get -_TFSig9hashValueSi -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Aliases.swift -__swift_memcpy1_1 -__swift_memcpy_array1_1 -__swift_memmove_array1_1 -_TwxsO10RealmSwift5Error -_TwxgO10RealmSwift5Error -_TwugO10RealmSwift5Error -_TwupO10RealmSwift5Error -_TwuiO10RealmSwift5Error -get_field_types_Error -_TMfO10RealmSwift5Error -got._TMps8Hashable -got._TMps9ErrorType -field_type_vector_Error -_TMaO10RealmSwift5Error -Error.swift -_TWaO10RealmSwift5Errors9EquatableS_ -_TWaO10RealmSwift5Errors9ErrorTypeS_ -_TWaO10RealmSwift5Errors8HashableS_ -~= -_TZFsoi2eeFTSSSS_Sb -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Error.swift -_TToFC10RealmSwift8ListBaseg11descriptionSS -_TToFC10RealmSwift8ListBaseg5countSi -_TToFC10RealmSwift8ListBasecfT5arrayGSQCSo8RLMArray__GSQS0__ -_TToFC10RealmSwift8ListBasecfT_S0_ -_TFFC10RealmSwift4Listg5realmGSqCS_5Realm_U_FCSo8RLMRealmS1_ -_TToFC10RealmSwift4Listg11invalidatedSb -_TToFC10RealmSwift4ListcfT_GS0_x_ -_TToFC10RealmSwift4List11valueForKeyfSSGSqPs9AnyObject__ -_TToFC10RealmSwift4List15valueForKeyPathfSSGSqPs9AnyObject__ -_TToFC10RealmSwift4List8setValuefTGSqPs9AnyObject__6forKeySS_T_ -_TFC10RealmSwift7ResultsCfCSo10RLMResultsGS0_x_ -_TFFC10RealmSwift4List6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrFqd__GCS_7Resultsx_U_FS4_Ps9AnyObject_ -_TTRG__RxC10RealmSwift6Objectd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrXFo_oS4__oPs9AnyObject_zoPs9ErrorType__XFo_iS4__iPS5__zoPS6___ -_TToFC10RealmSwift4List13removeAtIndexfSiT_ -_TToFC10RealmSwift4List10removeLastfT_T_ -_TToFC10RealmSwift4List9removeAllfT_T_ -_TToFC10RealmSwift4List4movefT4fromSi2toSi_T_ -_TToFC10RealmSwift4List4swapfTSiSi_T_ -_TTRXFo_oCSo8RLMArrayoCSo7NSError_dT__XFdCb_dS_dS0__dT__ -_TFC10RealmSwift12RLMGeneratorCfT10collectionPSo13RLMCollection__GS0_x_ -_TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ -_TFEsPs12SequenceType7reversefT_GSaWx9Generator7Element__ -_TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ -_TTSg5SSSSs10Streamables___TFs27_toStringReadOnlyStreamableuRxs10StreamablerFxSS -_TFs4swapurFTRxRx_T_ -_TFSaap9subscriptFSix -_TFVs17IndexingGeneratorCfxGS_x_ -_TTSf4n_gs___TF10RealmSwift21throwForNegativeIndexFTSi13parameterNameSS_T_ -_TMaGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__ -_TPA__TTRG__RxC10RealmSwift6Objectd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrXFo_oS4__oPs9AnyObject_zoPs9ErrorType__XFo_iS4__iPS5__zoPS6___ -_TPA__TFFC10RealmSwift4List20addNotificationBlockFFGS0_x_T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayCSo7NSError_T_ -block_copy_helper -block_destroy_helper -_TPA__TFFC10RealmSwift4List21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayS2__T_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_7Element -_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_ -_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequencePs9Indexable_ -_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequencePs12SequenceType_ -_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_9Generator -_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_9GeneratorPs13GeneratorType_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_11SubSequence -get_field_types_ListBase -get_field_types_List -create_generic_metadata_List -_TMaGCs23_ContiguousArrayStorageSS_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_9Generator -_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s9IndexableS_8_Element -block_destroy_helper.8 -block_copy_helper.7 -_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_9GeneratorPs13GeneratorType_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequence -L_selector_data(initWithArray:) -L_selector(initWithArray:) -L_selector_data(allocWithZone:) -L_selector(allocWithZone:) -L_selector_data(init) -L_selector(init) -L_selector_data(dealloc) -L_selector(dealloc) -L_selector_data(realm) -L_selector(realm) -L_selector_data(isInvalidated) -L_selector(isInvalidated) -L_selector_data(className) -L_selector(className) -L_selector_data(initWithObjectClassName:) -L_selector(initWithObjectClassName:) -L_selector_data(indexOfObject:) -L_selector(indexOfObject:) -L_selector_data(indexOfObjectWithPredicate:) -L_selector(indexOfObjectWithPredicate:) -_TMLPs9AnyObject_ -_PROTOCOL__TtPs9AnyObject_ -l_OBJC_LABEL_PROTOCOL_$__TtPs9AnyObject_ -l_OBJC_PROTOCOL_REFERENCE_$__TtPs9AnyObject_ -L_selector_data(predicateWithFormat:argumentArray:) -L_selector(predicateWithFormat:argumentArray:) -L_selector_data(objectAtIndexedSubscript:) -L_selector(objectAtIndexedSubscript:) -L_selector_data(setObject:atIndexedSubscript:) -L_selector(setObject:atIndexedSubscript:) -L_selector_data(firstObject) -L_selector(firstObject) -L_selector_data(lastObject) -L_selector(lastObject) -L_selector_data(valueForKey:) -L_selector(valueForKey:) -L_selector_data(valueForKeyPath:) -L_selector(valueForKeyPath:) -L_selector_data(setValue:forKey:) -L_selector(setValue:forKey:) -L_selector_data(objectsWithPredicate:) -L_selector(objectsWithPredicate:) -_TMLGCs23_ContiguousArrayStorageV10RealmSwift14SortDescriptor_ -_TMLGSaV10RealmSwift14SortDescriptor_ -_TWLGSaV10RealmSwift14SortDescriptor_urGSax_s12SequenceTypes -_TMLGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__ -_TWLGSaV10RealmSwift14SortDescriptor_urGSax_s9Indexables -_TWLGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__uRxs9IndexablerGS_x_s13GeneratorTypes -_TMLGVs10ArraySliceV10RealmSwift14SortDescriptor_ -L_selector_data(sortedResultsUsingDescriptors:) -L_selector(sortedResultsUsingDescriptors:) -L_selector_data(predicateWithValue:) -L_selector(predicateWithValue:) -L_selector_data(addObject:) -L_selector(addObject:) -L_selector_data(insertObject:atIndex:) -L_selector(insertObject:atIndex:) -L_selector_data(removeObjectAtIndex:) -L_selector(removeObjectAtIndex:) -L_selector_data(removeLastObject) -L_selector(removeLastObject) -L_selector_data(removeAllObjects) -L_selector(removeAllObjects) -L_selector_data(replaceObjectAtIndex:withObject:) -L_selector(replaceObjectAtIndex:withObject:) -L_selector_data(moveObjectAtIndex:toIndex:) -L_selector(moveObjectAtIndex:toIndex:) -L_selector_data(exchangeObjectAtIndex:withObjectAtIndex:) -L_selector(exchangeObjectAtIndex:withObjectAtIndex:) -block_descriptor -L_selector_data(addNotificationBlock:) -L_selector(addNotificationBlock:) -block_descriptor.9 -_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_ -L_selector_data(descriptionWithMaxDepth:) -_METACLASS_DATA__TtC10RealmSwift8ListBase -_INSTANCE_METHODS__TtC10RealmSwift8ListBase -_PROPERTIES__TtC10RealmSwift8ListBase -_DATA__TtC10RealmSwift8ListBase -_TWoFC10RealmSwift8ListBaseP33_027551CC6B6B2DBBB6CF4A740CB6E5D623descriptionWithMaxDepthfSuSS -_TMfC10RealmSwift8ListBase -L_selector_data(invalidated) -L_selector_data(removeAtIndex:) -L_selector_data(removeLast) -L_selector_data(removeAll) -L_selector_data(moveFrom:to:) -L_selector_data(swap::) -_INSTANCE_METHODS__TtC10RealmSwift4List -_PROPERTIES__TtC10RealmSwift4List -got._TMp10RealmSwift19RealmCollectionType -got._TMps30RangeReplaceableCollectionType -got._TMps14CollectionType -got._TMps9Indexable -got._TMps12SequenceType -field_type_vector_ListBase -L_selector_data(getObjects:range:) -L_selector(getObjects:range:) -L_selector_data(objectAtIndex:) -L_selector(objectAtIndex:) -L_selector_data(sortDescriptorWithProperty:ascending:) -L_selector(sortDescriptorWithProperty:ascending:) -_TMLGCs23_ContiguousArrayStorageSS_ -L_selector_data(objectClassName) -L_selector(objectClassName) -L_selector(descriptionWithMaxDepth:) -L_selector_data(initWithPattern:options:error:) -L_selector(initWithPattern:options:error:) -L_selector_data(stringByReplacingMatchesInString:options:range:withTemplate:) -L_selector(stringByReplacingMatchesInString:options:range:withTemplate:) -objc_classes -_TTWVVSS9UTF16View5Indexs16ForwardIndexTypesFS1_10distanceTofxwx8Distance -_TFSSg5utf16VSS9UTF16View -_TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffer10getElementfSix -_TTSg5GSaVSC17NSMatchingOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ -_TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBufferg5countSi -_TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffers5countSi -_TTSg5VSC17NSMatchingOptions___TFVs12_ArrayBuffers5countSi -_TTSg5VSC17NSMatchingOptions___TFSaCfT19_uninitializedCountSi_GSax_ -_TTSg5VSC17NSMatchingOptions___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffer10getElementfSix -_TTSg5GSaVSC26NSRegularExpressionOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ -_TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBufferg5countSi -_TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffers5countSi -_TTSg5VSC26NSRegularExpressionOptions___TFVs12_ArrayBuffers5countSi -_TTSg5VSC26NSRegularExpressionOptions___TFVs12_ArrayBufferCfT_GS_x_ -_TTSg5VSC26NSRegularExpressionOptions___TFSaCfT19_uninitializedCountSi_GSax_ -_TTSg5VSC26NSRegularExpressionOptions___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TFSSCft19stringInterpolationGSaSS__SS -_TTSg5SS___TFSa9_getCountfT_Si -_TFSSCfT26stringInterpolationSegmentSS_SS -_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5SS___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ -_TTSg5SS___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ -_TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -gsub -_TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -_TTSg5SS___TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x -_TTSf4g_d___TFSSCft19stringInterpolationGSaSS__SS -_TTSg5SS___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TTSg5SS___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg14_alignmentMaskSi -descriptionWithMaxDepth -_TTRGRxC10RealmSwift6ObjectrXFo_oCSo8RLMRealm_oCS_5RealmzoPs9ErrorType__XFo_iS1__iS2_zoPS3___ -rlmSortDescriptorValue.get -_TFFC10RealmSwift4List20addNotificationBlockFFGS0_x_T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayCSo7NSError_T_ -_TFVs12_ArrayBuffer28isUniquelyReferencedOrPinnedfT_Sb -_TFVs12_ArrayBuffer38isMutableAndUniquelyReferencedOrPinnedfT_Sb -_TFVs12_ArrayBufferg21needsElementTypeCheckSb -_TFVs12_ArrayBuffer18_typeCheckSlowPathfSiT_ -_TFVs12_ArrayBuffer10_typeCheckfGVs5RangeSi_T_ -_TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TFVs12_ArrayBufferg10startIndexSi -_TZFSa11_copyBufferfRGVs12_ArrayBufferx_T_ -_TFSa29_makeMutableAndUniqueOrPinnedfT_T_ -_TFVs12_ArrayBufferg20_isNativeTypeCheckedSb -_TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -_TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ -_TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken -_TFSa22_checkSubscript_nativefSiT_ -_TFVs12_ArrayBufferg41_unconditionalMutableSubscriptBaseAddressGSpx_ -_TFSa18_getElementAddressfSiGSpx_ -_TFVs12_ArrayBufferg5ownerPs9AnyObject_ -_TFVs12_ArrayBufferg11nativeOwnerPs9AnyObject_ -_TFSa33_getOwnerWithSemanticLabel_nativefT_Bo -_TFSa16_getOwner_nativefT_Bo -_TFFC10RealmSwift4List21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayS2__T_ -_TMaC10RealmSwift8ListBase -_TWauRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_4Listx_s9IndexableS_ -_TWauRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_ -_TTSg5SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si___TFVs14RangeGenerator4nextfT_GSqx_ -_TTWSis9EquatablesZFS_oi2eefTxx_Sb -_TTWSis14_IncrementablesFS_17_successorInPlacefT_T_ -deinit -addNotificationBlock -swap -move -replace -removeLast -_TMaGVs10ArraySliceV10RealmSwift14SortDescriptor_ -_TWlGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__uRxs9IndexablerGS_x_s13GeneratorTypes -_TWlGSaV10RealmSwift14SortDescriptor_urGSax_s9Indexables -_TWlGSaV10RealmSwift14SortDescriptor_urGSax_s12SequenceTypes -_TMaGSaV10RealmSwift14SortDescriptor_ -_TTSg5V10RealmSwift14SortDescriptor___TFSaCft12arrayLiteralGSax__GSax_ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5V10RealmSwift14SortDescriptor___TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5V10RealmSwift14SortDescriptor___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5V10RealmSwift14SortDescriptor___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5V10RealmSwift14SortDescriptor___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ -_TTSg5V10RealmSwift14SortDescriptor___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TMaGCs23_ContiguousArrayStorageV10RealmSwift14SortDescriptor_ -_TTSg5V10RealmSwift14SortDescriptor___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg14_alignmentMaskSi -last.get -subscript.set -_TIF10RealmSwift21throwForNegativeIndexFTSi13parameterNameSS_T_A0_ -_TMaPs9AnyObject_ -_TMaCSo9RLMObject -notFoundToNil -invalidated.get -_TPA__TTRGRxC10RealmSwift6ObjectrXFo_oCSo8RLMRealm_oCS_5RealmzoPs9ErrorType__XFo_iS1__iS2_zoPS3___ -_TTSg5CSo8RLMRealm_C10RealmSwift5Realm___TFSq3mapurfzFzxqd__GSqqd___ -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/List.swift -_TTRXFo_oGSqCSo9RLMObject_oGSqS___dT__XFdCb_dGSqS__dGSqS___dT__ -_TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_ -_TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__ -_TPA__TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__ -_TPA__TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_ -_TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFo_iTS_S0___iT__ -_TPA__TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFo_iTS_S0___iT__ -_TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFdCb_dS_dS0__dT__ -_TPA__TFFC10RealmSwift9Migration9enumerateFTSSFT9oldObjectGSqCS_13DynamicObject_9newObjectGSqS1___T__T_U_FTGSqCSo9RLMObject_GSqS2___T_ -get_field_types_Migration -_TMaCSo15RLMObjectSchema -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBuffer19_getElementSlowPathfSiPs9AnyObject_ -_TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__ -objectdestroy.7 -block_destroy_helper.10 -_TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__ -block_copy_helper.9 -L_selector_data(schemaVersionAtPath:encryptionKey:error:) -L_selector(schemaVersionAtPath:encryptionKey:error:) -L_selector_data(setPath:) -L_selector(setPath:) -L_selector_data(setEncryptionKey:) -L_selector(setEncryptionKey:) -L_selector_data(setReadOnly:) -L_selector(setReadOnly:) -L_selector_data(setSchemaVersion:) -L_selector(setSchemaVersion:) -L_selector_data(setMigrationBlock:) -L_selector(setMigrationBlock:) -L_selector_data(setCustomSchema:) -L_selector(setCustomSchema:) -L_selector_data(setDisableFormatUpgrade:) -L_selector(setDisableFormatUpgrade:) -L_selector_data(migrateRealm:) -L_selector(migrateRealm:) -L_selector_data(setInMemoryIdentifier:) -L_selector(setInMemoryIdentifier:) -L_selector_data(oldSchema) -L_selector(oldSchema) -L_selector_data(newSchema) -L_selector(newSchema) -metadata.8 -block_descriptor.11 -L_selector_data(enumerateObjects:block:) -L_selector(enumerateObjects:block:) -L_selector_data(createObject:withValue:) -L_selector(createObject:withValue:) -L_selector_data(deleteDataForClassName:) -L_selector(deleteDataForClassName:) -_METACLASS_DATA__TtC10RealmSwift9Migration -_IVARS__TtC10RealmSwift9Migration -_DATA__TtC10RealmSwift9Migration -_TWoFC10RealmSwift9MigrationCfCSo12RLMMigrationS0_ -_TMfC10RealmSwift9Migration -field_type_vector_Migration -_TMLCSo12RLMMigration -L_selector_data(objectSchema) -L_selector(objectSchema) -_TMLCSo15RLMObjectSchema -L_selector_data(setAccessorClass:) -L_selector(setAccessorClass:) -L_selector_data(setIsSwiftClass:) -L_selector(setIsSwiftClass:) -_TTSg5CSo15RLMObjectSchema___TFVs22_ContiguousArrayBufferg5countSi -_TTSg5Vs10_ArrayBody_CSo15RLMObjectSchema___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5CSo15RLMObjectSchema___TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ -_TTSg5Vs10_ArrayBody_CSo15RLMObjectSchema___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5Vs10_ArrayBody_CSo15RLMObjectSchema___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5Vs10_ArrayBody_CSo15RLMObjectSchema___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_CSo15RLMObjectSchema___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5CSo15RLMObjectSchema___TFVs22_ContiguousArrayBuffer10getElementfSix -_TTSg5CSo15RLMObjectSchema___TFVs22_ContiguousArrayBufferg9subscriptFSix -_TTSg5CSo15RLMObjectSchema___TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg20_isNativeTypeCheckedSb -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg32arrayPropertyIsNativeTypeCheckedSb -_TTSg5CSo15RLMObjectSchema___TFSa29_hoistableIsNativeTypeCheckedfT_Sb -_TTSg5GSaCSo15RLMObjectSchema_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ -_TTSg5CSo15RLMObjectSchema___TTWurGSax_s9IndexablesFS_g8endIndexwx5Index -_TTSg5CSo15RLMObjectSchema___TFs25_isClassOrObjCExistentialurFMxSb -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg9_isNativeSb -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg5countSi -_TTSg5CSo15RLMObjectSchema___TFSa9_getCountfT_Si -_TTSg5CSo15RLMObjectSchema___TFSag10startIndexSi -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ -_TTSg5CSo15RLMObjectSchema___TFSag9subscriptFSix -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ -_TTSg5CSo15RLMObjectSchema___TFSag8endIndexSi -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TMaGSqCSo9RLMObject_ -_TFFC10RealmSwift9Migration9enumerateFTSSFT9oldObjectGSqCS_13DynamicObject_9newObjectGSqS1___T__T_U_FTGSqCSo9RLMObject_GSqS2___T_ -_TMaCSo12RLMMigration -_TMaC10RealmSwift9Migration -deleteData -delete -create -enumerate -newSchema.get -oldSchema.get -accessorMigrationBlock -_TFFVC10RealmSwift5Realm13Configurationg16rlmConfigurationCSo21RLMRealmConfigurationU_FFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS4__T_ -_TTRXFo_oXFo_oC10RealmSwift9MigrationdVs6UInt64_dT___oXFo_oCSo12RLMMigrationdS1__dT__zoPs9ErrorType__XFo_iXFo_iT9migrationS0_16oldSchemaVersionS1___iT___iXFo_iTS2_S1___iT__zoPS3___ -path.get -_TTSg5FT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T__FTCSo12RLMMigrationS1__T____TFSq3mapurfzFzxqd__GSqqd___ -rlmConfiguration.get -inMemoryIdentifier.get -migrateRealm -_TMaCSo8RLMRealm -schemaVersionAtPath -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Migration.swift -_TToFC10RealmSwift6ObjectcfT_S0_ -_TToFC10RealmSwift6ObjectcfT5valuePs9AnyObject__S0_ -_TToFC10RealmSwift6Objectg11invalidatedSb -_TToFC10RealmSwift6Objectg11descriptionSS -_TToFC10RealmSwift6Objectg9classNameSS -_TToZFC10RealmSwift6Object15objectUtilClassfSbPMPs9AnyObject_ -_TToZFC10RealmSwift6Object10primaryKeyfT_GSqSS_ -_TToZFC10RealmSwift6Object17ignoredPropertiesfT_GSaSS_ -_TFs15_arrayForceCastu0_rFGSax_GSaq__ -_TToFC10RealmSwift6Objectg9subscriptFSSGSqPs9AnyObject__ -_TToFC10RealmSwift6Objects9subscriptFSSGSqPs9AnyObject__ -_TToFC10RealmSwift6Object7isEqualfGSqPs9AnyObject__Sb -_TToFC10RealmSwift6ObjectcfT5realmCSo8RLMRealm6schemaCSo15RLMObjectSchema_S0_ -_TToFC10RealmSwift6ObjectcfT5valuePs9AnyObject_6schemaCSo9RLMSchema_S0_ -_TFC10RealmSwift13DynamicObject15listForPropertyfCSo11RLMPropertyCSo11RLMListBase -_TToFC10RealmSwift13DynamicObject15listForPropertyfCSo11RLMPropertyCSo11RLMListBase -_TFC10RealmSwift13DynamicObject19optionalForPropertyfCSo11RLMPropertyCSo15RLMOptionalBase -_TToFC10RealmSwift13DynamicObject19optionalForPropertyfCSo11RLMPropertyCSo15RLMOptionalBase -_TToFC10RealmSwift13DynamicObject20valueForUndefinedKeyfSSGSqPs9AnyObject__ -_TToFC10RealmSwift13DynamicObject8setValuefTGSqPs9AnyObject__15forUndefinedKeySS_T_ -_TToZFC10RealmSwift13DynamicObject28shouldIncludeInDefaultSchemafT_Sb -_TToFC10RealmSwift13DynamicObjectcfT_S0_ -_TToFC10RealmSwift13DynamicObjectcfT5valuePs9AnyObject__S0_ -_TToFC10RealmSwift13DynamicObjectcfT5realmCSo8RLMRealm6schemaCSo15RLMObjectSchema_S0_ -_TToFC10RealmSwift13DynamicObjectcfT5valuePs9AnyObject_6schemaCSo9RLMSchema_S0_ -_TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getGenericListPropertyNamesFPs9AnyObject_CSo7NSArrayU0_FT5labelGSqSS_5valueP__GSqSS_ -_TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb -_TToFC10RealmSwift10ObjectUtilcfT_S0_ -globalinit_33_47969F13D2F39044D14973F482FBAD86_func0 -_TFVs12_ArrayBuffer19requestNativeBufferfT_GSqGVs22_ContiguousArrayBufferx__ -_TFSaCfT20_immutableCocoaArrayPs16_NSArrayCoreType__GSax_ -_TFVs12_ArrayBuffer13_asCocoaArrayfT_Ps16_NSArrayCoreType_ -_TFVs22_ContiguousArrayBuffer30withUnsafeMutableBufferPointerurfzFzGSrx_qd__qd__ -_TFFs15_arrayForceCastu0_rFGSax_GSaq__U_FGSrQ0__T_ -_TFs19_bridgeToObjectiveCurFxGSqPs9AnyObject__ -_TFVs22_ContiguousArrayBuffer13_asCocoaArrayfT_Ps16_NSArrayCoreType_ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TZFOs25_VariantDictionaryStorage24maybeGetFromCocoaStoragefTVs23_CocoaDictionaryStorage6forKeyx_GSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TZFOs25_VariantDictionaryStorage24maybeGetFromCocoaStoragefTVs23_CocoaDictionaryStorage6forKeyx_GSqq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ -_TFVs12_ArrayBufferg5countSi -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ -_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ -_TTSg5SS_CSo15RLMOptionalBase___TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ -_TTSg5SS___TFSa16_copyToNewBufferfSiT_ -_TTSg5GVs12_ArrayBufferSS_GS_SS_s16_ArrayBufferTypes_SS_GVs17IndexingGeneratorGS_SS__GS1_GS_SS__s13GeneratorTypes_SS_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferSS_GS6_SS_s14CollectionTypes_GS1_GS6_SS__GS1_GS6_SS__S2_s_SS_SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_SS_GS6_SS_s9IndexablesGS6_SS_s12SequenceTypes_GS1_GS6_SS__GS1_GS6_SS__S2_s_SS_SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_SS__SS_SS_SS___TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5GVs22_ContiguousArrayBufferT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s16_ArrayBufferTypes_T5labelGSqSS_5valueP___GVs17IndexingGeneratorGS_T5labelGSqSS_5valueP____GS1_GS_T5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferT5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s14CollectionTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s9IndexablesGS6_T5labelGSqSS_5valueP___s12SequenceTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP____T5labelGSqSS_5valueP___T5labelGSqSS_5valueP___T5labelGSqSS_5valueP_____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5GVs22_ContiguousArrayBufferT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s16_ArrayBufferTypes_T5labelGSqSS_5valueP___GVs17IndexingGeneratorGS_T5labelGSqSS_5valueP____GS1_GS_T5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferT5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s14CollectionTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s9IndexablesGS6_T5labelGSqSS_5valueP___s12SequenceTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP____T5labelGSqSS_5valueP___T5labelGSqSS_5valueP___T5labelGSqSS_5valueP_____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray16_copyToNewBufferfSiT_ -_TTSf4n_d___TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ -_TTSf4g_d___TTSg5SSSSs8Hashables_Ps9AnyObject____TZFVs24_NativeDictionaryStorage9fromArrayfGSaTxq___GS_xq__ -_TTSf4n_d___TTSg5SS___TZFSa28_allocateBufferUninitializedfSiGVs12_ArrayBufferx_ -_TTSf4n_d___TTSg5SS___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TTSf4n_d___TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ -_TTSf4g_n___TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage26migrateDataToNativeStoragefVs23_CocoaDictionaryStorageT_ -_TTSf4g_n___TFC10RealmSwift13DynamicObject15listForPropertyfCSo11RLMPropertyCSo11RLMListBase -_TMaCSo11RLMListBase -_TMaGC10RealmSwift4ListCS_13DynamicObject_ -_TTSf4n_d___TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ -_TTSf4g_n___TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage26migrateDataToNativeStoragefVs23_CocoaDictionaryStorageT_ -_TTSf4g_n___TFC10RealmSwift13DynamicObject19optionalForPropertyfCSo11RLMPropertyCSo15RLMOptionalBase -_TMaGCs29_NativeDictionaryStorageOwnerSSGC10RealmSwift4ListCS0_13DynamicObject__ -_TMaGCs29_NativeDictionaryStorageOwnerSSCSo15RLMOptionalBase_ -_TMaCSo15RLMOptionalBase -get_field_types_Object -get_field_types_DynamicObject -get_field_types_ObjectUtil -_TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s16_ArrayBufferTypes_GVs14_IgnorePointerT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s20_PointerFunctionTypes_T5labelGSqSS_5valueP___GVs17IndexingGeneratorGS_T5labelGSqSS_5valueP____GS3_GS_T5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___GVs12_SliceBufferT5labelGSqSS_5valueP___GS5_T5labelGSqSS_5valueP___s14CollectionTypes_GS3_GS5_T5labelGSqSS_5valueP____GS3_GS5_T5labelGSqSS_5valueP____S4_s_T5labelGSqSS_5valueP___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS5_T5labelGSqSS_5valueP___GS5_T5labelGSqSS_5valueP___s9IndexablesGS5_T5labelGSqSS_5valueP___s12SequenceTypes_GS3_GS5_T5labelGSqSS_5valueP____GS3_GS5_T5labelGSqSS_5valueP____S4_s_T5labelGSqSS_5valueP___SiSiS7_s_SiSiS8_s_SiSiS9_s_Si_GS5_T5labelGSqSS_5valueP____T5labelGSqSS_5valueP___T5labelGSqSS_5valueP___T5labelGSqSS_5valueP_____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ -_TTSf4s_n_n___TTSg5SS___TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TTSf4n_n_n_n_d___TTSg5GVs12_ArrayBufferSS_GS_SS_s16_ArrayBufferTypes_GVs14_IgnorePointerSS_GS1_SS_s20_PointerFunctionTypes_SS_GVs17IndexingGeneratorGS_SS__GS3_GS_SS__s13GeneratorTypes_SS_GVs12_SliceBufferSS_GS5_SS_s14CollectionTypes_GS3_GS5_SS__GS3_GS5_SS__S4_s_SS_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS5_SS_GS5_SS_s9IndexablesGS5_SS_s12SequenceTypes_GS3_GS5_SS__GS3_GS5_SS__S4_s_SS_SiSiS7_s_SiSiS8_s_SiSiS9_s_Si_GS5_SS__SS_SS_SS___TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ -_TTSf4g_n___TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s12SequenceTypes_GVs17IndexingGeneratorGSaT5labelGSqSS_5valueP____GS0_GSaT5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___GVs10ArraySliceT5labelGSqSS_5valueP____SS___TFEsPs12SequenceType7flatMapurfzFzWx9Generator7Element_GSqqd___GSaqd___ -_TTSf4g_n___TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage26migrateDataToNativeStoragefVs23_CocoaDictionaryStorageT_ -_TTSf4g_n_n___TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E621getOptionalPropertiesFPs9AnyObject_CSo12NSDictionaryU_FTGVs10DictionarySSPS1___T5labelGSqSS_5valueP___GS3_SSPS1___ -_TPA__TTRXFo_oGSqSS_iP__oGSqSS_zoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___iGSqSS_zoPS___ -_TMaGCs28_NativeDictionaryStorageImplSSCSo15RLMOptionalBase_ -_TMaGCs28_NativeDictionaryStorageImplSSGC10RealmSwift4ListCS0_13DynamicObject__ -_TPA__TFFs15_arrayForceCastu0_rFGSax_GSaq__U_FGSrQ0__T_ -objectdestroy.9 -_TPA__TTRG0_rXFo_dGSrq___dT_zoPs9ErrorType__XFo_dGSrq___iT_zoPS___ -_TToZFC10RealmSwift6Object17indexedPropertiesfT_GSaSS_ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ -L_selector_data(sharedSchema) -L_selector(sharedSchema) -L_selector_data(partialSharedSchema) -L_selector(partialSharedSchema) -L_selector_data(initWithValue:schema:) -L_selector(initWithValue:schema:) -_TMLCSo11RLMListBase -_TMLGC10RealmSwift4ListCS_13DynamicObject_ -L_selector_data(name) -L_selector(name) -_TWvdvC10RealmSwift13DynamicObjectP33_95A69397B44B27F7A8F436871D45D9E614listPropertiesGVs10DictionarySSGCS_4ListS0___ -L_selector_data(swiftIvar) -L_selector(swiftIvar) -L_selector_data(initWithRealm:schema:) -L_selector(initWithRealm:schema:) -_TMLGCs29_NativeDictionaryStorageOwnerSSGC10RealmSwift4ListCS0_13DynamicObject__ -_TMLGCs29_NativeDictionaryStorageOwnerSSCSo15RLMOptionalBase_ -_TMLCSo15RLMOptionalBase -_TWvdvC10RealmSwift13DynamicObjectP33_95A69397B44B27F7A8F436871D45D9E618optionalPropertiesGVs10DictionarySSCSo15RLMOptionalBase_ -L_selector_data(type) -L_selector(type) -L_selector_data(initWithValue:) -L_selector_data(objectUtilClass:) -L_selector_data(primaryKey) -L_selector_data(ignoredProperties) -L_selector_data(indexedProperties) -L_selector_data(objectForKeyedSubscript:) -L_selector_data(setObject:forKeyedSubscript:) -L_selector_data(isEqual:) -L_selector_data(listForProperty:) -L_selector_data(optionalForProperty:) -_CLASS_METHODS_RealmSwiftObject -_METACLASS_DATA_RealmSwiftObject -_INSTANCE_METHODS_RealmSwiftObject -_PROPERTIES_RealmSwiftObject -_DATA_RealmSwiftObject -_TMfC10RealmSwift6Object -L_selector_data(valueForUndefinedKey:) -L_selector_data(setValue:forUndefinedKey:) -L_selector_data(shouldIncludeInDefaultSchema) -L_selector_data(.cxx_destruct) -_CLASS_METHODS__TtC10RealmSwift13DynamicObject -_METACLASS_DATA__TtC10RealmSwift13DynamicObject -_INSTANCE_METHODS__TtC10RealmSwift13DynamicObject -_IVARS__TtC10RealmSwift13DynamicObject -_DATA__TtC10RealmSwift13DynamicObject -_TMfC10RealmSwift13DynamicObject -L_selector_data(swiftVersion) -L_selector_data(ignoredPropertiesForClass:) -L_selector_data(indexedPropertiesForClass:) -L_selector_data(getGenericListPropertyNames:) -L_selector_data(initializeListProperty:property:array:) -L_selector_data(initializeOptionalProperty:property:) -L_selector_data(getOptionalProperties:) -L_selector_data(requiredPropertiesForClass:) -_CLASS_METHODS_RealmSwiftObjectUtil -_METACLASS_DATA_RealmSwiftObjectUtil -_INSTANCE_METHODS_RealmSwiftObjectUtil -_DATA_RealmSwiftObjectUtil -_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E612swiftVersionfT_CSo8NSString -_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E625ignoredPropertiesForClassfPMPs9AnyObject_GSqCSo7NSArray_ -_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E625indexedPropertiesForClassfPMPs9AnyObject_GSqCSo7NSArray_ -_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getGenericListPropertyNamesfPs9AnyObject_CSo7NSArray -_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E622initializeListPropertyfTCSo13RLMObjectBase8propertyCSo11RLMProperty5arrayCSo8RLMArray_T_ -_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E626initializeOptionalPropertyfTCSo13RLMObjectBase8propertyCSo11RLMProperty_T_ -_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E621getOptionalPropertiesfPs9AnyObject_CSo12NSDictionary -_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E626requiredPropertiesForClassfPMPs9AnyObject_GSqCSo7NSArray_ -_TMfC10RealmSwift10ObjectUtil -field_type_vector_ObjectUtil -field_type_vector_DynamicObject -_TMLGVs10DictionarySSGC10RealmSwift4ListCS0_13DynamicObject__ -_TMLGVs10DictionarySSCSo15RLMOptionalBase_ -field_type_vector_Object -_TMLP_ -_TMLPs17CustomReflectable_ -_TMLGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__ -_TMLGCs17_AnyCollectionBoxT5labelGSqSS_5valueP___ -_TMLT5labelGSqSS_5valueP__ -_TMLGSqSS_ -_TMLGCs20_AnyGeneratorBoxBaseT5labelGSqSS_5valueP___ -_TMLGSqCSo8NSString_ -_TMLCSo8NSString -_TMLGSqCSo6NSDate_ -_TMLCSo6NSDate -_TMLGSqCSo6NSData_ -_TMLCSo6NSData -_TMLGSqC10RealmSwift6Object_ -_TMLGC10RealmSwift13RealmOptionalSi_ -_TMLGC10RealmSwift13RealmOptionalVs4Int8_ -_TMLGC10RealmSwift13RealmOptionalVs5Int16_ -_TMLGC10RealmSwift13RealmOptionalVs5Int32_ -_TMLGC10RealmSwift13RealmOptionalVs5Int64_ -_TMLGC10RealmSwift13RealmOptionalSf_ -_TMLGC10RealmSwift13RealmOptionalSd_ -_TMLGC10RealmSwift13RealmOptionalSb_ -_TMLPMP_ -_TMLCSo8NSObject -L_selector_data(initWithName:reason:userInfo:) -L_selector(initWithName:reason:userInfo:) -L_selector_data(raise) -L_selector(raise) -_PROTOCOL__TtPs17_NSStringCoreType_ -l_OBJC_LABEL_PROTOCOL_$__TtPs17_NSStringCoreType_ -l_OBJC_PROTOCOL_REFERENCE_$__TtPs17_NSStringCoreType_ -L_selector_data(objectForKey:) -L_selector(objectForKey:) -L_selector_data(countByEnumeratingWithState:objects:count:) -L_selector(countByEnumeratingWithState:objects:count:) -_TMLGCs28_NativeDictionaryStorageImplSSPs9AnyObject__ -L_selector_data(setProperty:) -L_selector(setProperty:) -L_selector_data(setObject:) -L_selector(setObject:) -L_selector_data(set_rlmArray:) -L_selector(set_rlmArray:) -_TMLGCs23_ContiguousArrayStorageT5labelGSqSS_5valueP___ -_TMLGCs28_NativeDictionaryStorageImplSSCSo15RLMOptionalBase_ -_TMLGCs28_NativeDictionaryStorageImplSSGC10RealmSwift4ListCS0_13DynamicObject__ -metadata.10 -_PROTOCOL__TtPs14_NSCopyingType_ -l_OBJC_LABEL_PROTOCOL_$__TtPs14_NSCopyingType_ -l_OBJC_PROTOCOL_REFERENCE_$__TtPs14_NSCopyingType_ -_PROTOCOL__TtPs22_NSFastEnumerationType_ -l_OBJC_LABEL_PROTOCOL_$__TtPs22_NSFastEnumerationType_ -l_OBJC_PROTOCOL_REFERENCE_$__TtPs22_NSFastEnumerationType_ -L_selector_data(length) -L_selector_data(characterAtIndex:) -_PROTOCOL_PROTOCOLS__TtPs17_NSStringCoreType_ -_PROTOCOL_INSTANCE_METHODS__TtPs17_NSStringCoreType_ -_PROTOCOL_METHOD_TYPES__TtPs17_NSStringCoreType_ -_PROTOCOL__TtPs15_ShadowProtocol_ -l_OBJC_LABEL_PROTOCOL_$__TtPs15_ShadowProtocol_ -l_OBJC_PROTOCOL_REFERENCE_$__TtPs15_ShadowProtocol_ -L_selector_data(copyWithZone:) -_PROTOCOL_PROTOCOLS__TtPs14_NSCopyingType_ -_PROTOCOL_INSTANCE_METHODS__TtPs14_NSCopyingType_ -_PROTOCOL_METHOD_TYPES__TtPs14_NSCopyingType_ -_PROTOCOL_PROTOCOLS__TtPs22_NSFastEnumerationType_ -_PROTOCOL_INSTANCE_METHODS__TtPs22_NSFastEnumerationType_ -_PROTOCOL_METHOD_TYPES__TtPs22_NSFastEnumerationType_ -_TMaTSuSuSuSuSu_ -Object.swift -_TMaGSpSu_ -_TMaGVs33AutoreleasingUnsafeMutablePointerGSqPs9AnyObject___ -_TFOs17_ValueOrReferenceCurfMxS_ -_TFOs12_BridgeStyleCurfMxS_ -_TFs34_conditionallyBridgeFromObjectiveCurFTPs9AnyObject_Mx_GSqx_ -_TFs31_arrayConditionalBridgeElementsu0_rFGSax_GSqGSaq___ -_TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TFs30_isBridgedVerbatimToObjectiveCurFMxSb -_TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TFSa9_getCountfT_Si -_TFSrCfT5startGSpx_5countSi_GSrx_ -_TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TFFVs22_ContiguousArrayBuffer30withUnsafeMutableBufferPointerurFzFzGSrx_qd__qd__L_6$deferfT_T_ -_TFSrg11baseAddressGSpx_ -_TTRG0_rXFo_dGSrq___dT_zoPs9ErrorType__XFo_dGSrq___iT_zoPS___ -_TFVs12_ArrayBufferCfT7nsArrayPs16_NSArrayCoreType__GS_x_ -_TFVs12_ArrayBufferg9_isNativeSb -_TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ -_TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TFCs27_ContiguousArrayStorageBaseg17staticElementTypePMP_ -_TFVs22_ContiguousArrayBuffer24storesOnlyElementsOfTypeurfMqd__Sb -_TFs25_isClassOrObjCExistentialurFMxSb -_TZFVs20ManagedBufferPointer28_sanityCheckValidBufferClassfTPMPs9AnyObject_8creatingSb_T_ -_TIZFVs20ManagedBufferPointer28_sanityCheckValidBufferClassFTPMPs9AnyObject_8creatingSb_T_A0_ -_TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ -_TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ -_TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase -_TFVs12_ArrayBufferg21deferredTypeCheckMaskSi -_TFVs12_ArrayBuffer39downcastToBufferWithDeferredTypeCheckOfurfMqd__GS_qd___ -_TFVs12_ArrayBufferCfT7storageGVs14_BridgeStorageCs27_ContiguousArrayStorageBasePs16_NSArrayCoreType___GS_x_ -_TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_ -_TTSg5GC10RealmSwift4ListCS_13DynamicObject____TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage20isUniquelyReferencedfT_Sb -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImpls6_countSi -_TTSg5GC10RealmSwift4ListCS_13DynamicObject____TFSp10initializefxT_ -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImplg21_maxLoadFactorInverseSd -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorageg11_bucketMaskSi -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage5_nextfSiSi -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage5keyAtfSix -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImplg6_countSi -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage7_bucketfxSi -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImplg9_capacitySi -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ -_TTSg5SS_CSo15RLMOptionalBase___TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ -_TTSg5SS_CSo15RLMOptionalBase___TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi -_TTSg5SS_CSo15RLMOptionalBase___TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi -_TTSg5SS_CSo15RLMOptionalBase___TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ -listForProperty -optionalForProperty -_TF10RealmSwiftau20swiftLanguageVersionSS -swiftVersion -ignoredPropertiesForClass -indexedPropertiesForClass -_TTRXFo_oGSqSS_iP__oGSqSS_zoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___iGSqSS_zoPS___ -_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TTSg5SS___TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g8capacitySi -_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TTSg5SS___TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TTSg5SS___TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ -_TTSg5GVs12_ArrayBufferSS_GS_SS_s16_ArrayBufferTypes_SS_GVs17IndexingGeneratorGS_SS__GS1_GS_SS__s13GeneratorTypes_SS_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferSS_GS6_SS_s14CollectionTypes_GS1_GS6_SS__GS1_GS6_SS__S2_s_SS_SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_SS_GS6_SS_s9IndexablesGS6_SS_s12SequenceTypes_GS1_GS6_SS__GS1_GS6_SS__S2_s_SS_SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_SS__SS_SS_SS___TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5SS___TFSp14initializeFromfTGSpx_5countSi_T_ -_TTSg5SS___TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TTSg5SS___TFVs12_ArrayBuffer10_typeCheckfGVs5RangeSi_T_ -_TTSg5SS___TFSp18moveInitializeFromfTGSpx_5countSi_T_ -_TTSg5SS___TFSp7destroyfSiT_ -_TTSg5SS___TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase -_TTSg5SS___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5SS___TTWurGVs12_ArrayBufferx_s9IndexablesFS0_g8endIndexwx5Index -_TTSg5SS___TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ -_TTSg5SS___TFVs12_ArrayBufferg10startIndexSi -_TTSg5SS___TFVs12_ArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferx__ -_TTSg5SS___TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ -_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerlu5valuex -_TTSg5SS___TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ -_TTSg5SS___TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferwx7Element__ -_TTSg5SS___TFSa37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ -_TTSg5SS___TFVs22_ContiguousArrayBufferg8capacitySi -_TTSg5SS___TFVs22_ContiguousArrayBufferg5countSi -_TTSg5SS___TFVs12_ArrayBuffer20isUniquelyReferencedfT_Sb -_TTSg5SS___TFVs12_ArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TFVs17IndexingGeneratorCfxGS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer10getElementfSix -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg9subscriptFSix -_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x -_TTSg5T5labelGSqSS_5valueP_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ -_TTSg5T5labelGSqSS_5valueP_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken -_TTSg5T5labelGSqSS_5valueP_____TFSag9subscriptFSix -_TTSg5T5labelGSqSS_5valueP_____TFSag8endIndexSi -_TTSg5T5labelGSqSS_5valueP_____TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator -_TTSg5SS___TFSa36_reserveCapacityAssumingUniqueBufferfSiT_ -_TTSg5SS___TFSa6appendfxT_ -_TTSg5SS___TFSa40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ -_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TMaGCs23_ContiguousArrayStorageT5labelGSqSS_5valueP___ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFSp18moveInitializeFromfTGSpx_5countSi_T_ -_TTSg5T5labelGSqSS_5valueP_____TFSp7destroyfSiT_ -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TTSg5T5labelGSqSS_5valueP_____TFSp14initializeFromfTGSpx_5countSi_T_ -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerlu5valuex -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg10startIndexSi -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__ -_TTSg5T5labelGSqSS_5valueP_____TFSp10initializefxT_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffers5countSi -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg8capacitySi -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg5countSi -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TTSg5T5labelGSqSS_5valueP_____TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArrayCfT_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray6appendfxT_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TTRXFo_oGSqSS_iP__dSbzoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___dSbzoPS___ -_TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getGenericListPropertyNamesFPs9AnyObject_CSo7NSArrayU_FT5labelGSqSS_5valueP__Sb -_TTSg5GVs20AnyForwardCollectionT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s12SequenceTypes_GVs12AnyGeneratorT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s13GeneratorTypes_T5labelGSqSS_5valueP___GVs5SliceGS_T5labelGSqSS_5valueP_______TFEsPs12SequenceType6filterfzFzWx9Generator7Element_SbGSaWxS0_S1___ -getGenericListPropertyNames -initializeListProperty -_TTSg5CSo15RLMOptionalBase___TFSp4movefT_x -_TTSg5CSo15RLMOptionalBase___TFSp7destroyfT_T_ -_TTSg5SS___TFSp7destroyfT_T_ -_TTSg5SS___TFSp4movefT_x -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage5_prevfSiSi -_TTSf4g_n_n_d___TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage16nativeDeleteImplfTGVs24_NativeDictionaryStoragexq__11idealBucketSi6offsetSi_T_ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage24nativeRemoveObjectForKeyfxGSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_ -_TTSg5CSo15RLMOptionalBase___TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage20isUniquelyReferencedfT_Sb -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImpls6_countSi -_TTSg5CSo15RLMOptionalBase___TFSp10initializefxT_ -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg21_maxLoadFactorInverseSd -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorageg11_bucketMaskSi -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage5_nextfSiSi -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage5keyAtfSix -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg9_capacitySi -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg6_countSi -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage7_bucketfxSi -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ -_TTSg5SS___TFs19_bridgeToObjectiveCurFxGSqPs9AnyObject__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs10Dictionary17removeValueForKeyfxGSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage8maybeGetfxGSqq__ -_TTSg5SS___TFs32_bridgeToObjectiveCUnconditionalurFxPs9AnyObject_ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage17removeValueForKeyfxGSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs10Dictionarys9subscriptFxGSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs10Dictionaryg9subscriptFxGSqq__ -initializeOptionalProperty -_TZFVs6Mirror19_noSuperclassMirrorfT_GSqS__ -_TMaGSqPMP__ -_TFs19_isClassSuperMirrorFPMP_Sb -_TFEsPs11_MirrorType12_superMirrorfT_GSqPS___ -_TFFVs6MirrorcFT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_U_FT_GSqS__ -_TTRXFo_iT__iGSqVs6Mirror__XFo__oGSqS___ -_TPA__TTRXFo_iT__iGSqVs6Mirror__XFo__oGSqS___ -_TPA__TFFVs6MirrorcFT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_U_FT_GSqS__ -_TMaPMPs9AnyObject_ -_TWlGVs17IndexingGeneratorGVs5SliceVVs6Mirror14LegacyChildren__uRxs9IndexablerGS_x_s13GeneratorTypes -_TWlGVs5SliceVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_s12SequenceTypes -_TWlGVs17IndexingGeneratorVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_s13GeneratorTypes -_TWlGVs5SliceVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_S2_s -_TMaGVs17IndexingGeneratorGVs5SliceVVs6Mirror14LegacyChildren__ -_TMaGVs5SliceVVs6Mirror14LegacyChildren_ -_TMaGVs17IndexingGeneratorVVs6Mirror14LegacyChildren_ -_TMaGCs14_CollectionBoxVVs6Mirror14LegacyChildren_ -_TMaGCs21_RandomAccessIndexBoxSi_ -_TPA__TZFVs6Mirror19_noSuperclassMirrorfT_GSqS__ -_TTSf4n_n_n_d___TFVs6MirrorCfT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_ -_TTSg5SS_Ps9AnyObject____TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ -_TFZFCs28_NativeDictionaryStorageImpl6createFSiGS_xq__U_FGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8_S1_ -_TTSg5Vs29_HashedContainerStorageHeader_Vs5UInt8___TFZFCs13ManagedBuffer6createFTSi12initialValueFGCs18ManagedProtoBufferxq__x_GS_xq__U_FTPs9AnyObject_FPS1__Si_Q_ -_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi -_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi -_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ -_TMaGCs28_NativeDictionaryStorageImplSSPs9AnyObject__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_ -__swift_memmove_array64_8 -__swift_memcpy_array64_8 -__swift_copy_outline_pointer -_TwalVSC28_SwiftNSFastEnumerationState -_TwTkVSC28_SwiftNSFastEnumerationState -__swift_memcpy64_8 -_TwCpVSC28_SwiftNSFastEnumerationState -_TwdeVSC28_SwiftNSFastEnumerationState -_TwprVSC28_SwiftNSFastEnumerationState -_TwCPVSC28_SwiftNSFastEnumerationState -_TwXXVSC28_SwiftNSFastEnumerationState -_TMaGSqPs9AnyObject__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageg11_bucketMaskSi -_TTSg5Ps9AnyObject____TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x -_TTSg5SS___TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_nextfSiSi -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5keyAtfSix -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage20isUniquelyReferencedfT_Sb -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImpls6_countSi -_TTSg5Ps9AnyObject____TFSp10initializefxT_ -_TTSg5SS___TFSp10initializefxT_ -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg21_maxLoadFactorInverseSd -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6_countSi -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg9_capacitySi -_TMaPs17_NSStringCoreType_ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage7_bucketfxSi -_TTWSSs8HashablesFS_g9hashValueSi -_TTSf4s___TFSSg9hashValueSi -_TMaCSo8NSObject -throwRealmException -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerCfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCfT14_nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ -_TIF10RealmSwift19throwRealmExceptionFTSS8userInfoGVs10DictionarySSPs9AnyObject___T_A0_ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCft17dictionaryLiteralGSaTxq____GS_xq__ -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg9_isNativeSb -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg19firstElementAddressGSpx_ -_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffers5countSi -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBuffers5countSi -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferCfT_GS_x_ -_TTSg5TSSPs9AnyObject_____TFSaCfT19_uninitializedCountSi_GSax_ -_TTSg5TSSPs9AnyObject_____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TTSg5TSSPs9AnyObject_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TMaPMP_ -_TTSg5PMP____TFSSCurfxSS -_TTSg5PMP____TFSSCurfT26stringInterpolationSegmentx_SS -_TTWOVs6Mirror12DisplayStyles9EquatablesZFS1_oi2eefTxx_Sb -_TMaGC10RealmSwift13RealmOptionalSb_ -_TMaGC10RealmSwift13RealmOptionalSd_ -_TMaGC10RealmSwift13RealmOptionalSf_ -_TMaGC10RealmSwift13RealmOptionalVs5Int64_ -_TMaGC10RealmSwift13RealmOptionalVs5Int32_ -_TMaGC10RealmSwift13RealmOptionalVs5Int16_ -_TMaGC10RealmSwift13RealmOptionalVs4Int8_ -_TMaGC10RealmSwift13RealmOptionalSi_ -_TMaGSqC10RealmSwift6Object_ -_TMaCSo6NSData -_TMaGSqCSo6NSData_ -_TMaCSo6NSDate -_TMaGSqCSo6NSDate_ -_TMaCSo8NSString -_TMaGSqCSo8NSString_ -_TTSg5OVs6Mirror12DisplayStyleS0_s9Equatables___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb -_TTSg5CSo15RLMOptionalBase___TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionarys9subscriptFxGSqq__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__ -_TTSf4s_n___TFs9_abstractFTVs12StaticString4lineSu_T_ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCfT15minimumCapacitySi_GS_xq__ -_TMaGCs20_AnyGeneratorBoxBaseT5labelGSqSS_5valueP___ -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs20AnyForwardCollectionx_s12SequenceTypesFS0_8generatefT_wx9Generator -_TMaGSqSS_ -_TMaT5labelGSqSS_5valueP__ -_TMaGCs17_AnyCollectionBoxT5labelGSqSS_5valueP___ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnercfT15minimumCapacitySi_GS_xq__ -_TMaGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerCfT15minimumCapacitySi_GS_xq__ -_TMaPs17CustomReflectable_ -_TMaP_ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ -_TTSg5T5labelGSqSS_5valueP_____TFVs12AnyGenerator4nextfT_GSqx_ -_TTSg5T5labelGSqSS_5valueP_____TFCs20_AnyGeneratorBoxBase4nextfT_GSqx_ -_TTSg5T5labelGSqSS_5valueP_____TFVs20AnyForwardCollection8generatefT_GVs12AnyGeneratorx_ -_TTSg5T5labelGSqSS_5valueP_____TFCs15_AnySequenceBox8generatefT_GVs12AnyGeneratorx_ -_TTSg5GVs20AnyForwardCollectionT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s12SequenceTypes_GVs12AnyGeneratorT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s13GeneratorTypes_T5labelGSqSS_5valueP___GVs5SliceGS_T5labelGSqSS_5valueP_____GVs10DictionarySSPs9AnyObject_____TFEsPs12SequenceType6reduceurfzTqd__7combineFzTqd__Wx9Generator7Element__qd___qd__ -_TTRXFo_oGVs10DictionarySSPs9AnyObject__oGSqSS_iP__oGS_SSPS0___zoPs9ErrorType__XFo_iGS_SSPS0___iT5labelGSqSS_5valueP___iGS_SSPS0___zoPS1___ -_TFVs6MirrorCfT10reflectingP__S_ -getOptionalProperties -requiredPropertiesForClass -_TMaGVs10DictionarySSCSo15RLMOptionalBase_ -_TMaGVs10DictionarySSGC10RealmSwift4ListCS0_13DynamicObject__ -_TMaC10RealmSwift10ObjectUtil -_TMaC10RealmSwift13DynamicObject -_TMaC10RealmSwift6Object -valueForUndefinedKey -_TTWVs5Int32s9EquatablesZFS0_oi2eefTxx_Sb -_TTSg5OSC15RLMPropertyTypeS_s16RawRepresentable5Realm_Vs5Int32S2_s9Equatables___TZFsoi2eeuRxs16RawRepresentablewx8RawValues9EquatablerFTxx_Sb -_TTSg5C10RealmSwift5RealmS0_s9EquatableS____TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb -indexedProperties -ignoredProperties -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs10DictionaryCfT15minimumCapacitySi_GS_xq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFCs29_NativeDictionaryStorageOwnercfT15minimumCapacitySi_GS_xq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFCs29_NativeDictionaryStorageOwnerCfT15minimumCapacitySi_GS_xq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs10DictionaryCfT15minimumCapacitySi_GS_xq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFCs29_NativeDictionaryStorageOwnercfT15minimumCapacitySi_GS_xq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFCs29_NativeDictionaryStorageOwnerCfT15minimumCapacitySi_GS_xq__ -shouldIncludeInDefaultSchema -isEqual -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage8maybeGetfxGSqq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs10Dictionarys9subscriptFxGSqq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs10Dictionaryg9subscriptFxGSqq__ -dynamicList -linkingObjects -_TTSg5SS___TFSaCft12arrayLiteralGSax__GSax_ -_TTSg5SS___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TTSg5SS___TFVs12_ArrayBufferg9_isNativeSb -_TTSg5SS___TFVs12_ArrayBufferg19firstElementAddressGSpx_ -_TTSg5SS___TFVs22_ContiguousArrayBuffers5countSi -_TTSg5SS___TFVs12_ArrayBuffers5countSi -_TTSg5SS___TFVs12_ArrayBufferCfT_GS_x_ -_TTSg5SS___TFSaCfT19_uninitializedCountSi_GSax_ -_TTSg5SS___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -primaryKey -objectUtilClass -className.get -objectSchema.get -_TMaCSo9RLMSchema -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Object.swift -_TTSg5C10RealmSwift8Property___TFVs15ContiguousArray15reserveCapacityfSiT_ -_TTSg5GVs22_ContiguousArrayBufferC10RealmSwift8Property_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5GVs22_ContiguousArrayBufferC10RealmSwift8Property_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5C10RealmSwift8Property___TFVs15ContiguousArray16_copyToNewBufferfSiT_ -_TTSg5CSo11RLMProperty___TFVs12_ArrayBuffer19_getElementSlowPathfSiPs9AnyObject_ -get_field_types_ObjectSchema -_TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferC10RealmSwift8Property_GS_S1__s16_ArrayBufferTypes_GVs14_IgnorePointerS1__GS3_S1__s20_PointerFunctionTypes_S1__GVs17IndexingGeneratorGS_S1___GS5_GS_S1___s13GeneratorTypes_S1__GVs12_SliceBufferS1__GS7_S1__s14CollectionTypes_GS5_GS7_S1___GS5_GS7_S1___S6_s_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS7_S1__GS7_S1__s9IndexablesGS7_S1__s12SequenceTypes_GS5_GS7_S1___GS5_GS7_S1___S6_s_S1__SiSiS9_s_SiSiS10_s_SiSiS11_s_Si_GS7_S1___S1__S1__S1____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ -_TMaGCs23_ContiguousArrayStorageC10RealmSwift8Property_ -L_selector_data(properties) -L_selector(properties) -_TMLCSo11RLMProperty -L_selector_data(primaryKeyProperty) -L_selector(primaryKeyProperty) -L_selector(objectForKeyedSubscript:) -_METACLASS_DATA__TtC10RealmSwift12ObjectSchema -_IVARS__TtC10RealmSwift12ObjectSchema -_DATA__TtC10RealmSwift12ObjectSchema -_TMfC10RealmSwift12ObjectSchema -got._TMps23CustomStringConvertible -field_type_vector_ObjectSchema -_TMLGCs23_ContiguousArrayStorageC10RealmSwift8Property_ -_TTSg5C10RealmSwift8Property___TFVs15ContiguousArrayg5countSi -ObjectSchema.swift -_TTSg5Ps9AnyObject____TFVs12_ArrayBufferCfT7storageGVs14_BridgeStorageCs27_ContiguousArrayStorageBasePs16_NSArrayCoreType___GS_x_ -_TTSg5CSo11RLMProperty_Ps9AnyObject____TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___ -_TTSg5CSo11RLMProperty___TFs25_isClassOrObjCExistentialurFMxSb -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ -_TTSg5C10RealmSwift8Property___TFSp18moveInitializeFromfTGSpx_5countSi_T_ -_TTSg5C10RealmSwift8Property___TFSp7destroyfSiT_ -_TTSg5C10RealmSwift8Property___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TTSg5C10RealmSwift8Property___TFSp14initializeFromfTGSpx_5countSi_T_ -_TTSg5C10RealmSwift8Property___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointerlu5valuex -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBufferg10startIndexSi -_TTSg5C10RealmSwift8Property___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__ -_TMaC10RealmSwift12ObjectSchema -_TWaC10RealmSwift12ObjectSchemas9EquatableS_ -_TWaC10RealmSwift12ObjectSchemas23CustomStringConvertibleS_ -primaryKeyProperty.get -_TTSg5CSo11RLMProperty___TFVs22_ContiguousArrayBufferg5countSi -_TTSg5C10RealmSwift8Property___TFSaCft12arrayLiteralGSax__GSax_ -_TTSg5C10RealmSwift8Property___TFVs12_ArrayBufferg9_isNativeSb -_TTSg5C10RealmSwift8Property___TFVs12_ArrayBufferg19firstElementAddressGSpx_ -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ -_TTSg5C10RealmSwift8Property___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TTSg5C10RealmSwift8Property___TFVs12_ArrayBuffers5countSi -_TTSg5C10RealmSwift8Property___TFVs12_ArrayBufferCfT_GS_x_ -_TTSg5C10RealmSwift8Property___TFSaCfT19_uninitializedCountSi_GSax_ -_TTSg5C10RealmSwift8Property___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TTSg5C10RealmSwift8Property___TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5C10RealmSwift8Property___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5C10RealmSwift8Property___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__ -_TTSg5Vs10_ArrayBody_CSo11RLMProperty___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5Vs10_ArrayBody_CSo11RLMProperty___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5CSo11RLMProperty___TFVs22_ContiguousArrayBuffer10getElementfSix -_TTSg5CSo11RLMProperty___TFVs22_ContiguousArrayBufferg9subscriptFSix -_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ -_TTSg5Vs10_ArrayBody_CSo11RLMProperty___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_CSo11RLMProperty___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_CSo11RLMProperty___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5CSo11RLMProperty___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -_TTSg5CSo11RLMProperty___TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ -_TTSg5C10RealmSwift8Property___TFSp10initializefxT_ -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBuffers5countSi -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBufferg8capacitySi -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBufferg5countSi -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5CSo11RLMProperty___TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5C10RealmSwift8Property___TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TTSg5CSo11RLMProperty___TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ -_TTSg5CSo11RLMProperty___TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken -_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg20_isNativeTypeCheckedSb -_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg32arrayPropertyIsNativeTypeCheckedSb -_TTSg5CSo11RLMProperty___TFSa29_hoistableIsNativeTypeCheckedfT_Sb -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ -_TTSg5C10RealmSwift8Property___TFVs15ContiguousArrayCfT_GS_x_ -_TTWSis18_SignedIntegerTypesFS_CfVs5Int64x -_TTSg5CSo11RLMProperty___TTWurGSax_s14CollectionTypesFS_g5countWx5Index8Distance_ -_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg9_isNativeSb -_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg5countSi -_TTSg5CSo11RLMProperty___TFSa9_getCountfT_Si -_TMaCSo11RLMProperty -_TTWSis14_IncrementablesFS_9successorfT_x -_TTSg5C10RealmSwift8Property___TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ -_TTSg5C10RealmSwift8Property___TFVs15ContiguousArray6appendfxT_ -_TTSg5C10RealmSwift8Property___TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TTRXFo_oCSo11RLMProperty_oC10RealmSwift8PropertyzoPs9ErrorType__XFo_iS__iS1_zoPS2___ -_TFFC10RealmSwift12ObjectSchemag10propertiesGSaCS_8Property_U_FCSo11RLMPropertyS1_ -_TTSg5CSo11RLMProperty___TFSag9subscriptFSix -_TTSg5CSo11RLMProperty___TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TTSg5GSaCSo11RLMProperty_GSaS__s14CollectionTypes_GVs17IndexingGeneratorGSaS___GS1_GSaS___s13GeneratorTypes_S__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS6_S__s9IndexablesGS6_S__s12SequenceTypes_GS1_GS6_S___GS1_GS6_S___S2_s_S__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_S___S__S__C10RealmSwift8Property___TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___ -_TTSg5C10RealmSwift8Property___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ -_TTSg5CSo11RLMProperty___TFSag5countSi -_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -properties.get -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/ObjectSchema.swift -_TF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24realmOptionalToAnyObjectuRxS_17RealmOptionalTyperFGSqx_GSqPs9AnyObject__ -_TF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24anyObjectToRealmOptionaluRxS_17RealmOptionalTyperFGSqPs9AnyObject__GSqx_ -_TFF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24anyObjectToRealmOptionaluRxS_17RealmOptionalTyperFGSqPs9AnyObject__GSqx_U_FSiVs4Int8 -_TFF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24anyObjectToRealmOptionaluRxS_17RealmOptionalTyperFGSqPs9AnyObject__GSqx_U0_FSiVs5Int16 -_TFF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24anyObjectToRealmOptionaluRxS_17RealmOptionalTyperFGSqPs9AnyObject__GSqx_U1_FSiVs5Int32 -get_field_types_RealmOptional -create_generic_metadata_RealmOptional -_TPA__TTRGRx10RealmSwift17RealmOptionalTyperXFo_dSi_dVs5Int32zoPs9ErrorType__XFo_iSi_iS1_zoPS2___ -_TPA__TTRGRx10RealmSwift17RealmOptionalTyperXFo_dSi_dVs5Int16zoPs9ErrorType__XFo_iSi_iS1_zoPS2___ -_TPA__TTRGRx10RealmSwift17RealmOptionalTyperXFo_dSi_dVs4Int8zoPs9ErrorType__XFo_iSi_iS1_zoPS2___ -L_selector_data(underlyingValue) -L_selector(underlyingValue) -L_selector_data(setUnderlyingValue:) -L_selector(setUnderlyingValue:) -got._TMSi -got._TMVs4Int8 -got._TMVs5Int16 -got._TMVs5Int32 -got._TMVs5Int64 -got._TMSf -got._TMSd -got._TMSb -L_selector_data(initWithLongLong:) -L_selector(initWithLongLong:) -L_selector_data(initWithLong:) -L_selector(initWithLong:) -L_selector_data(longLongValue) -L_selector(longLongValue) -L_selector_data(longValue) -L_selector(longValue) -_TTRGRx10RealmSwift17RealmOptionalTyperXFo_dSi_dVs5Int32zoPs9ErrorType__XFo_iSi_iS1_zoPS2___ -_TTRGRx10RealmSwift17RealmOptionalTyperXFo_dSi_dVs5Int16zoPs9ErrorType__XFo_iSi_iS1_zoPS2___ -_TTRGRx10RealmSwift17RealmOptionalTyperXFo_dSi_dVs4Int8zoPs9ErrorType__XFo_iSi_iS1_zoPS2___ -_TTSg5Si_Vs5Int32___TFSq3mapurfzFzxqd__GSqqd___ -_TTSg5Si_Vs5Int16___TFSq3mapurfzFzxqd__GSqqd___ -_TTSg5Si_Vs4Int8___TFSq3mapurfzFzxqd__GSqqd___ -anyObjectToRealmOptional -realmOptionalToAnyObject -_TWaSb10RealmSwift17RealmOptionalTypeS_ -_TWaSd10RealmSwift17RealmOptionalTypeS_ -_TWaSf10RealmSwift17RealmOptionalTypeS_ -_TWaVs5Int6410RealmSwift17RealmOptionalTypeS0_ -_TWaVs5Int3210RealmSwift17RealmOptionalTypeS0_ -_TWaVs5Int1610RealmSwift17RealmOptionalTypeS0_ -_TWaVs4Int810RealmSwift17RealmOptionalTypeS0_ -_TWaSi10RealmSwift17RealmOptionalTypeS_ -value.set -value.get -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Optional.swift -get_field_types_Property -L_selector_data(indexed) -L_selector(indexed) -L_selector_data(optional) -L_selector(optional) -_METACLASS_DATA__TtC10RealmSwift8Property -_IVARS__TtC10RealmSwift8Property -_DATA__TtC10RealmSwift8Property -_TMfC10RealmSwift8Property -field_type_vector_Property -Property.swift -_TMaC10RealmSwift8Property -_TWaC10RealmSwift8Propertys9EquatableS_ -_TWaC10RealmSwift8Propertys23CustomStringConvertibleS_ -objectClassName.get -optional.get -indexed.get -type.get -name.get -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Property.swift -_TTRXFo__dT__XFdCb__dT__ -_TTRXFo_oSSoCSo8RLMRealm_dT__XFdCb_dCSo8NSStringdS__dT__ -_TFF10RealmSwift41rlmNotificationBlockFromNotificationBlockFFT12notificationOS_12Notification5realmCS_5Realm_T_FTSSCSo8RLMRealm_T_U_FTSSS2__T_ -_TTSg5SS___TFCs23_ContiguousArrayStoraged -_TPA__TFF10RealmSwift41rlmNotificationBlockFromNotificationBlockFFT12notificationOS_12Notification5realmCS_5Realm_T_FTSSCSo8RLMRealm_T_U_FTSSS2__T_ -get_field_types_Realm -_TwxsO10RealmSwift12Notification -_TwxgO10RealmSwift12Notification -_TwugO10RealmSwift12Notification -_TwupO10RealmSwift12Notification -_TwuiO10RealmSwift12Notification -get_field_types_Notification -objectdestroy.13 -objectdestroy.16 -objectdestroy.19 -objectdestroy.22 -objectdestroy.28 -objectdestroy.31 -objectdestroy.34 -objectdestroy.37 -objectdestroy.40 -objectdestroy.43 -objectdestroy.46 -objectdestroy.52 -objectdestroy.55 -objectdestroy.58 -objectdestroy.61 -objectdestroy.64 -objectdestroy.67 -objectdestroy.70 -objectdestroy.79 -block_destroy_helper.26 -block_destroy_helper.50 -block_destroy_helper.74 -block_destroy_helper.77 -block_destroy_helper.82 -block_copy_helper.25 -block_copy_helper.49 -block_copy_helper.73 -block_copy_helper.76 -block_copy_helper.81 -_TPA__TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__.30 -_TPA__TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__.54 -_TPA__TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__.15 -_TPA__TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_.18 -_TPA__TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFo_iTS_S0___iT__.21 -_TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__.24 -_TPA__TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_.33 -_TPA__TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__.36 -_TPA__TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__.39 -_TPA__TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_.42 -_TPA__TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFo_iTS_S0___iT__.45 -_TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__.48 -_TPA__TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_.57 -_TPA__TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__.60 -_TPA__TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__.63 -_TPA__TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_.66 -_TPA__TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFo_iTS_S0___iT__.69 -_TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__.72 -L_selector_data(isReadOnly) -L_selector(isReadOnly) -L_selector_data(schema) -L_selector(schema) -L_selector_data(configuration) -L_selector(configuration) -L_selector_data(isEmpty) -L_selector(isEmpty) -L_selector_data(realmWithConfiguration:error:) -L_selector(realmWithConfiguration:error:) -metadata.14 -metadata.17 -metadata.20 -metadata.23 -block_descriptor.27 -metadata.29 -metadata.32 -metadata.35 -metadata.38 -metadata.41 -metadata.44 -metadata.47 -block_descriptor.51 -metadata.53 -metadata.56 -metadata.59 -metadata.62 -metadata.65 -metadata.68 -metadata.71 -block_descriptor.75 -block_descriptor.78 -L_selector_data(transactionWithBlock:error:) -L_selector(transactionWithBlock:error:) -L_selector_data(beginWriteTransaction) -L_selector(beginWriteTransaction) -L_selector_data(commitWriteTransaction:) -L_selector(commitWriteTransaction:) -L_selector_data(cancelWriteTransaction) -L_selector(cancelWriteTransaction) -L_selector_data(inWriteTransaction) -L_selector(inWriteTransaction) -L_selector_data(schemaForClassName:) -L_selector(schemaForClassName:) -L_selector_data(deleteObjects:) -L_selector(deleteObjects:) -_TMLGC10RealmSwift7ResultsCS_13DynamicObject_ -metadata.80 -block_descriptor.83 -L_selector_data(removeNotification:) -L_selector(removeNotification:) -L_selector_data(autorefresh) -L_selector(autorefresh) -L_selector_data(setAutorefresh:) -L_selector(setAutorefresh:) -L_selector_data(refresh) -L_selector(refresh) -L_selector_data(invalidate) -L_selector(invalidate) -L_selector_data(writeCopyToPath:error:) -L_selector(writeCopyToPath:error:) -L_selector_data(writeCopyToPath:encryptionKey:error:) -L_selector(writeCopyToPath:encryptionKey:error:) -_METACLASS_DATA__TtC10RealmSwift5Realm -_IVARS__TtC10RealmSwift5Realm -_DATA__TtC10RealmSwift5Realm -_TMfC10RealmSwift5Realm -_TMfO10RealmSwift12Notification -field_type_vector_Notification -field_type_vector_Realm -_TMLCSo8RLMRealm -_TTSg5Vs18_StringBufferIVars_Vs6UInt16___TFVs11_HeapBufferg6_valueGSpx_ -_TTSf4s_n_n___TFVs13_StringBuffer4growfTGVs5RangeGSPVs7RawByte__12newUsedCountSi_Sb -_TFVs13_StringBufferg8capacitySi -_TMaGCs18_HeapBufferStorageVs18_StringBufferIVarsVs6UInt16_ -_TTSf4n_n_n_d___TFVs13_StringBufferCfT8capacitySi11initialSizeSi12elementWidthSi_S_ -_TFFVs11_StringCoreg11cocoaBufferGSqPs9AnyObject__U_FPS0__PS0__ -_TFVs11_StringCore12_copyInPlacefT7newSizeSi11newCapacitySi15minElementWidthSi_T_ -_TFVs11_StringCore14_claimCapacityfTSi15minElementWidthSi_TSiVs14COpaquePointer_ -_TTSf1cl57_TTRXFo_dVs6UInt16_dSbzoPs9ErrorType__XFo_iS__dSbzoPS0___XFo_dVs6UInt16_dSbzoPs9ErrorType___n___TTSg5GSRVs6UInt16_GSRS__s12SequenceTypes_GVs28UnsafeBufferPointerGeneratorS__GS1_S__s13GeneratorTypes_S__GVs5SliceGSRS______TFEsPs12SequenceType8containsfzFzWx9Generator7Element_SbSb -_TFFVs11_StringCore20representableAsASCIIFT_SbU_FVs6UInt16Sb -_TTSf4gs_n___TFVs11_StringCore6appendfS_T_ -_TTSg5SS___TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_ -_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffer10getElementfSix -_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TMaTSSPs9AnyObject__ -_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x -_TTSg5TSSPs9AnyObject_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x -_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ -_TTSg5TSSPs9AnyObject_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken -_TTSg5GSaTSSPs9AnyObject___GSaTSSPS____s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSPS______TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ -_TTSg5TSSPs9AnyObject_____TFSag8endIndexSi -_TTSg5TSSPs9AnyObject_____TFSag10startIndexSi -_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg5countSi -_TTSg5TSSPs9AnyObject_____TFSa9_getCountfT_Si -_TTSg5TSSPs9AnyObject_____TFSag5countSi -_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBufferg5countSi -_TTSg5TSSPs9AnyObject_____TFSag9subscriptFSix -_TTSg5GSaTSSPs9AnyObject___GSaTSSPS____s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceTSSPS____GS4_TSSPS____s9IndexablesGS4_TSSPS____s12SequenceTypes_GVs17IndexingGeneratorGS4_TSSPS_____GS7_GS4_TSSPS_____s13GeneratorTypes_TSSPS____SiSiS1_s_SiSiS2_s_SiSiS3_s_Si_GS4_TSSPS_____TSSPS____TSSPS______TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ -_TMaO10RealmSwift12Notification -_TMaC10RealmSwift5Realm -_TWaO10RealmSwift12Notifications16RawRepresentableS_ -_TWaO10RealmSwift12Notifications8HashableS_ -_TWaO10RealmSwift12Notifications9EquatableS_ -_TWaC10RealmSwift5Realms9EquatableS_ -add -writeCopyToPath -invalidate -refresh -autorefresh.set -autorefresh.get -removeNotification -rlmNotificationBlockFromNotificationBlock -_TMaGSqC10RealmSwift13DynamicObject_ -dynamicObjectForPrimaryKey -_TMaGSQPs9AnyObject__ -objectForPrimaryKey -_TMaGC10RealmSwift7ResultsCS_13DynamicObject_ -dynamicObjects -objects -deleteAll -dynamicCreate -_TMaCSo13RLMObjectBase -_TMaGSQCSo13RLMObjectBase_ -_TTSg5C10RealmSwift8PropertyS0_s9EquatableS____TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb -inWriteTransaction.get -cancelWrite -commitWrite -beginWrite -write -configuration.get -schema.get -readOnly.get -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Realm.swift -_TFC10RealmSwift12RLMGeneratorcfT10collectionPSo13RLMCollection__GS0_x_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5realmGSqCS_5Realm_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5countSi -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg11descriptionSS -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffxGSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffCSo11NSPredicateGSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOfftSSGSaPs9AnyObject___GSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6filterftSSGSaPs9AnyObject___GCS_7Resultsx_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6filterfCSo11NSPredicateGCS_7Resultsx_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6sortedfTSS9ascendingSb_GCS_7Resultsx_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrfqd__GCS_7Resultsx_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase3minuRd__S_10MinMaxTyperfSSGSqqd___ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase3maxuRd__S_10MinMaxTyperfSSGSqqd___ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase3sumuRd__S_11AddableTyperfSSqd__ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7averageuRd__S_11AddableTyperfSSGSqqd___ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg9subscriptFSix -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase8generatefT_GCS_12RLMGeneratorx_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg10startIndexSi -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg8endIndexSi -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase11valueForKeyfSSGSqPs9AnyObject__ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase15valueForKeyPathfSSGSqPs9AnyObject__ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase8setValuefTGSqPs9AnyObject__6forKeySS_T_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase21_addNotificationBlockfFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationToken -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasecfT_GS0_x_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseD -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBased -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectioncfT4basex_GS0_x_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectionCfT4basex_GS0_x_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong5realmGSqCS_5Realm_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong5countSi -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong11descriptionSS -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7indexOffwx7ElementGSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7indexOffCSo11NSPredicateGSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7indexOfftSSGSaPs9AnyObject___GSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6filterftSSGSaPs9AnyObject___GCS_7Resultswx7Element_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6filterfCSo11NSPredicateGCS_7Resultswx7Element_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6sortedfTSS9ascendingSb_GCS_7Resultswx7Element_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrfqd__GCS_7Resultswx7Element_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection3minuRd__S_10MinMaxTyperfSSGSqqd___ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection3maxuRd__S_10MinMaxTyperfSSGSqqd___ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection3sumuRd__S_11AddableTyperfSSqd__ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7averageuRd__S_11AddableTyperfSSGSqqd___ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong9subscriptFSiwx7Element -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection8generatefT_GCS_12RLMGeneratorwx7Element_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong10startIndexSi -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong8endIndexSi -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection11valueForKeyfSSGSqPs9AnyObject__ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection15valueForKeyPathfSSGSqPs9AnyObject__ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection8setValuefTGSqPs9AnyObject__6forKeySS_T_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection21_addNotificationBlockfFTGSqGCS_18AnyRealmCollectionwx7Element__GSqCSo7NSError__T_CSo20RLMNotificationToken -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectionD -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiond -_TWtuRxC10RealmSwift6ObjectrGCS_12RLMGeneratorx_s13GeneratorTypeS_7Element -_TWIuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_ -_TWIuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_ -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_11SubSequence -_TWIuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_ -_TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_11SubSequencePs9Indexable_ -_TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_11SubSequencePs12SequenceType_ -_TWIuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_ -_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_9Generator -_TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_9GeneratorPs13GeneratorType_ -_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_11SubSequence -get_field_types_RLMGenerator -get_field_types__AnyRealmCollectionBase -create_generic_metadata__AnyRealmCollectionBase -get_field_types__AnyRealmCollection -create_generic_metadata__AnyRealmCollection -get_field_types_AnyRealmCollection -create_generic_metadata_AnyRealmCollection -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_9Generator -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_9Generator -_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_9Generator -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_7Element -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s9IndexableS_8_Element -_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_7Element -_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s9IndexableS_8_Element -_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_11SubSequencePs9Indexable_ -_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_11SubSequencePs12SequenceType_ -_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_9GeneratorPs13GeneratorType_ -_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_9GeneratorPs13GeneratorType_ -_TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_9GeneratorPs13GeneratorType_ -create_generic_metadata_RLMGenerator -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_11SubSequence -_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_11SubSequence -_TWGuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_ -_TWvdvC10RealmSwift12RLMGeneratorP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E13generatorBaseC10Foundation15NSFastGenerator -_IVARS__TtC10RealmSwift12RLMGenerator -_TMnC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5realmGSqCS_5Realm_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5countSi -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg11descriptionSS -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffxGSqSi_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffCSo11NSPredicateGSqSi_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOfftSSGSaPs9AnyObject___GSqSi_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6filterftSSGSaPs9AnyObject___GCS_7Resultsx_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6filterfCSo11NSPredicateGCS_7Resultsx_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6sortedfTSS9ascendingSb_GCS_7Resultsx_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrfqd__GCS_7Resultsx_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase3minuRd__S_10MinMaxTyperfSSGSqqd___ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase3maxuRd__S_10MinMaxTyperfSSGSqqd___ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase3sumuRd__S_11AddableTyperfSSqd__ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7averageuRd__S_11AddableTyperfSSGSqqd___ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg9subscriptFSix -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase8generatefT_GCS_12RLMGeneratorx_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg10startIndexSi -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg8endIndexSi -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase11valueForKeyfSSGSqPs9AnyObject__ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase15valueForKeyPathfSSGSqPs9AnyObject__ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase8setValuefTGSqPs9AnyObject__6forKeySS_T_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase21_addNotificationBlockfFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationToken -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseCfT_GS0_x_ -_TMPC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase -_TMnC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectionCfT4basex_GS0_x_ -_IVARS__TtC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection -_TMPC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection -_TWvdvC10RealmSwift18AnyRealmCollectionP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E4baseGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_ -_IVARS__TtC10RealmSwift18AnyRealmCollection -got._TMps13GeneratorType -RealmCollectionType.swift -_TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s9IndexableS_ -_TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s23CustomStringConvertibleS_ -_TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s9IndexableS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s23CustomStringConvertibleS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_12RLMGeneratorx_s13GeneratorTypeS_ -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmCollectionType.swift -_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArray15reserveCapacityfSiT_ -_TTSg5GVs22_ContiguousArrayBufferMC10RealmSwift6Object_GS_MS1__s16_ArrayBufferTypes_MS1__GVs17IndexingGeneratorGS_MS1___GS3_GS_MS1___s13GeneratorTypes_MS1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferMS1__GS8_MS1__s14CollectionTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1__GS8_MS1__s9IndexablesGS8_MS1__s12SequenceTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1___MS1__MS1__MS1____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5GVs22_ContiguousArrayBufferMC10RealmSwift6Object_GS_MS1__s16_ArrayBufferTypes_MS1__GVs17IndexingGeneratorGS_MS1___GS3_GS_MS1___s13GeneratorTypes_MS1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferMS1__GS8_MS1__s14CollectionTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1__GS8_MS1__s9IndexablesGS8_MS1__s12SequenceTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1___MS1__MS1__MS1____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArray16_copyToNewBufferfSiT_ -_TTSf4g___TTSg5MC10RealmSwift6Object_PMPs9AnyObject____TFs31_arrayConditionalBridgeElementsu0_rFGSax_GSqGSaq___ -_TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferMC10RealmSwift6Object_GS_MS1__s16_ArrayBufferTypes_GVs14_IgnorePointerMS1__GS3_MS1__s20_PointerFunctionTypes_MS1__GVs17IndexingGeneratorGS_MS1___GS5_GS_MS1___s13GeneratorTypes_MS1__GVs12_SliceBufferMS1__GS7_MS1__s14CollectionTypes_GS5_GS7_MS1___GS5_GS7_MS1___S6_s_MS1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS7_MS1__GS7_MS1__s9IndexablesGS7_MS1__s12SequenceTypes_GS5_GS7_MS1___GS5_GS7_MS1___S6_s_MS1__SiSiS9_s_SiSiS10_s_SiSiS11_s_Si_GS7_MS1___MS1__MS1__MS1____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ -_TTSf4g___TFFVC10RealmSwift5Realm13Configurationg11objectTypesGSqGSaMCS_6Object__U_FCSo9RLMSchemaGSaMS2__ -_TwXXVC10RealmSwift5Realm13Configuration -_TwCPVC10RealmSwift5Realm13Configuration -_TwprVC10RealmSwift5Realm13Configuration -_TwdeVC10RealmSwift5Realm13Configuration -_TwxxVC10RealmSwift5Realm13Configuration -_TwCpVC10RealmSwift5Realm13Configuration -_TwcpVC10RealmSwift5Realm13Configuration -_TwcaVC10RealmSwift5Realm13Configuration -_TwTkVC10RealmSwift5Realm13Configuration -__swift_memcpy113_8 -_TwtaVC10RealmSwift5Realm13Configuration -_TwalVC10RealmSwift5Realm13Configuration -_TwXxVC10RealmSwift5Realm13Configuration -_TwCcVC10RealmSwift5Realm13Configuration -__swift_memmove_array120_8 -get_field_types_Configuration -_TMaGCs23_ContiguousArrayStoragePMPs9AnyObject__ -_TPA__TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__.30 -_TPA__TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_.33 -_TPA__TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFo_iTS_S0___iT__.36 -_TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__.39 -block_copy_helper.40 -block_destroy_helper.41 -_TMLPMPs9AnyObject_ -L_selector_data(schemaWithObjectClasses:) -L_selector(schemaWithObjectClasses:) -L_selector_data(setDefaultConfiguration:) -L_selector(setDefaultConfiguration:) -_TMfVC10RealmSwift5Realm13Configuration -field_type_vector_Configuration -_TMLGSqFT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T__ -_TMLFT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T_ -_TMLT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_ -_TMLGSqCSo9RLMSchema_ -_TMLCSo9RLMSchema -_TMLMC10RealmSwift6Object -L_selector_data(objectClass) -L_selector(objectClass) -_TMLGCs23_ContiguousArrayStorageMC10RealmSwift6Object_ -_TMLGCs23_ContiguousArrayStoragePMPs9AnyObject__ -block_descriptor.42 -RealmConfiguration.swift -_TTSg5PMPs9AnyObject____TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5PMPs9AnyObject____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5PMPs9AnyObject____TFVs22_ContiguousArrayBuffers5countSi -_TTSg5PMPs9AnyObject____TFSp10initializefxT_ -_TTSg5PMPs9AnyObject____TZFsoi2eeurFTGSqx_Vs26_OptionalNilComparisonType_Sb -_TTSg5PMPs9AnyObject____TFs34_conditionallyBridgeFromObjectiveCurFTPs9AnyObject_Mx_GSqx_ -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBuffer10getElementfSix -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x -_TTSg5MC10RealmSwift6Object___TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBufferg20_isNativeTypeCheckedSb -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ -_TTSg5MC10RealmSwift6Object___TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken -_TTSg5Vs10_ArrayBody_PMPs9AnyObject____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5GSaMC10RealmSwift6Object_GSaMS0__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_MS0____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ -_TTSg5GSaMC10RealmSwift6Object_GSaMS0__s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceMS0__GS5_MS0__s9IndexablesGS5_MS0__s12SequenceTypes_GVs17IndexingGeneratorGS5_MS0___GS8_GS5_MS0___s13GeneratorTypes_MS0__SiSiS2_s_SiSiS3_s_SiSiS4_s_Si_GS5_MS0___MS0__MS0____TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ -_TTSg5MC10RealmSwift6Object___TFSag8endIndexSi -_TTSg5Vs10_ArrayBody_PMPs9AnyObject____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5PMPs9AnyObject____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5Vs10_ArrayBody_PMPs9AnyObject____TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBufferg5countSi -_TTSg5MC10RealmSwift6Object___TFSa9_getCountfT_Si -_TTSg5MC10RealmSwift6Object___TFSag5countSi -_TTSg5MC10RealmSwift6Object___TFSag9subscriptFSix -_TTSg5Vs10_ArrayBody_PMPs9AnyObject____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5Vs10_ArrayBody_PMPs9AnyObject____TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TTSg5Vs10_ArrayBody_PMPs9AnyObject____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TTSg5Vs10_ArrayBody_PMPs9AnyObject____TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TTSg5PMPs9AnyObject____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ -_TTSg5Vs10_ArrayBody_PMPs9AnyObject____TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5PMPs9AnyObject____TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArrayg5countSi -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TMaGCs23_ContiguousArrayStorageMC10RealmSwift6Object_ -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ -_TTSg5MC10RealmSwift6Object___TFSp18moveInitializeFromfTGSpx_5countSi_T_ -_TTSg5MC10RealmSwift6Object___TFSp7destroyfSiT_ -_TTSg5MC10RealmSwift6Object___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TTSg5MC10RealmSwift6Object___TFSp14initializeFromfTGSpx_5countSi_T_ -_TTSg5MC10RealmSwift6Object___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointerlu5valuex -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBufferg10startIndexSi -_TTSg5MC10RealmSwift6Object___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__ -_TTSg5MC10RealmSwift6Object___TFSaCft12arrayLiteralGSax__GSax_ -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBufferg9_isNativeSb -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBufferg19firstElementAddressGSpx_ -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBuffers5countSi -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBufferCfT_GS_x_ -_TTSg5MC10RealmSwift6Object___TFSaCfT19_uninitializedCountSi_GSax_ -_TTSg5MC10RealmSwift6Object___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TTSg5MC10RealmSwift6Object___TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5MC10RealmSwift6Object___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__ -_TTSg5CSo15RLMObjectSchema___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -_TTSg5MC10RealmSwift6Object___TFSp10initializefxT_ -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBuffers5countSi -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBufferg8capacitySi -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBufferg5countSi -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TMaMC10RealmSwift6Object -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ -_TTSg5CSo15RLMObjectSchema___TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ -_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArrayCfT_GS_x_ -_TTSg5CSo15RLMObjectSchema___TTWurGSax_s14CollectionTypesFS_g5countWx5Index8Distance_ -_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ -_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArray6appendfxT_ -_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TTRXFo_oCSo15RLMObjectSchema_dXMTC10RealmSwift6ObjectzoPs9ErrorType__XFo_iS__iXMTS1_zoPS2___ -_TFFFVC10RealmSwift5Realm13Configurationg11objectTypesGSqGSaMCS_6Object__U_FCSo9RLMSchemaGSaMS2__U_FCSo15RLMObjectSchemaMS2_ -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TTSg5GSaCSo15RLMObjectSchema_GSaS__s14CollectionTypes_GVs17IndexingGeneratorGSaS___GS1_GSaS___s13GeneratorTypes_S__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS6_S__s9IndexablesGS6_S__s12SequenceTypes_GS1_GS6_S___GS1_GS6_S___S2_s_S__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_S___S__S__MC10RealmSwift6Object___TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___ -_TTSg5MC10RealmSwift6Object___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TTSg5CSo15RLMObjectSchema___TFSag5countSi -_TTSg5VSC26NSRegularExpressionOptions___TFSag8endIndexSi -_TTSg5VSC26NSRegularExpressionOptions___TFSag10startIndexSi -_TTSg5VSC26NSRegularExpressionOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator -_TTSg5GSaVSC26NSRegularExpressionOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ -_TTSg5VSC26NSRegularExpressionOptions___TFSag9subscriptFSix -_TTSg5VSC17NSMatchingOptions___TFSag8endIndexSi -_TTSg5VSC17NSMatchingOptions___TFSag10startIndexSi -_TTSg5VSC17NSMatchingOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator -_TTSg5GSaVSC17NSMatchingOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ -_TTSg5VSC17NSMatchingOptions___TFSag9subscriptFSix -_TTWSus21BitwiseOperationsTypesZFS_oi1ofTxx_x -_TMaGSqCSo9RLMSchema_ -_TMaT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_ -_TMaFT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T_ -_TMaGSqFT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T__ -_TMaVC10RealmSwift5Realm13Configuration -_TWaVC10RealmSwift5Realm13Configurations23CustomStringConvertibleS_ -defaultConfiguration.set -migrationBlock.materialize -migrationBlock.set -migrationBlock.get -schemaVersion.materialize -schemaVersion.set -schemaVersion.get -readOnly.materialize -readOnly.set -encryptionKey.materialize -encryptionKey.set -encryptionKey.get -_TTRXFo_oCSo9RLMSchema_oGSaMC10RealmSwift6Object_zoPs9ErrorType__XFo_iS__iGSaMS1__zoPS2___ -_TTSg5CSo9RLMSchema_GSaMC10RealmSwift6Object____TFSq3mapurfzFzxqd__GSqqd___ -objectTypes.get -objectTypes.set -_TTSg5MC10RealmSwift6Object_PMPs9AnyObject____TFs15_arrayForceCastu0_rFGSax_GSaq__ -_TFFVC10RealmSwift5Realm13Configurations11objectTypesGSqGSaMCS_6Object__U_FGSaMS2__CSo9RLMSchema -_TTSg5GSaMC10RealmSwift6Object__CSo9RLMSchema___TFSq3mapurfzFzxqd__GSqqd___ -_TTRXFo_oGSaMC10RealmSwift6Object__oCSo9RLMSchemazoPs9ErrorType__XFo_iGSaMS0___iS1_zoPS2___ -_TTSg5GSaPMPs9AnyObject_____TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb -inMemoryIdentifier.set -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmConfiguration.swift -_TToFC10RealmSwift11ResultsBaseg10rlmResultsCSo10RLMResults -_TToFC10RealmSwift11ResultsBaseg11descriptionSS -_TToFC10RealmSwift11ResultsBase27countByEnumeratingWithStatefTGSpVSC22NSFastEnumerationState_7objectsGVs33AutoreleasingUnsafeMutablePointerGSqPs9AnyObject___5countSi_Si -_TToFC10RealmSwift11ResultsBasecfT_S0_ -_TToFC10RealmSwift7Resultsg5countSi -_TFC10RealmSwift7ResultscfCSo10RLMResultsGS0_x_ -_TToFC10RealmSwift7ResultscfCSo10RLMResultsGS0_x_ -_TToFC10RealmSwift7Results11valueForKeyfSSGSqPs9AnyObject__ -_TToFC10RealmSwift7Results15valueForKeyPathfSSGSqPs9AnyObject__ -_TToFC10RealmSwift7Results8setValuefTGSqPs9AnyObject__6forKeySS_T_ -_TFFC10RealmSwift7Results6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrFqd__GS0_x_U_FS4_Ps9AnyObject_ -_TFFC10RealmSwift7Results20addNotificationBlockFFTGSqGS0_x__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS1___T_ -_TTRXFo_oGSqCSo10RLMResults_oGSqCSo7NSError__dT__XFdCb_dGSqS__dGSqS0___dT__ -_TFFC10RealmSwift7Results21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS2___T_ -_TPA__TFFC10RealmSwift7Results20addNotificationBlockFFTGSqGS0_x__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS1___T_ -_TPA__TFFC10RealmSwift7Results21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS2___T_ -_TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_7Element -_TWIuRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_ -_TWTuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_11SubSequencePs9Indexable_ -_TWTuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_11SubSequencePs12SequenceType_ -_TWIuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_ -_TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s12SequenceTypeS_9Generator -_TWTuRxC10RealmSwift6ObjectrGCS_7Resultsx_s12SequenceTypeS_9GeneratorPs13GeneratorType_ -_TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s12SequenceTypeS_11SubSequence -get_field_types_ResultsBase -get_field_types_Results -create_generic_metadata_Results -_TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_9Generator -_TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s9IndexableS_8_Element -block_destroy_helper.6 -block_copy_helper.5 -_TWTuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_9GeneratorPs13GeneratorType_ -_TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_11SubSequence -L_selector_data(minOfProperty:) -L_selector(minOfProperty:) -L_selector_data(maxOfProperty:) -L_selector(maxOfProperty:) -L_selector_data(sumOfProperty:) -L_selector(sumOfProperty:) -L_selector_data(averageOfProperty:) -L_selector(averageOfProperty:) -_TMLCSo8NSNumber -block_descriptor.7 -_TWGuRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_7Resultsx_s12SequenceTypeS_ -_PROTOCOL_NSFastEnumeration -l_OBJC_LABEL_PROTOCOL_$_NSFastEnumeration -l_OBJC_PROTOCOL_REFERENCE_$_NSFastEnumeration -L_selector_data(rlmResults) -L_selector_data(init:) -_PROTOCOLS__TtC10RealmSwift11ResultsBase -_METACLASS_DATA__TtC10RealmSwift11ResultsBase -_INSTANCE_METHODS__TtC10RealmSwift11ResultsBase -_PROTOCOLS__TtC10RealmSwift11ResultsBase.8 -_IVARS__TtC10RealmSwift11ResultsBase -_PROPERTIES__TtC10RealmSwift11ResultsBase -_DATA__TtC10RealmSwift11ResultsBase -_TMfC10RealmSwift11ResultsBase -_INSTANCE_METHODS__TtC10RealmSwift7Results -_PROPERTIES__TtC10RealmSwift7Results -got.OBJC_CLASS_$_NSDate -field_type_vector_ResultsBase -_TMLCSo10RLMResults -_PROTOCOL_INSTANCE_METHODS_NSFastEnumeration -_PROTOCOL_METHOD_TYPES_NSFastEnumeration -_TTSg5CSo10RLMResultsCSo8NSObjects9Equatable10ObjectiveC___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb -_TTSg5CSo10RLMResultsCSo8NSObjects9Equatable10ObjectiveC___TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb -rlmResults.get -_TMaCSo10RLMResults -_TMaC10RealmSwift11ResultsBase -_TWauRxC10RealmSwift6ObjectrGCS_7Resultsx_s12SequenceTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_7Resultsx_s9IndexableS_ -_TWauRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_ -_TWaVs5Int6410RealmSwift11AddableTypeS0_ -_TWaVs5Int3210RealmSwift11AddableTypeS0_ -_TWaVs5Int1610RealmSwift11AddableTypeS0_ -_TWaVs4Int810RealmSwift11AddableTypeS0_ -_TWaSi10RealmSwift11AddableTypeS_ -_TWaSf10RealmSwift11AddableTypeS_ -_TWaSd10RealmSwift11AddableTypeS_ -_TWaCSo6NSDate10RealmSwift10MinMaxTypeS0_ -_TWaVs5Int6410RealmSwift10MinMaxTypeS0_ -_TWaVs5Int3210RealmSwift10MinMaxTypeS0_ -_TWaVs5Int1610RealmSwift10MinMaxTypeS0_ -_TWaVs4Int810RealmSwift10MinMaxTypeS0_ -_TWaSi10RealmSwift10MinMaxTypeS_ -_TWaSf10RealmSwift10MinMaxTypeS_ -_TWaSd10RealmSwift10MinMaxTypeS_ -_TTSf4s_s___TFFs26_unimplemented_initializerFTVs12StaticString8initNameS_4fileS_4lineSu6columnSu_T_U0_FGSRVs5UInt8_T_ -countByEnumeratingWithState -_TMaCSo8NSNumber -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Results.swift -_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray15reserveCapacityfSiT_ -_TTSg5GVs22_ContiguousArrayBufferC10RealmSwift12ObjectSchema_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5GVs22_ContiguousArrayBufferC10RealmSwift12ObjectSchema_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray16_copyToNewBufferfSiT_ -get_field_types_Schema -_TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferC10RealmSwift12ObjectSchema_GS_S1__s16_ArrayBufferTypes_GVs14_IgnorePointerS1__GS3_S1__s20_PointerFunctionTypes_S1__GVs17IndexingGeneratorGS_S1___GS5_GS_S1___s13GeneratorTypes_S1__GVs12_SliceBufferS1__GS7_S1__s14CollectionTypes_GS5_GS7_S1___GS5_GS7_S1___S6_s_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS7_S1__GS7_S1__s9IndexablesGS7_S1__s12SequenceTypes_GS5_GS7_S1___GS5_GS7_S1___S6_s_S1__SiSiS9_s_SiSiS10_s_SiSiS11_s_Si_GS7_S1___S1__S1__S1____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ -_TMaGCs23_ContiguousArrayStorageC10RealmSwift12ObjectSchema_ -_METACLASS_DATA__TtC10RealmSwift6Schema -_IVARS__TtC10RealmSwift6Schema -_DATA__TtC10RealmSwift6Schema -_TMfC10RealmSwift6Schema -field_type_vector_Schema -_TMLGCs23_ContiguousArrayStorageC10RealmSwift12ObjectSchema_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArrayg5countSi -Schema.swift -_TTSg5CSo15RLMObjectSchema_Ps9AnyObject____TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___ -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ -_TTSg5C10RealmSwift12ObjectSchema___TFSp18moveInitializeFromfTGSpx_5countSi_T_ -_TTSg5C10RealmSwift12ObjectSchema___TFSp7destroyfSiT_ -_TTSg5C10RealmSwift12ObjectSchema___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TTSg5C10RealmSwift12ObjectSchema___TFSp14initializeFromfTGSpx_5countSi_T_ -_TTSg5C10RealmSwift12ObjectSchema___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointerlu5valuex -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferg10startIndexSi -_TTSg5C10RealmSwift12ObjectSchema___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__ -_TMaC10RealmSwift6Schema -_TWaC10RealmSwift6Schemas9EquatableS_ -_TWaC10RealmSwift6Schemas23CustomStringConvertibleS_ -_TTSg5C10RealmSwift12ObjectSchema___TFSaCft12arrayLiteralGSax__GSax_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs12_ArrayBufferg9_isNativeSb -_TTSg5C10RealmSwift12ObjectSchema___TFVs12_ArrayBufferg19firstElementAddressGSpx_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs12_ArrayBuffers5countSi -_TTSg5C10RealmSwift12ObjectSchema___TFVs12_ArrayBufferCfT_GS_x_ -_TTSg5C10RealmSwift12ObjectSchema___TFSaCfT19_uninitializedCountSi_GSax_ -_TTSg5C10RealmSwift12ObjectSchema___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TTSg5C10RealmSwift12ObjectSchema___TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5C10RealmSwift12ObjectSchema___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__ -_TTSg5C10RealmSwift12ObjectSchema___TFSp10initializefxT_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBuffers5countSi -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferg8capacitySi -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferg5countSi -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ -_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArrayCfT_GS_x_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray6appendfxT_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TTRXFo_oCSo15RLMObjectSchema_oC10RealmSwift12ObjectSchemazoPs9ErrorType__XFo_iS__iS1_zoPS2___ -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TTSg5GSaCSo15RLMObjectSchema_GSaS__s14CollectionTypes_GVs17IndexingGeneratorGSaS___GS1_GSaS___s13GeneratorTypes_S__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS6_S__s9IndexablesGS6_S__s12SequenceTypes_GS1_GS6_S___GS1_GS6_S___S2_s_S__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_S___S__S__C10RealmSwift12ObjectSchema___TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___ -_TTSg5C10RealmSwift12ObjectSchema___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Schema.swift -_TwXXV10RealmSwift14SortDescriptor -_TwCPV10RealmSwift14SortDescriptor -_TwprV10RealmSwift14SortDescriptor -_TwdeV10RealmSwift14SortDescriptor -_TwxxV10RealmSwift14SortDescriptor -_TwCpV10RealmSwift14SortDescriptor -_TwcpV10RealmSwift14SortDescriptor -_TwcaV10RealmSwift14SortDescriptor -_TwTkV10RealmSwift14SortDescriptor -__swift_memcpy25_8 -_TwtaV10RealmSwift14SortDescriptor -_TwalV10RealmSwift14SortDescriptor -_TwXxV10RealmSwift14SortDescriptor -_TwCcV10RealmSwift14SortDescriptor -__swift_memmove_array32_8 -get_field_types_SortDescriptor -_TMfV10RealmSwift14SortDescriptor -got._TMps24StringLiteralConvertible -got._TMps41ExtendedGraphemeClusterLiteralConvertible -got._TMps31UnicodeScalarLiteralConvertible -field_type_vector_SortDescriptor -SortDescriptor.swift -_TMaV10RealmSwift14SortDescriptor -_TWaV10RealmSwift14SortDescriptors31UnicodeScalarLiteralConvertibleS_ -_TWaV10RealmSwift14SortDescriptors41ExtendedGraphemeClusterLiteralConvertibleS_ -_TWaV10RealmSwift14SortDescriptors24StringLiteralConvertibleS_ -_TWaV10RealmSwift14SortDescriptors9EquatableS_ -_TWaV10RealmSwift14SortDescriptors23CustomStringConvertibleS_ -ascending.get -property.get -reversed -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SortDescriptor.swift -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SwiftVersion.swift -Util.swift -throwForNegativeIndex -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Util.swift diff --git a/Carthage/Build/tvOS/Realm.framework.dSYM/Contents/Info.plist b/Carthage/Build/tvOS/Realm.framework.dSYM/Contents/Info.plist deleted file mode 100644 index d8f0315..0000000 --- a/Carthage/Build/tvOS/Realm.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.io.Realm.Realm - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 0.98.6 - CFBundleVersion - 0.98.6 - - diff --git a/Carthage/Build/tvOS/Realm.framework.dSYM/Contents/Resources/DWARF/Realm b/Carthage/Build/tvOS/Realm.framework.dSYM/Contents/Resources/DWARF/Realm deleted file mode 100644 index 1592a9a..0000000 Binary files a/Carthage/Build/tvOS/Realm.framework.dSYM/Contents/Resources/DWARF/Realm and /dev/null differ diff --git a/Carthage/Build/tvOS/Realm.framework/CHANGELOG.md b/Carthage/Build/tvOS/Realm.framework/CHANGELOG.md deleted file mode 100644 index 23bdb96..0000000 --- a/Carthage/Build/tvOS/Realm.framework/CHANGELOG.md +++ /dev/null @@ -1,1516 +0,0 @@ -0.98.6 Release notes (2016-03-25) -============================================================= - -Prebuilt frameworks are now built with Xcode 7.3. - -### API breaking changes - -* None. - -### Enhancements - -* None. - -### Bugfixes - -* Fix running unit tests on iOS simulators and devices with Xcode 7.3. - -0.98.5 Release notes (2016-03-14) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* None. - -### Bugfixes - -* Fix a crash when opening a Realm on 32-bit iOS devices. - -0.98.4 Release notes (2016-03-10) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* None. - -### Bugfixes - -* Properly report changes made by adding an object to a Realm with - addOrUpdate:/createOrUpdate: to KVO observers for existing objects with that - primary key. -* Fix crashes and assorted issues when a migration which added object link - properties is rolled back due to an error in the migration block. -* Fix assertion failures when deleting objects within a migration block of a - type which had an object link property added in that migration. -* Fix an assertion failure in `Query::apply_patch` when updating certain kinds - of queries after a write transaction is committed. - -0.98.3 Release notes (2016-02-26) -============================================================= - -### Enhancements - -* Initializing the shared schema is 3x faster. - -### Bugfixes - -* Using Realm Objective-C from Swift while having Realm Swift linked no longer causes that the - declared `ignoredProperties` are not taken into account. -* Fix assertion failures when rolling back a migration which added Object link - properties to a class. -* Fix potential errors when cancelling a write transaction which modified - multiple `RLMArray`/`List` properties. -* Report the correct value for inWriteTransaction after attempting to commit a - write transaction fails. -* Support CocoaPods 1.0 beginning from prerelease 1.0.0.beta.4 while retaining - backwards compatibility with 0.39. - -0.98.2 Release notes (2016-02-18) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Aggregate operations (`ANY`, `NONE`, `@count`, `SUBQUERY`, etc.) are now supported for key paths - that begin with an object relationship so long as there is a `RLMArray`/`List` property at some - point in a key path. -* Predicates of the form `%@ IN arrayProperty` are now supported. - -### Bugfixes - -* Use of KVC collection operators on Swift collection types no longer throws an exception. -* Fix reporting of inWriteTransaction in notifications triggered by - `beginWriteTransaction`. -* The contents of `List` and `Optional` properties are now correctly preserved when copying - a Swift object from one Realm to another, and performing other operations that result in a - Swift object graph being recursively traversed from Objective-C. -* Fix a deadlock when queries are performed within a Realm notification block. -* The `ANY` / `SOME` / `NONE` qualifiers are now required in comparisons involving a key path that - traverse a `RLMArray`/`List` property. Previously they were only required if the first key in the - key path was an `RLMArray`/`List` property. -* Fix several scenarios where the default schema would be initialized - incorrectly if the first Realm opened used a restricted class subset (via - `objectClasses`/`objectTypes`). - -0.98.1 Release notes (2016-02-10) -============================================================= - -### Bugfixes - -* Fix crashes when deleting an object containing an `RLMArray`/`List` which had - previously been queried. -* Fix a crash when deleting an object containing an `RLMArray`/`List` with - active notification blocks. -* Fix duplicate file warnings when building via CocoaPods. -* Fix crash or incorrect results when calling `indexOfObject:` on an - `RLMResults` derived from an `RLMArray`. - -0.98.0 Release notes (2016-02-04) -============================================================= - -### API breaking changes - -* `+[RLMRealm realmWithPath:]`/`Realm.init(path:)` now inherits from the default - configuration. -* Swift 1.2 is no longer supported. - -### Enhancements - -* Add `addNotificationBlock` to `RLMResults`, `Results`, `RLMArray`, and - `List`, which calls the given block whenever the collection changes. -* Do a lot of the work for keeping `RLMResults`/`Results` up-to-date after - write transactions on a background thread to help avoid blocking the main - thread. -* `NSPredicate`'s `SUBQUERY` operator is now supported. It has the following limitations: - * `@count` is the only operator that may be applied to the `SUBQUERY` expression. - * The `SUBQUERY(…).@count` expression must be compared with a constant. - * Correlated subqueries are not yet supported. - -### Bugfixes - -* None. - -0.97.1 Release notes (2016-01-29) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Swift: Added `Error` enum allowing to catch errors e.g. thrown on initializing - `RLMRealm`/`Realm` instances. -* Fail with `RLMErrorFileNotFound` instead of the more generic `RLMErrorFileAccess`, - if no file was found when a realm was opened as read-only or if the directory part - of the specified path was not found when a copy should be written. -* Greatly improve performance when deleting objects with one or more indexed - properties. -* Indexing `BOOL`/`Bool` and `NSDate` properties are now supported. -* Swift: Add support for indexing optional properties. - -### Bugfixes - -* Fix incorrect results or crashes when using `-[RLMResults setValue:forKey:]` - on an RLMResults which was filtered on the key being set. -* Fix crashes when an RLMRealm is deallocated from the wrong thread. -* Fix incorrect results from aggregate methods on `Results`/`RLMResults` after - objects which were previously in the results are deleted. -* Fix a crash when adding a new property to an existing class with over a - million objects in the Realm. -* Fix errors when opening encrypted Realm files created with writeCopyToPath. -* Fix crashes or incorrect results for queries that use relationship equality - in cases where the `RLMResults` is kept alive and instances of the target class - of the relationship are deleted. - -0.97.0 Release notes (2015-12-17) -============================================================= - -### API breaking changes - -* All functionality deprecated in previous releases has been removed entirely. -* Add generic type annotations to NSArrays and NSDictionaries in public APIs. -* Adding a Realm notification block on a thread not currently running from - within a run loop throws an exception rather than silently never calling the - notification block. - -### Enhancements - -* Support for tvOS. -* Support for building Realm Swift from source when using Carthage. -* The block parameter of `-[RLMRealm transactionWithBlock:]`/`Realm.write(_:)` is - now marked as `__attribute__((noescape))`/`@noescape`. -* Many forms of queries with key paths on both sides of the comparison operator - are now supported. -* Add support for KVC collection operators in `RLMResults` and `RLMArray`. -* Fail instead of deadlocking in `+[RLMRealm sharedSchema]`, if a Swift property is initialized - to a computed value, which attempts to open a Realm on its own. - -### Bugfixes - -* Fix poor performance when calling `-[RLMRealm deleteObjects:]` on an - `RLMResults` which filtered the objects when there are other classes linking - to the type of the deleted objects. -* An exception is now thrown when defining `Object` properties of an unsupported - type. - -0.96.3 Release notes (2015-12-04) -============================================================= - -### Enhancements - -* Queries are no longer limited to 16 levels of grouping. -* Rework the implementation of encrypted Realms to no longer interfere with - debuggers. - -### Bugfixes - -* Fix crash when trying to retrieve object instances via `dynamicObjects`. -* Throw an exception when querying on a link providing objects, which are from a different Realm. -* Return empty results when querying on a link providing an unattached object. -* Fix crashes or incorrect results when calling `-[RLMRealm refresh]` during - fast enumeration. -* Add `Int8` support for `RealmOptional`, `MinMaxType` and `AddableType`. -* Set the default value for newly added non-optional NSData properties to a - zero-byte NSData rather than nil. -* Fix a potential crash when deleting all objects of a class. -* Fix performance problems when creating large numbers of objects with - `RLMArray`/`List` properties. -* Fix memory leak when using Object(value:) for subclasses with - `List` or `RealmOptional` properties. -* Fix a crash when computing the average of an optional integer property. -* Fix incorrect search results for some queries on integer properties. -* Add error-checking for nil realm parameters in many methods such as - `+[RLMObject allObjectsInRealm:]`. -* Fix a race condition between commits and opening Realm files on new threads - that could lead to a crash. -* Fix several crashes when opening Realm files. -* `-[RLMObject createInRealm:withValue:]`, `-[RLMObject createOrUpdateInRealm:withValue:]`, and - their variants for the default Realm now always match the contents of an `NSArray` against properties - in the same order as they are defined in the model. - -0.96.2 Release notes (2015-10-26) -============================================================= - -Prebuilt frameworks are now built with Xcode 7.1. - -### Bugfixes - -* Fix ignoring optional properties in Swift. -* Fix CocoaPods installation on case-sensitive file systems. - -0.96.1 Release notes (2015-10-20) -============================================================= - -### Bugfixes - -* Support assigning `Results` to `List` properties via KVC. -* Honor the schema version set in the configuration in `+[RLMRealm migrateRealm:]`. -* Fix crash when using optional Int16/Int32/Int64 properties in Swift. - -0.96.0 Release notes (2015-10-14) -============================================================= - -* No functional changes since beta2. - -0.96.0-beta2 Release notes (2015-10-08) -============================================================= - -### Bugfixes - -* Add RLMOptionalBase.h to the podspec. - -0.96.0-beta Release notes (2015-10-07) -============================================================= - -### API breaking changes - -* CocoaPods v0.38 or greater is now required to install Realm and RealmSwift - as pods. - -### Enhancements - -* Functionality common to both `List` and `Results` is now declared in a - `RealmCollectionType` protocol that both types conform to. -* `Results.realm` now returns an `Optional` in order to conform to - `RealmCollectionType`, but will always return `.Some()` since a `Results` - cannot exist independently from a `Realm`. -* Aggregate operations are now available on `List`: `min`, `max`, `sum`, - `average`. -* Committing write transactions (via `commitWrite` / `commitWriteTransaction` and - `write` / `transactionWithBlock`) now optionally allow for handling errors when - the disk is out of space. -* Added `isEmpty` property on `RLMRealm`/`Realm` to indicate if it contains any - objects. -* The `@count`, `@min`, `@max`, `@sum` and `@avg` collection operators are now - supported in queries. - -### Bugfixes - -* Fix assertion failure when inserting NSData between 8MB and 16MB in size. -* Fix assertion failure when rolling back a migration which removed an object - link or `RLMArray`/`List` property. -* Add the path of the file being opened to file open errors. -* Fix a crash that could be triggered by rapidly opening and closing a Realm - many times on multiple threads at once. -* Fix several places where exception messages included the name of the wrong - function which failed. - -0.95.3 Release notes (2015-10-05) -============================================================= - -### Bugfixes - -* Compile iOS Simulator framework architectures with `-fembed-bitcode-marker`. -* Fix crashes when the first Realm opened uses a class subset and later Realms - opened do not. -* Fix inconsistent errors when `Object(value: ...)` is used to initialize the - default value of a property of an `Object` subclass. -* Throw an exception when a class subset has objects with array or object - properties of a type that are not part of the class subset. - -0.95.2 Release notes (2015-09-24) -============================================================= - -* Enable bitcode for iOS and watchOS frameworks. -* Build libraries with Xcode 7 final rather than the GM. - -0.95.1 Release notes (2015-09-23) -============================================================= - -### Enhancements - -* Add missing KVO handling for moving and exchanging objects in `RLMArray` and - `List`. - -### Bugfixes - -* Setting the primary key property on persisted `RLMObject`s / `Object`s - via subscripting or key-value coding will cause an exception to be thrown. -* Fix crash due to race condition in `RLMRealmConfiguration` where the default - configuration was in the process of being copied in one thread, while - released in another. -* Fix crash when a migration which removed an object or array property is - rolled back due to an error. - -0.95.0 Release notes (2015-08-25) -============================================================= - -### API breaking changes - -* The following APIs have been deprecated in favor of the new `RLMRealmConfiguration` class in Realm Objective-C: - -| Deprecated API | New API | -|:------------------------------------------------------------------|:---------------------------------------------------------------------------------| -| `+[RLMRealm realmWithPath:readOnly:error:]` | `+[RLMRealm realmWithConfiguration:error:]` | -| `+[RLMRealm realmWithPath:encryptionKey:readOnly:error:]` | `+[RLMRealm realmWithConfiguration:error:]` | -| `+[RLMRealm setEncryptionKey:forRealmsAtPath:]` | `-[RLMRealmConfiguration setEncryptionKey:]` | -| `+[RLMRealm inMemoryRealmWithIdentifier:]` | `+[RLMRealm realmWithConfiguration:error:]` | -| `+[RLMRealm defaultRealmPath]` | `+[RLMRealmConfiguration defaultConfiguration]` | -| `+[RLMRealm setDefaultRealmPath:]` | `+[RLMRealmConfiguration setDefaultConfiguration:]` | -| `+[RLMRealm setDefaultRealmSchemaVersion:withMigrationBlock]` | `RLMRealmConfiguration.schemaVersion` and `RLMRealmConfiguration.migrationBlock` | -| `+[RLMRealm setSchemaVersion:forRealmAtPath:withMigrationBlock:]` | `RLMRealmConfiguration.schemaVersion` and `RLMRealmConfiguration.migrationBlock` | -| `+[RLMRealm migrateRealmAtPath:]` | `+[RLMRealm migrateRealm:]` | -| `+[RLMRealm migrateRealmAtPath:encryptionKey:]` | `+[RLMRealm migrateRealm:]` | - -* The following APIs have been deprecated in favor of the new `Realm.Configuration` struct in Realm Swift for Swift 1.2: - -| Deprecated API | New API | -|:--------------------------------------------------------------|:-----------------------------------------------------------------------------| -| `Realm.defaultPath` | `Realm.Configuration.defaultConfiguration` | -| `Realm(path:readOnly:encryptionKey:error:)` | `Realm(configuration:error:)` | -| `Realm(inMemoryIdentifier:)` | `Realm(configuration:error:)` | -| `Realm.setEncryptionKey(:forPath:)` | `Realm(configuration:error:)` | -| `setDefaultRealmSchemaVersion(schemaVersion:migrationBlock:)` | `Realm.Configuration.schemaVersion` and `Realm.Configuration.migrationBlock` | -| `setSchemaVersion(schemaVersion:realmPath:migrationBlock:)` | `Realm.Configuration.schemaVersion` and `Realm.Configuration.migrationBlock` | -| `migrateRealm(path:encryptionKey:)` | `migrateRealm(configuration:)` | - -* The following APIs have been deprecated in favor of the new `Realm.Configuration` struct in Realm Swift for Swift 2.0: - -| Deprecated API | New API | -|:--------------------------------------------------------------|:-----------------------------------------------------------------------------| -| `Realm.defaultPath` | `Realm.Configuration.defaultConfiguration` | -| `Realm(path:readOnly:encryptionKey:) throws` | `Realm(configuration:) throws` | -| `Realm(inMemoryIdentifier:)` | `Realm(configuration:) throws` | -| `Realm.setEncryptionKey(:forPath:)` | `Realm(configuration:) throws` | -| `setDefaultRealmSchemaVersion(schemaVersion:migrationBlock:)` | `Realm.Configuration.schemaVersion` and `Realm.Configuration.migrationBlock` | -| `setSchemaVersion(schemaVersion:realmPath:migrationBlock:)` | `Realm.Configuration.schemaVersion` and `Realm.Configuration.migrationBlock` | -| `migrateRealm(path:encryptionKey:)` | `migrateRealm(configuration:)` | - -* `List.extend` in Realm Swift for Swift 2.0 has been replaced with `List.appendContentsOf`, - mirroring changes to `RangeReplaceableCollectionType`. - -* Object properties on `Object` subclasses in Realm Swift must be marked as optional, - otherwise a runtime exception will be thrown. - -### Enhancements - -* Persisted properties of `RLMObject`/`Object` subclasses are now Key-Value - Observing compliant. -* The different options used to create Realm instances have been consolidated - into a single `RLMRealmConfiguration`/`Realm.Configuration` object. -* Enumerating Realm collections (`RLMArray`, `RLMResults`, `List<>`, - `Results<>`) now enumerates over a copy of the collection, making it no - longer an error to modify a collection during enumeration (either directly, - or indirectly by modifying objects to make them no longer match a query). -* Improve performance of object insertion in Swift to bring it roughly in line - with Objective-C. -* Allow specifying a specific list of `RLMObject` / `Object` subclasses to include - in a given Realm via `RLMRealmConfiguration.objectClasses` / `Realm.Configuration.objectTypes`. - -### Bugfixes - -* Subscripting on `RLMObject` is now marked as nullable. - -0.94.1 Release notes (2015-08-10) -============================================================= - -### API breaking changes - -* Building for watchOS requires Xcode 7 beta 5. - -### Enhancements - -* `Object.className` is now marked as `final`. - -### Bugfixes - -* Fix crash when adding a property to a model without updating the schema - version. -* Fix unnecessary redownloading of the core library when building from source. -* Fix crash when sorting by an integer or floating-point property on iOS 7. - -0.94.0 Release notes (2015-07-29) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Reduce the amount of memory used by RLMRealm notification listener threads. -* Avoid evaluating results eagerly when filtering and sorting. -* Add nullability annotations to the Objective-C API to provide enhanced compiler - warnings and bridging to Swift. -* Make `RLMResult`s and `RLMArray`s support Objective-C generics. -* Add support for building watchOS and bitcode-compatible apps. -* Make the exceptions thrown in getters and setters more informative. -* Add `-[RLMArray exchangeObjectAtIndex:withObjectAtIndex]` and `List.swap(_:_:)` - to allow exchanging the location of two objects in the given `RLMArray` / `List`. -* Added anonymous analytics on simulator/debugger runs. -* Add `-[RLMArray moveObjectAtIndex:toIndex:]` and `List.move(from:to:)` to - allow moving objects in the given `RLMArray` / `List`. - -### Bugfixes - -* Processes crashing due to an uncaught exception inside a write transaction will - no longer cause other processes using the same Realm to hang indefinitely. -* Fix incorrect results when querying for < or <= on ints that - require 64 bits to represent with a CPU that supports SSE 4.2. -* An exception will no longer be thrown when attempting to reset the schema - version or encryption key on an open Realm to the current value. -* Date properties on 32 bit devices will retain 64 bit second precision. -* Wrap calls to the block passed to `enumerate` in an autoreleasepool to reduce - memory growth when migrating a large amount of objects. -* In-memory realms no longer write to the Documents directory on iOS or - Application Support on OS X. - -0.93.2 Release notes (2015-06-12) -============================================================= - -### Bugfixes - -* Fixed an issue where the packaged OS X Realm.framework was built with - `GCC_GENERATE_TEST_COVERAGE_FILES` and `GCC_INSTRUMENT_PROGRAM_FLOW_ARCS` - enabled. -* Fix a memory leak when constructing standalone Swift objects with NSDate - properties. -* Throw an exception rather than asserting when an invalidated object is added - to an RLMArray. -* Fix a case where data loss would occur if a device was hard-powered-off - shortly after a write transaction was committed which had to expand the Realm - file. - -0.93.1 Release notes (2015-05-29) -============================================================= - -### Bugfixes - -* Objects are no longer copied into standalone objects during object creation. This fixes an issue where - nested objects with a primary key are sometimes duplicated rather than updated. -* Comparison predicates with a constant on the left of the operator and key path on the right now give - correct results. An exception is now thrown for predicates that do not yet support this ordering. -* Fix some crashes in `index_string.cpp` with int primary keys or indexed int properties. - -0.93.0 Release notes (2015-05-27) -============================================================= - -### API breaking changes - -* Schema versions are now represented as `uint64_t` (Objective-C) and `UInt64` (Swift) so that they have - the same representation on all architectures. - -### Enhancements - -* Swift: `Results` now conforms to `CVarArgType` so it can - now be passed as an argument to `Results.filter(_:...)` - and `List.filter(_:...)`. -* Swift: Made `SortDescriptor` conform to the `Equatable` and - `StringLiteralConvertible` protocols. -* Int primary keys are once again automatically indexed. -* Improve error reporting when attempting to mark a property of a type that - cannot be indexed as indexed. - -### Bugfixes - -* Swift: `RealmSwift.framework` no longer embeds `Realm.framework`, - which now allows apps using it to pass iTunes Connect validation. - -0.92.4 Release notes (2015-05-22) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Swift: Made `Object.init()` a required initializer. -* `RLMObject`, `RLMResults`, `Object` and `Results` can now be safely - deallocated (but still not used) from any thread. -* Improve performance of `-[RLMArray indexOfObjectWhere:]` and `-[RLMArray - indexOfObjectWithPredicate:]`, and implement them for standalone RLMArrays. -* Improved performance of most simple queries. - -### Bugfixes - -* The interprocess notification mechanism no longer uses dispatch worker threads, preventing it from - starving other GCD clients of the opportunity to execute blocks when dozens of Realms are open at once. - -0.92.3 Release notes (2015-05-13) -============================================================= - -### API breaking changes - -* Swift: `Results.average(_:)` now returns an optional, which is `nil` if and only if the results - set is empty. - -### Enhancements - -* Swift: Added `List.invalidated`, which returns if the given `List` is no longer - safe to be accessed, and is analogous to `-[RLMArray isInvalidated]`. -* Assertion messages are automatically logged to Crashlytics if it's loaded - into the current process to make it easier to diagnose crashes. - -### Bugfixes - -* Swift: Enumerating through a standalone `List` whose objects themselves - have list properties won't crash. -* Swift: Using a subclass of `RealmSwift.Object` in an aggregate operator of a predicate - no longer throws a spurious type error. -* Fix incorrect results for when using OR in a query on a `RLMArray`/`List<>`. -* Fix incorrect values from `[RLMResults count]`/`Results.count` when using - `!=` on an int property with no other query conditions. -* Lower the maximum doubling threshold for Realm file sizes from 128MB to 16MB - to reduce the amount of wasted space. - -0.92.2 Release notes (2015-05-08) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Exceptions raised when incorrect object types are used with predicates now contain more detailed information. -* Added `-[RLMMigration deleteDataForClassName:]` and `Migration.deleteData(_:)` - to enable cleaning up after removing object subclasses - -### Bugfixes - -* Prevent debugging of an application using an encrypted Realm to work around - frequent LLDB hangs. Until the underlying issue is addressed you may set - REALM_DISABLE_ENCRYPTION=YES in your application's environment variables to - have requests to open an encrypted Realm treated as a request for an - unencrypted Realm. -* Linked objects are properly updated in `createOrUpdateInRealm:withValue:`. -* List properties on Objects are now properly initialized during fast enumeration. - -0.92.1 Release notes (2015-05-06) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* `-[RLMRealm inWriteTransaction]` is now public. -* Realm Swift is now available on CoocaPods. - -### Bugfixes - -* Force code re-signing after stripping architectures in `strip-frameworks.sh`. - -0.92.0 Release notes (2015-05-05) -============================================================= - -### API breaking changes - -* Migration blocks are no longer called when a Realm file is first created. -* The following APIs have been deprecated in favor of newer method names: - -| Deprecated API | New API | -|:-------------------------------------------------------|:------------------------------------------------------| -| `-[RLMMigration createObject:withObject:]` | `-[RLMMigration createObject:withValue:]` | -| `-[RLMObject initWithObject:]` | `-[RLMObject initWithValue:]` | -| `+[RLMObject createInDefaultRealmWithObject:]` | `+[RLMObject createInDefaultRealmWithValue:]` | -| `+[RLMObject createInRealm:withObject:]` | `+[RLMObject createInRealm:withValue:]` | -| `+[RLMObject createOrUpdateInDefaultRealmWithObject:]` | `+[RLMObject createOrUpdateInDefaultRealmWithValue:]` | -| `+[RLMObject createOrUpdateInRealm:withObject:]` | `+[RLMObject createOrUpdateInRealm:withValue:]` | - -### Enhancements - -* `Int8` properties defined in Swift are now treated as integers, rather than - booleans. -* NSPredicates created using `+predicateWithValue:` are now supported. - -### Bugfixes - -* Compound AND predicates with no subpredicates now correctly match all objects. - -0.91.5 Release notes (2015-04-28) -============================================================= - -### Bugfixes - -* Fix issues with removing search indexes and re-enable it. - -0.91.4 Release notes (2015-04-27) -============================================================= - -### Bugfixes - -* Temporarily disable removing indexes from existing columns due to bugs. - -0.91.3 Release notes (2015-04-17) -============================================================= - -### Bugfixes - -* Fix `Extra argument 'objectClassName' in call` errors when building via - CocoaPods. - -0.91.2 Release notes (2015-04-16) -============================================================= - -* Migration blocks are no longer called when a Realm file is first created. - -### Enhancements - -* `RLMCollection` supports collection KVC operations. -* Sorting `RLMResults` is 2-5x faster (typically closer to 2x). -* Refreshing `RLMRealm` after a write transaction which inserts or modifies - strings or `NSData` is committed on another thread is significantly faster. -* Indexes are now added and removed from existing properties when a Realm file - is opened, rather than only when properties are first added. - -### Bugfixes - -* `+[RLMSchema dynamicSchemaForRealm:]` now respects search indexes. -* `+[RLMProperty isEqualToProperty:]` now checks for equal `indexed` properties. - -0.91.1 Release notes (2015-03-12) -============================================================= - -### Enhancements - -* The browser will automatically refresh when the Realm has been modified - from another process. -* Allow using Realm in an embedded framework by setting - `APPLICATION_EXTENSION_API_ONLY` to YES. - -### Bugfixes - -* Fix a crash in CFRunLoopSourceInvalidate. - -0.91.0 Release notes (2015-03-10) -============================================================= - -### API breaking changes - -* `attributesForProperty:` has been removed from `RLMObject`. You now specify indexed - properties by implementing the `indexedProperties` method. -* An exception will be thrown when calling `setEncryptionKey:forRealmsAtPath:`, - `setSchemaVersion:forRealmAtPath:withMigrationBlock:`, and `migrateRealmAtPath:` - when a Realm at the given path is already open. -* Object and array properties of type `RLMObject` will no longer be allowed. - -### Enhancements - -* Add support for sharing Realm files between processes. -* The browser will no longer show objects that have no persisted properties. -* `RLMSchema`, `RLMObjectSchema`, and `RLMProperty` now have more useful descriptions. -* Opening an encrypted Realm while a debugger is attached to the process no - longer throws an exception. -* `RLMArray` now exposes an `isInvalidated` property to indicate if it can no - longer be accessed. - -### Bugfixes - -* An exception will now be thrown when calling `-beginWriteTransaction` from within a notification - triggered by calling `-beginWriteTransaction` elsewhere. -* When calling `delete:` we now verify that the object being deleted is persisted in the target Realm. -* Fix crash when calling `createOrUpdate:inRealm` with nested linked objects. -* Use the key from `+[RLMRealm setEncryptionKey:forRealmsAtPath:]` in - `-writeCopyToPath:error:` and `+migrateRealmAtPath:`. -* Comparing an RLMObject to a non-RLMObject using `-[RLMObject isEqual:]` or - `-isEqualToObject:` now returns NO instead of crashing. -* Improved error message when an `RLMObject` subclass is defined nested within - another Swift declaration. -* Fix crash when the process is terminated by the OS on iOS while encrypted realms are open. -* Fix crash after large commits to encrypted realms. - -0.90.6 Release notes (2015-02-20) -============================================================= - -### Enhancements - -* Improve compatiblity of encrypted Realms with third-party crash reporters. - -### Bugfixes - -* Fix incorrect results when using aggregate functions on sorted RLMResults. -* Fix data corruption when using writeCopyToPath:encryptionKey:. -* Maybe fix some assertion failures. - -0.90.5 Release notes (2015-02-04) -============================================================= - -### Bugfixes - -* Fix for crashes when encryption is enabled on 64-bit iOS devices. - -0.90.4 Release notes (2015-01-29) -============================================================= - -### Bugfixes - -* Fix bug that resulted in columns being dropped and recreated during migrations. - -0.90.3 Release notes (2015-01-27) -============================================================= - -### Enhancements - -* Calling `createInDefaultRealmWithObject:`, `createInRealm:withObject:`, - `createOrUpdateInDefaultRealmWithObject:` or `createOrUpdateInRealm:withObject:` - is a no-op if the argument is an RLMObject of the same type as the receiver - and is already backed by the target realm. - -### Bugfixes - -* Fix incorrect column type assertions when the first Realm file opened is a - read-only file that is missing tables. -* Throw an exception when adding an invalidated or deleted object as a link. -* Throw an exception when calling `createOrUpdateInRealm:withObject:` when the - receiver has no primary key defined. - -0.90.1 Release notes (2015-01-22) -============================================================= - -### Bugfixes - -* Fix for RLMObject being treated as a model object class and showing up in the browser. -* Fix compilation from the podspec. -* Fix for crash when calling `objectsWhere:` with grouping in the query on `allObjects`. - -0.90.0 Release notes (2015-01-21) -============================================================= - -### API breaking changes - -* Rename `-[RLMRealm encryptedRealmWithPath:key:readOnly:error:]` to - `-[RLMRealm realmWithPath:encryptionKey:readOnly:error:]`. -* `-[RLMRealm setSchemaVersion:withMigrationBlock]` is no longer global and must be called - for each individual Realm path used. You can now call `-[RLMRealm setDefaultRealmSchemaVersion:withMigrationBlock]` - for the default Realm and `-[RLMRealm setSchemaVersion:forRealmAtPath:withMigrationBlock:]` for all others; - -### Enhancements - -* Add `-[RLMRealm writeCopyToPath:encryptionKey:error:]`. -* Add support for comparing string columns to other string columns in queries. - -### Bugfixes - -* Roll back changes made when an exception is thrown during a migration. -* Throw an exception if the number of items in a RLMResults or RLMArray changes - while it's being fast-enumerated. -* Also encrypt the temporary files used when encryption is enabled for a Realm. -* Fixed crash in JSONImport example on OS X with non-en_US locale. -* Fixed infinite loop when opening a Realm file in the Browser at the same time - as it is open in a 32-bit simulator. -* Fixed a crash when adding primary keys to older realm files with no primary - keys on any objects. -* Fixed a crash when removing a primary key in a migration. -* Fixed a crash when multiple write transactions with no changes followed by a - write transaction with changes were committed without the main thread - RLMRealm getting a chance to refresh. -* Fixed incomplete results when querying for non-null relationships. -* Improve the error message when a Realm file is opened in multiple processes - at once. - -0.89.2 Release notes (2015-01-02) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* None. - -### Bugfixes - -* Fix an assertion failure when invalidating a Realm which is in a write - transaction, has already been invalidated, or has never been used. -* Fix an assertion failure when sorting an empty RLMArray property. -* Fix a bug resulting in the browser never becoming visible on 10.9. -* Write UTF-8 when generating class files from a realm file in the Browser. - -0.89.1 Release notes (2014-12-22) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Improve the error message when a Realm can't be opened due to lacking write - permissions. - -### Bugfixes - -* Fix an assertion failure when inserting rows after calling `deleteAllObjects` - on a Realm. -* Separate dynamic frameworks are now built for the simulator and devices to - work around App Store submission errors due to the simulator version not - being automatically stripped from dynamic libraries. - -0.89.0 Release notes (2014-12-18) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Add support for encrypting Realm files on disk. -* Support using KVC-compliant objects without getters or with custom getter - names to initialize RLMObjects with `createObjectInRealm` and friends. - -### Bugfixes - -* Merge native Swift default property values with defaultPropertyValues(). -* Don't leave the database schema partially updated when opening a realm fails - due to a migration being needed. -* Fixed issue where objects with custom getter names couldn't be used to - initialize other objects. -* Fix a major performance regression on queries on string properties. -* Fix a memory leak when circularly linked objects are added to a Realm. - -0.88.0 Release notes (2014-12-02) -============================================================= - -### API breaking changes - -* Deallocating an RLMRealm instance in a write transaction lacking an explicit - commit/cancel will now be automatically cancelled instead of committed. -* `-[RLMObject isDeletedFromRealm]` has been renamed to `-[RLMObject isInvalidated]`. - -### Enhancements - -* Add `-[RLMRealm writeCopyToPath:]` to write a compacted copy of the Realm - another file. -* Add support for case insensitive, BEGINSWITH, ENDSWITH and CONTAINS string - queries on array properties. -* Make fast enumeration of `RLMArray` and `RLMResults` ~30% faster and - `objectAtIndex:` ~55% faster. -* Added a lldb visualizer script for displaying the contents of persisted - RLMObjects when debugging. -* Added method `-setDefaultRealmPath:` to change the default Realm path. -* Add `-[RLMRealm invalidate]` to release data locked by the current thread. - -### Bugfixes - -* Fix for crash when running many simultaneous write transactions on background threads. -* Fix for crashes caused by opening Realms at multiple paths simultaneously which have had - properties re-ordered during migration. -* Don't run the query twice when `firstObject` or `lastObject` are called on an - `RLMResults` which has not had its results accessed already. -* Fix for bug where schema version is 0 for new Realm created at the latest version. -* Fix for error message where no migration block is specified when required. - -0.87.4 Release notes (2014-11-07) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* None. - -### Bugfixes - -* Fix browser location in release zip. - -0.87.3 Release notes (2014-11-06) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Added method `-linkingObjectsOfClass:forProperty:` to RLMObject to expose inverse - relationships/backlinks. - -### Bugfixes - -* Fix for crash due to missing search index when migrating an object with a string primary key - in a database created using an older versions (0.86.3 and earlier). -* Throw an exception when passing an array containing a - non-RLMObject to -[RLMRealm addObjects:]. -* Fix for crash when deleting an object from multiple threads. - -0.87.0 Release notes (2014-10-21) -============================================================= - -### API breaking changes - -* RLMArray has been split into two classes, `RLMArray` and `RLMResults`. RLMArray is - used for object properties as in previous releases. Moving forward all methods used to - enumerate, query, and sort objects return an instance of a new class `RLMResults`. This - change was made to support diverging apis and the future addition of change notifications - for queries. -* The api for migrations has changed. You now call `setSchemaVersion:withMigrationBlock:` to - register a global migration block and associated version. This block is applied to Realms as - needed when opened for Realms at a previous version. The block can be applied manually if - desired by calling `migrateRealmAtPath:`. -* `arraySortedByProperty:ascending:` was renamed to `sortedResultsUsingProperty:ascending` -* `addObjectsFromArray:` on both `RLMRealm` and `RLMArray` has been renamed to `addObjects:` - and now accepts any container class which implements `NSFastEnumeration` -* Building with Swift support now requires Xcode 6.1 - -### Enhancements - -* Add support for sorting `RLMArray`s by multiple columns with `sortedResultsUsingDescriptors:` -* Added method `deleteAllObjects` on `RLMRealm` to clear a Realm. -* Added method `createObject:withObject:` on `RLMMigration` which allows object creation during migrations. -* Added method `deleteObject:` on `RLMMigration` which allows object deletion during migrations. -* Updating to core library version 0.85.0. -* Implement `objectsWhere:` and `objectsWithPredicate:` for array properties. -* Add `cancelWriteTransaction` to revert all changes made in a write transaction and end the transaction. -* Make creating `RLMRealm` instances on background threads when an instance - exists on another thread take a fifth of the time. -* Support for partial updates when calling `createOrUpdateWithObject:` and `addOrUpdateObject:` -* Re-enable Swift support on OS X - -### Bugfixes - -* Fix exceptions when trying to set `RLMObject` properties after rearranging - the properties in a `RLMObject` subclass. -* Fix crash on IN query with several thousand items. -* Fix crash when querying indexed `NSString` properties. -* Fixed an issue which prevented in-memory Realms from being used accross multiple threads. -* Preserve the sort order when querying a sorted `RLMResults`. -* Fixed an issue with migrations where if a Realm file is deleted after a Realm is initialized, - the newly created Realm can be initialized with an incorrect schema version. -* Fix crash in `RLMSuperSet` when assigning to a `RLMArray` property on a standalone object. -* Add an error message when the protocol for an `RLMArray` property is not a - valid object type. -* Add an error message when an `RLMObject` subclass is defined nested within - another Swift class. - -0.86.3 Release notes (2014-10-09) -============================================================= - -### Enhancements - -* Add support for != in queries on object relationships. - -### Bugfixes - -* Re-adding an object to its Realm no longer throws an exception and is now a no-op - (as it was previously). -* Fix another bug which would sometimes result in subclassing RLMObject - subclasses not working. - -0.86.2 Release notes (2014-10-06) -============================================================= - -### Bugfixes - -* Fixed issues with packaging "Realm Browser.app" for release. - -0.86.1 Release notes (2014-10-03) -============================================================= - -### Bugfixes - -* Fix a bug which would sometimes result in subclassing RLMObject subclasses - not working. - -0.86.0 Release notes (2014-10-03) -============================================================= - -### API breaking changes - -* Xcode 6 is now supported from the main Xcode project `Realm.xcodeproj`. - Xcode 5 is no longer supported. - -### Enhancements - -* Support subclassing RLMObject models. Although you can now persist subclasses, - polymorphic behavior is not supported (i.e. setting a property to an - instance of its subclass). -* Add support for sorting RLMArray properties. -* Speed up inserting objects with `addObject:` by ~20%. -* `readonly` properties are automatically ignored rather than having to be - added to `ignoredProperties`. -* Updating to core library version 0.83.1. -* Return "[deleted object]" rather than throwing an exception when - `-description` is called on a deleted RLMObject. -* Significantly improve performance of very large queries. -* Allow passing any enumerable to IN clauses rather than just NSArray. -* Add `objectForPrimaryKey:` and `objectInRealm:forPrimaryKey:` convenience - methods to fetch an object by primary key. - -### Bugfixes - -* Fix error about not being able to persist property 'hash' with incompatible - type when building for devices with Xcode 6. -* Fix spurious notifications of new versions of Realm. -* Fix for updating nested objects where some types do not have primary keys. -* Fix for inserting objects from JSON with NSNull values when default values - should be used. -* Trying to add a persisted RLMObject to a different Realm now throws an - exception rather than creating an uninitialized object. -* Fix validation errors when using IN on array properties. -* Fix errors when an IN clause has zero items. -* Fix for chained queries ignoring all but the last query's conditions. - -0.85.0 Release notes (2014-09-15) -============================================================= - -### API breaking changes - -* Notifications for a refresh being needed (when autorefresh is off) now send - the notification type RLMRealmRefreshRequiredNotification rather than - RLMRealmDidChangeNotification. - -### Enhancements - -* Updating to core library version 0.83.0. -* Support for primary key properties (for int and string columns). Declaring a property - to be the primary key ensures uniqueness for that property for all objects of a given type. - At the moment indexes on primary keys are not yet supported but this will be added in a future - release. -* Added methods to update or insert (upsert) for objects with primary keys defined. -* `[RLMObject initWithObject:]` and `[RLMObject createInRealmWithObject:]` now support - any object type with kvc properties. -* The Swift support has been reworked to work around Swift not being supported - in Frameworks on iOS 7. -* Improve performance when getting the count of items matching a query but not - reading any of the objects in the results. -* Add a return value to `-[RLMRealm refresh]` that indicates whether or not - there was anything to refresh. -* Add the class name to the error message when an RLMObject is missing a value - for a property without a default. -* Add support for opening Realms in read-only mode. -* Add an automatic check for updates when using Realm in a simulator (the - checker code is not compiled into device builds). This can be disabled by - setting the REALM_DISABLE_UPDATE_CHECKER environment variable to any value. -* Add support for Int16 and Int64 properties in Swift classes. - -### Bugfixes - -* Realm change notifications when beginning a write transaction are now sent - after updating rather than before, to match refresh. -* `-isEqual:` now uses the default `NSObject` implementation unless a primary key - is specified for an RLMObject. When a primary key is specified, `-isEqual:` calls - `-isEqualToObject:` and a corresponding implementation for `-hash` is also implemented. - -0.84.0 Release notes (2014-08-28) -============================================================= - -### API breaking changes - -* The timer used to trigger notifications has been removed. Notifications are now - only triggered by commits made in other threads, and can not currently be triggered - by changes made by other processes. Interprocess notifications will be re-added in - a future commit with an improved design. - -### Enhancements - -* Updating to core library version 0.82.2. -* Add property `deletedFromRealm` to RLMObject to indicate objects which have been deleted. -* Add support for the IN operator in predicates. -* Add support for the BETWEEN operator in link queries. -* Add support for multi-level link queries in predicates (e.g. `foo.bar.baz = 5`). -* Switch to building the SDK from source when using CocoaPods and add a - Realm.Headers subspec for use in targets that should not link a copy of Realm - (such as test targets). -* Allow unregistering from change notifications in the change notification - handler block. -* Significant performance improvements when holding onto large numbers of RLMObjects. -* Realm-Xcode6.xcodeproj now only builds using Xcode6-Beta6. -* Improved performance during RLMArray iteration, especially when mutating - contained objects. - -### Bugfixes - -* Fix crashes and assorted bugs when sorting or querying a RLMArray returned - from a query. -* Notifications are no longer sent when initializing new RLMRealm instances on background - threads. -* Handle object cycles in -[RLMObject description] and -[RLMArray description]. -* Lowered the deployment target for the Xcode 6 projects and Swift examples to - iOS 7.0, as they didn't actually require 8.0. -* Support setting model properties starting with the letter 'z' -* Fixed crashes that could result from switching between Debug and Relase - builds of Realm. - -0.83.0 Release notes (2014-08-13) -============================================================= - -### API breaking changes - -* Realm-Xcode6.xcodeproj now only builds using Xcode6-Beta5. -* Properties to be persisted in Swift classes must be explicitly declared as `dynamic`. -* Subclasses of RLMObject subclasses now throw an exception on startup, rather - than when added to a Realm. - -### Enhancements - -* Add support for querying for nil object properties. -* Improve error message when specifying invalid literals when creating or - initializing RLMObjects. -* Throw an exception when an RLMObject is used from the incorrect thread rather - than crashing in confusing ways. -* Speed up RLMRealm instantiation and array property iteration. -* Allow array and objection relation properties to be missing or null when - creating a RLMObject from a NSDictionary. - -### Bugfixes - -* Fixed a memory leak when querying for objects. -* Fixed initializing array properties on standalone Swift RLMObject subclasses. -* Fix for queries on 64bit integers. - -0.82.0 Release notes (2014-08-05) -============================================================= - -### API breaking changes - -* Realm-Xcode6.xcodeproj now only builds using Xcode6-Beta4. - -### Enhancements - -* Updating to core library version 0.80.5. -* Now support disabling the `autorefresh` property on RLMRealm instances. -* Building Realm-Xcode6 for iOS now builds a universal framework for Simulator & Device. -* Using NSNumber properties (unsupported) now throws a more informative exception. -* Added `[RLMRealm defaultRealmPath]` -* Proper implementation for [RLMArray indexOfObjectWhere:] -* The default Realm path on OS X is now ~/Library/Application Support/[bundle - identifier]/default.realm rather than ~/Documents -* We now check that the correct framework (ios or osx) is used at compile time. - -### Bugfixes - -* Fixed rapid growth of the realm file size. -* Fixed a bug which could cause a crash during RLMArray destruction after a query. -* Fixed bug related to querying on float properties: `floatProperty = 1.7` now works. -* Fixed potential bug related to the handling of array properties (RLMArray). -* Fixed bug where array properties accessed the wrong property. -* Fixed bug that prevented objects with custom getters to be added to a Realm. -* Fixed a bug where initializing a standalone object with an array literal would - trigger an exception. -* Clarified exception messages when using unsupported NSPredicate operators. -* Clarified exception messages when using unsupported property types on RLMObject subclasses. -* Fixed a memory leak when breaking out of a for-in loop on RLMArray. -* Fixed a memory leak when removing objects from a RLMArray property. -* Fixed a memory leak when querying for objects. - - -0.81.0 Release notes (2014-07-22) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Updating to core library version 0.80.3. -* Added support for basic querying of RLMObject and RLMArray properties (one-to-one and one-to-many relationships). - e.g. `[Person objectsWhere:@"dog.name == 'Alfonso'"]` or `[Person objectsWhere:@"ANY dogs.name == 'Alfonso'"]` - Supports all normal operators for numeric and date types. Does not support NSData properties or `BEGINSWITH`, `ENDSWITH`, `CONTAINS` - and other options for string properties. -* Added support for querying for object equality in RLMObject and RLMArray properties (one-to-one and one-to-many relationships). - e.g. `[Person objectsWhere:@"dog == %@", myDog]` `[Person objectsWhere:@"ANY dogs == %@", myDog]` `[Person objectsWhere:@"ANY friends.dog == %@", dog]` - Only supports comparing objects for equality (i.e. ==) -* Added a helper method to RLMRealm to perform a block inside a transaction. -* OSX framework now supported in CocoaPods. - -### Bugfixes - -* Fixed Unicode support in property names and string contents (Chinese, Russian, etc.). Closing #612 and #604. -* Fixed bugs related to migration when properties are removed. -* Fixed keyed subscripting for standalone RLMObjects. -* Fixed bug related to double clicking on a .realm file to launch the Realm Browser (thanks to Dean Moore). - - -0.80.0 Release notes (2014-07-15) -============================================================= - -### API breaking changes - -* Rename migration methods to -migrateDefaultRealmWithBlock: and -migrateRealmAtPath:withBlock: -* Moved Realm specific query methods from RLMRealm to class methods on RLMObject (-allObjects: to +allObjectsInRealm: ect.) - -### Enhancements - -* Added +createInDefaultRealmWithObject: method to RLMObject. -* Added support for array and object literals when calling -createWithObject: and -initWithObject: variants. -* Added method -deleteObjects: to batch delete objects from a Realm -* Support for defining RLMObject models entirely in Swift (experimental, see known issues). -* RLMArrays in Swift support Sequence-style enumeration (for obj in array). -* Implemented -indexOfObject: for RLMArray - -### Known Issues for Swift-defined models - -* Properties other than String, NSData and NSDate require a default value in the model. This can be an empty (but typed) array for array properties. -* The previous caveat also implies that not all models defined in Objective-C can be used for object properties. Only Objective-C models with only implicit (i.e. primitives) or explicit default values can be used. However, any Objective-C model object can be used in a Swift array property. -* Array property accessors don't work until its parent object has been added to a realm. -* Realm-Bridging-Header.h is temporarily exposed as a public header. This is temporary and will be private again once rdar://17633863 is fixed. -* Does not leverage Swift generics and still uses RLM-prefix everywhere. This is coming in #549. - - -0.22.0 Release notes -============================================================= - -### API breaking changes - -* Rename schemaForObject: to schemaForClassName: on RLMSchema -* Removed -objects:where: and -objects:orderedBy:where: from RLMRealm -* Removed -indexOfObjectWhere:, -objectsWhere: and -objectsOrderedBy:where: from RLMArray -* Removed +objectsWhere: and +objectsOrderedBy:where: from RLMObject - -### Enhancements - -* New Xcode 6 project for experimental swift support. -* New Realm Editor app for reading and editing Realm db files. -* Added support for migrations. -* Added support for RLMArray properties on objects. -* Added support for creating in-memory default Realm. -* Added -objectsWithClassName:predicateFormat: and -objectsWithClassName:predicate: to RLMRealm -* Added -indexOfObjectWithPredicateFormat:, -indexOfObjectWithPredicate:, -objectsWithPredicateFormat:, -objectsWithPredi -* Added +objectsWithPredicateFormat: and +objectsWithPredicate: to RLMObject -* Now allows predicates comparing two object properties of the same type. - - -0.20.0 Release notes (2014-05-28) -============================================================= - -Completely rewritten to be much more object oriented. - -### API breaking changes - -* Everything - -### Enhancements - -* None. - -### Bugfixes - -* None. - - -0.11.0 Release notes (not released) -============================================================= - -The Objective-C API has been updated and your code will break! - -### API breaking changes - -* `RLMTable` objects can only be created with an `RLMRealm` object. -* Renamed `RLMContext` to `RLMTransactionManager` -* Renamed `RLMContextDidChangeNotification` to `RLMRealmDidChangeNotification` -* Renamed `contextWithDefaultPersistence` to `managerForDefaultRealm` -* Renamed `contextPersistedAtPath:` to `managerForRealmWithPath:` -* Renamed `realmWithDefaultPersistence` to `defaultRealm` -* Renamed `realmWithDefaultPersistenceAndInitBlock` to `defaultRealmWithInitBlock` -* Renamed `find:` to `firstWhere:` -* Renamed `where:` to `allWhere:` -* Renamed `where:orderBy:` to `allWhere:orderBy:` - -### Enhancements - -* Added `countWhere:` on `RLMTable` -* Added `sumOfColumn:where:` on `RLMTable` -* Added `averageOfColumn:where:` on `RLMTable` -* Added `minOfProperty:where:` on `RLMTable` -* Added `maxOfProperty:where:` on `RLMTable` -* Added `toJSONString` on `RLMRealm`, `RLMTable` and `RLMView` -* Added support for `NOT` operator in predicates -* Added support for default values -* Added validation support in `createInRealm:withObject:` - -### Bugfixes - -* None. - - -0.10.0 Release notes (2014-04-23) -============================================================= - -TightDB is now Realm! The Objective-C API has been updated -and your code will break! - -### API breaking changes - -* All references to TightDB have been changed to Realm. -* All prefixes changed from `TDB` to `RLM`. -* `TDBTransaction` and `TDBSmartContext` have merged into `RLMRealm`. -* Write transactions now take an optional rollback parameter (rather than needing to return a boolean). -* `addColumnWithName:` and variant methods now return the index of the newly created column if successful, `NSNotFound` otherwise. - -### Enhancements - -* `createTableWithName:columns:` has been added to `RLMRealm`. -* Added keyed subscripting for RLMTable's first column if column is of type RLMPropertyTypeString. -* `setRow:atIndex:` has been added to `RLMTable`. -* `RLMRealm` constructors now have variants that take an writable initialization block -* New object interface - tables created/retrieved using `tableWithName:objectClass:` return custom objects - -### Bugfixes - -* None. - - -0.6.0 Release notes (2014-04-11) -============================================================= - -### API breaking changes - -* `contextWithPersistenceToFile:error:` renamed to `contextPersistedAtPath:error:` in `TDBContext` -* `readWithBlock:` renamed to `readUsingBlock:` in `TDBContext` -* `writeWithBlock:error:` renamed to `writeUsingBlock:error:` in `TDBContext` -* `readTable:withBlock:` renamed to `readTable:usingBlock:` in `TDBContext` -* `writeTable:withBlock:error:` renamed to `writeTable:usingBlock:error:` in `TDBContext` -* `findFirstRow` renamed to `indexOfFirstMatchingRow` on `TDBQuery`. -* `findFirstRowFromIndex:` renamed to `indexOfFirstMatchingRowFromIndex:` on `TDBQuery`. -* Return `NSNotFound` instead of -1 when appropriate. -* Renamed `castClass` to `castToTytpedTableClass` on `TDBTable`. -* `removeAllRows`, `removeRowAtIndex`, `removeLastRow`, `addRow` and `insertRow` methods - on table now return void instead of BOOL. - -### Enhancements -* A `TDBTable` can now be queried using `where:` and `where:orderBy:` taking - `NSPredicate` and `NSSortDescriptor` as arguments. -* Added `find:` method on `TDBTable` to find first row matching predicate. -* `contextWithDefaultPersistence` class method added to `TDBContext`. Will create a context persisted - to a file in app/documents folder. -* `renameColumnWithIndex:to:` has been added to `TDBTable`. -* `distinctValuesInColumnWithIndex` has been added to `TDBTable`. -* `dateIsBetween::`, `doubleIsBetween::`, `floatIsBetween::` and `intIsBetween::` - have been added to `TDBQuery`. -* Column names in Typed Tables can begin with non-capital letters too. The generated `addX` - selector can look odd. For example, a table with one column with name `age`, - appending a new row will look like `[table addage:7]`. -* Mixed typed values are better validated when rows are added, inserted, - or modified as object literals. -* `addRow`, `insertRow`, and row updates can be done using objects - derived from `NSObject`. -* `where` has been added to `TDBView`and `TDBViewProtocol`. -* Adding support for "smart" contexts (`TDBSmartContext`). - -### Bugfixes - -* Modifications of a `TDBView` and `TDBQuery` now throw an exception in a readtransaction. - - -0.5.0 Release notes (2014-04-02) -============================================================= - -The Objective-C API has been updated and your code will break! -Of notable changes a fast interface has been added. -This interface includes specific methods to get and set values into Tightdb. -To use these methods import ``. - -### API breaking changes - -* `getTableWithName:` renamed to `tableWithName:` in `TDBTransaction`. -* `addColumnWithName:andType:` renamed to `addColumnWithName:type:` in `TDBTable`. -* `columnTypeOfColumn:` renamed to `columnTypeOfColumnWithIndex` in `TDBTable`. -* `columnNameOfColumn:` renamed to `nameOfColumnWithIndex:` in `TDBTable`. -* `addColumnWithName:andType:` renamed to `addColumnWithName:type:` in `TDBDescriptor`. -* Fast getters and setters moved from `TDBRow.h` to `TDBRowFast.h`. - -### Enhancements - -* Added `minDateInColumnWithIndex` and `maxDateInColumnWithIndex` to `TDBQuery`. -* Transactions can now be started directly on named tables. -* You can create dynamic tables with initial schema. -* `TDBTable` and `TDBView` now have a shared protocol so they can easier be used interchangeably. - -### Bugfixes - -* Fixed bug in 64 bit iOS when inserting BOOL as NSNumber. - - -0.4.0 Release notes (2014-03-26) -============================================================= - -### API breaking changes - -* Typed interface Cursor has now been renamed to Row. -* TDBGroup has been renamed to TDBTransaction. -* Header files are renamed so names match class names. -* Underscore (_) removed from generated typed table classes. -* TDBBinary has been removed; use NSData instead. -* Underscope (_) removed from generated typed table classes. -* Constructor for TDBContext has been renamed to contextWithPersistenceToFile: -* Table findFirstRow and min/max/sum/avg operations has been hidden. -* Table.appendRow has been renamed to addRow. -* getOrCreateTable on Transaction has been removed. -* set*:inColumnWithIndex:atRowIndex: methods have been prefixed with TDB -* *:inColumnWithIndex:atRowIndex: methods have been prefixed with TDB -* addEmptyRow on table has been removed. Use [table addRow:nil] instead. -* TDBMixed removed. Use id and NSObject instead. -* insertEmptyRow has been removed from table. Use insertRow:nil atIndex:index instead. - -#### Enhancements - -* Added firstRow, lastRow selectors on view. -* firstRow and lastRow on table now return nil if table is empty. -* getTableWithName selector added on group. -* getting and creating table methods on group no longer take error argument. -* [TDBQuery parent] and [TDBQuery subtable:] selectors now return self. -* createTable method added on Transaction. Throws exception if table with same name already exists. -* Experimental support for pinning transactions on Context. -* TDBView now has support for object subscripting. - -### Bugfixes - -* None. - - -0.3.0 Release notes (2014-03-14) -============================================================= - -The Objective-C API has been updated and your code will break! - -### API breaking changes - -* Most selectors have been renamed in the binding! -* Prepend TDB-prefix on all classes and types. - -### Enhancements - -* Return types and parameters changed from size_t to NSUInteger. -* Adding setObject to TightdbTable (t[2] = @[@1, @"Hello"] is possible). -* Adding insertRow to TightdbTable. -* Extending appendRow to accept NSDictionary. - -### Bugfixes - -* None. - - -0.2.0 Release notes (2014-03-07) -============================================================= - -The Objective-C API has been updated and your code will break! - -### API breaking changes - -* addRow renamed to addEmptyRow - -### Enhancements - -* Adding a simple class for version numbering. -* Adding get-version and set-version targets to build.sh. -* tableview now supports sort on column with column type bool, date and int -* tableview has method for checking the column type of a specified column -* tableview has method for getting the number of columns -* Adding methods getVersion, getCoreVersion and isAtLeast. -* Adding appendRow to TightdbTable. -* Adding object subscripting. -* Adding method removeColumn on table. - -### Bugfixes - -* None. diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/RLMArray.h b/Carthage/Build/tvOS/Realm.framework/Headers/RLMArray.h deleted file mode 100644 index c1fe14a..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/RLMArray.h +++ /dev/null @@ -1,364 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMObject, RLMRealm, RLMResults RLM_GENERIC_COLLECTION, RLMNotificationToken; - -/** - - RLMArray is the container type in Realm used to define to-many relationships. - - Unlike an NSArray, RLMArrays hold a single type, specified by the `objectClassName` property. - This is referred to in these docs as the “type” of the array. - - When declaring an RLMArray property, the type must be marked as conforming to a - protocol by the same name as the objects it should contain (see the - `RLM_ARRAY_TYPE` macro). RLMArray properties can also use Objective-C generics - if available. For example: - - RLM_ARRAY_TYPE(ObjectType) - ... - @property RLMArray *arrayOfObjectTypes; - - RLMArrays can be queried with the same predicates as RLMObject and RLMResults. - - RLMArrays cannot be created directly. RLMArray properties on RLMObjects are - lazily created when accessed, or can be obtained by querying a Realm. - - ### Key-Value Observing - - RLMArray supports array key-value observing on RLMArray properties on RLMObject - subclasses, and the `invalidated` property on RLMArray instances themselves is - key-value observing compliant when the RLMArray is attached to a persisted - RLMObject (RLMArrays on standalone RLMObjects will never become invalidated). - - Because RLMArrays are attached to the object which they are a property of, they - do not require using the mutable collection proxy objects from - `-mutableArrayValueForKey:` or KVC-compatible mutation methods on the containing - object. Instead, you can call the mutation methods on the RLMArray directly. - */ - -@interface RLMArray RLM_GENERIC_COLLECTION : NSObject - -#pragma mark - Properties - -/** - Number of objects in the array. - */ -@property (nonatomic, readonly, assign) NSUInteger count; - -/** - The class name (i.e. type) of the RLMObjects contained in this RLMArray. - */ -@property (nonatomic, readonly, copy) NSString *objectClassName; - -/** - The Realm in which this array is persisted. Returns nil for standalone arrays. - */ -@property (nonatomic, readonly, nullable) RLMRealm *realm; - -/** - Indicates if an array can no longer be accessed. - */ -@property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated; - -#pragma mark - Accessing Objects from an Array - -/** - Returns the object at the index specified. - - @param index The index to look up. - - @return An RLMObject of the type contained in this RLMArray. - */ -- (RLMObjectType)objectAtIndex:(NSUInteger)index; - -/** - Returns the first object in the array. - - Returns `nil` if called on an empty RLMArray. - - @return An RLMObject of the type contained in this RLMArray. - */ -- (nullable RLMObjectType)firstObject; - -/** - Returns the last object in the array. - - Returns `nil` if called on an empty RLMArray. - - @return An RLMObject of the type contained in this RLMArray. - */ -- (nullable RLMObjectType)lastObject; - - - -#pragma mark - Adding, Removing, and Replacing Objects in an Array - -/** - Adds an object to the end of the array. - - @warning This method can only be called during a write transaction. - - @param object An RLMObject of the type contained in this RLMArray. - */ -- (void)addObject:(RLMObjectArgument)object; - -/** - Adds an array of objects at the end of the array. - - @warning This method can only be called during a write transaction. - - @param objects An enumerable object such as NSArray or RLMResults which contains objects of the - same class as this RLMArray. - */ -- (void)addObjects:(id)objects; - -/** - Inserts an object at the given index. - - Throws an exception when the index exceeds the bounds of this RLMArray. - - @warning This method can only be called during a write transaction. - - @param anObject An RLMObject of the type contained in this RLMArray. - @param index The array index at which the object is inserted. - */ -- (void)insertObject:(RLMObjectArgument)anObject atIndex:(NSUInteger)index; - -/** - Removes an object at a given index. - - Throws an exception when the index exceeds the bounds of this RLMArray. - - @warning This method can only be called during a write transaction. - - @param index The array index identifying the object to be removed. - */ -- (void)removeObjectAtIndex:(NSUInteger)index; - -/** - Removes the last object in an RLMArray. - - @warning This method can only be called during a write transaction. -*/ -- (void)removeLastObject; - -/** - Removes all objects from an RLMArray. - - @warning This method can only be called during a write transaction. - */ -- (void)removeAllObjects; - -/** - Replaces an object at the given index with a new object. - - Throws an exception when the index exceeds the bounds of this RLMArray. - - @warning This method can only be called during a write transaction. - - @param index The array index of the object to be replaced. - @param anObject An object (of the same type as returned from the objectClassName selector). - */ -- (void)replaceObjectAtIndex:(NSUInteger)index withObject:(RLMObjectArgument)anObject; - -/** - Moves the object at the given source index to the given destination index. - - Throws an exception when the index exceeds the bounds of this RLMArray. - - @warning This method can only be called during a write transaction. - - @param sourceIndex The index of the object to be moved. - @param destinationIndex The index to which the object at `sourceIndex` should be moved. - */ -- (void)moveObjectAtIndex:(NSUInteger)sourceIndex toIndex:(NSUInteger)destinationIndex; - -/** - Exchanges the objects in the array at given indexes. - - Throws an exception when either index exceeds the bounds of this RLMArray. - - @warning This method can only be called during a write transaction. - - @param index1 The index of the object with which to replace the object at index `index2`. - @param index2 The index of the object with which to replace the object at index `index1`. - */ -- (void)exchangeObjectAtIndex:(NSUInteger)index1 withObjectAtIndex:(NSUInteger)index2; - -#pragma mark - Querying an Array - -/** - Gets the index of an object. - - Returns NSNotFound if the object is not found in this RLMArray. - - @param object An object (of the same type as returned from the objectClassName selector). - */ -- (NSUInteger)indexOfObject:(RLMObjectArgument)object; - -/** - Gets the index of the first object matching the predicate. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return Index of object or NSNotFound if the object is not found in this RLMArray. - */ -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Gets the index of the first object matching the predicate. - - @param predicate The predicate to filter the objects. - - @return Index of object or NSNotFound if the object is not found in this RLMArray. - */ -- (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate; - -/** - Get objects matching the given predicate in the RLMArray. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Get objects matching the given predicate in the RLMArray. - - @param predicate The predicate to filter the objects. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults RLM_GENERIC_RETURN*)objectsWithPredicate:(NSPredicate *)predicate; - -/** - Get a sorted RLMResults from an RLMArray - - @param property The property name to sort by. - @param ascending The direction to sort by. - - @return An RLMResults sorted by the specified property. - */ -- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending; - -/** - Get a sorted RLMResults from an RLMArray - - @param properties An array of `RLMSortDescriptor`s to sort by. - - @return An RLMResults sorted by the specified properties. - */ -- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingDescriptors:(NSArray *)properties; - -/// :nodoc: -- (RLMObjectType)objectAtIndexedSubscript:(NSUInteger)index; - -/// :nodoc: -- (void)setObject:(RLMObjectType)newValue atIndexedSubscript:(NSUInteger)index; - -#pragma mark - Notifications - -/** - Register a block to be called each time the RLMArray changes. - - The block will be asynchronously called with the initial array, and then - called again after each write transaction which changes the array or any - items contained in the array. You must retain the returned token for as long as - you want the block to continue to be called. To stop receiving updates, call - `-stop` on the token. - - The error parameter will always be `nil`, and is present only for compatiblity - with the RLMResults version of this method, which can potentially fail. - - @param block The block to be called each time the array changes. - @return A token which must be held for as long as you want notifications to be delivered. - */ -- (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMArray RLM_GENERIC_RETURN *array, NSError *))block RLM_WARN_UNUSED_RESULT; - -#pragma mark - Unavailable Methods - -/** - -[RLMArray init] is not available because RLMArrays cannot be created directly. - RLMArray properties on RLMObjects are lazily created when accessed, or can be obtained by querying a Realm. - */ -- (instancetype)init __attribute__((unavailable("RLMArrays cannot be created directly"))); - -/** - +[RLMArray new] is not available because RLMArrays cannot be created directly. - RLMArray properties on RLMObjects are lazily created when accessed, or can be obtained by querying a Realm. - */ -+ (instancetype)new __attribute__((unavailable("RLMArrays cannot be created directly"))); - -@end - -/** - An RLMSortDescriptor stores a property name and a sort order for use with - `sortedResultsUsingDescriptors:`. It is similar to NSSortDescriptor, but supports - only the subset of functionality which can be efficiently run by the query - engine. RLMSortDescriptor instances are immutable. - */ -@interface RLMSortDescriptor : NSObject - -#pragma mark - Properties - -/** - The name of the property which this sort descriptor orders results by. - */ -@property (nonatomic, readonly) NSString *property; - -/** - Whether this descriptor sorts in ascending or descending order. - */ -@property (nonatomic, readonly) BOOL ascending; - -#pragma mark - Methods - -/** - Returns a new sort descriptor for the given property name and order. - */ -+ (instancetype)sortDescriptorWithProperty:(NSString *)propertyName ascending:(BOOL)ascending; - -/** - Returns a copy of the receiver with the sort order reversed. - */ -- (instancetype)reversedSortDescriptor; - -@end - -/// :nodoc: -@interface RLMArray (Swift) -// for use only in Swift class definitions -- (instancetype)initWithObjectClassName:(NSString *)objectClassName; -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/RLMCollection.h b/Carthage/Build/tvOS/Realm.framework/Headers/RLMCollection.h deleted file mode 100644 index a1a4efb..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/RLMCollection.h +++ /dev/null @@ -1,184 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMRealm, RLMResults, RLMObject, RLMSortDescriptor, RLMNotificationToken; - -/** - A homogenous collection of `RLMObject`s like `RLMArray` or `RLMResults`. - */ -@protocol RLMCollection - -@required - -#pragma mark - Properties - -/** - Number of objects in the collection. - */ -@property (nonatomic, readonly, assign) NSUInteger count; - -/** - The class name (i.e. type) of the RLMObjects contained in this RLMCollection. - */ -@property (nonatomic, readonly, copy) NSString *objectClassName; - -/** - The Realm in which this collection is persisted. Returns nil for standalone collections. - */ -@property (nonatomic, readonly) RLMRealm *realm; - -#pragma mark - Accessing Objects from a Collection - -/** - Returns the object at the index specified. - - @param index The index to look up. - - @return An RLMObject of the type contained in this RLMCollection. - */ -- (id)objectAtIndex:(NSUInteger)index; - -/** - Returns the first object in the collection. - - Returns `nil` if called on an empty RLMCollection. - - @return An RLMObject of the type contained in this RLMCollection. - */ -- (nullable id)firstObject; - -/** - Returns the last object in the collection. - - Returns `nil` if called on an empty RLMCollection. - - @return An RLMObject of the type contained in this RLMCollection. - */ -- (nullable id)lastObject; - -#pragma mark - Querying a Collection - -/** - Gets the index of an object. - - Returns NSNotFound if the object is not found in this RLMCollection. - - @param object An object (of the same type as returned from the objectClassName selector). - */ -- (NSUInteger)indexOfObject:(RLMObject *)object; - -/** - Gets the index of the first object matching the predicate. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return Index of object or NSNotFound if the object is not found in this RLMCollection. - */ -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Gets the index of the first object matching the predicate. - - @param predicate The predicate to filter the objects. - - @return Index of object or NSNotFound if the object is not found in this RLMCollection. - */ -- (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate; - -/** - Get objects matching the given predicate in the RLMCollection. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults *)objectsWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (RLMResults *)objectsWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Get objects matching the given predicate in the RLMCollection. - - @param predicate The predicate to filter the objects. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults *)objectsWithPredicate:(NSPredicate *)predicate; - -/** - Get a sorted RLMResults from an RLMCollection. - - @param property The property name to sort by. - @param ascending The direction to sort by. - - @return An RLMResults sorted by the specified property. - */ -- (RLMResults *)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending; - -/** - Get a sorted RLMResults from an RLMCollection. - - @param properties An array of `RLMSortDescriptor`s to sort by. - - @return An RLMResults sorted by the specified properties. - */ -- (RLMResults *)sortedResultsUsingDescriptors:(NSArray RLM_GENERIC(RLMSortDescriptor *) *)properties; - -/// :nodoc: -- (id)objectAtIndexedSubscript:(NSUInteger)index; - -/** - Returns an NSArray containing the results of invoking `valueForKey:` using key on each of the collection's objects. - - @param key The name of the property. - - @return NSArray containing the results of invoking `valueForKey:` using key on each of the collection's objects. - */ -- (nullable id)valueForKey:(NSString *)key; - -/** - 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. - - @param value The object value. - @param key The name of the property. - */ -- (void)setValue:(nullable id)value forKey:(NSString *)key; - -#pragma mark - Notifications - -/** - Register a block to be called each time the collection changes. - - @param block The block to be called each time the collection changes. - @return A token which must be held for as long as you want notifications to be delivered. - */ -- (RLMNotificationToken *)addNotificationBlock:(void (^)(id collection))block RLM_WARN_UNUSED_RESULT; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/RLMConstants.h b/Carthage/Build/tvOS/Realm.framework/Headers/RLMConstants.h deleted file mode 100644 index 3befba1..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/RLMConstants.h +++ /dev/null @@ -1,131 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#pragma mark - Enums - -/** - Property types supported in Realm models. - - See [Realm Models](https://realm.io/docs/objc/latest/#models) - */ -// Make sure numbers match those in -typedef NS_ENUM(int32_t, RLMPropertyType) { - -#pragma mark - Primitive types - - /** Integer type: NSInteger, int, long, Int (Swift) */ - RLMPropertyTypeInt = 0, - /** Boolean type: BOOL, bool, Bool (Swift) */ - RLMPropertyTypeBool = 1, - /** Float type: float, Float (Swift) */ - RLMPropertyTypeFloat = 9, - /** Double type: double, Double (Swift) */ - RLMPropertyTypeDouble = 10, - -#pragma mark - Object types - - /** String type: NSString, String (Swift) */ - RLMPropertyTypeString = 2, - /** Data type: NSData */ - RLMPropertyTypeData = 4, - /** Any type: id, **not supported in Swift** */ - RLMPropertyTypeAny = 6, - /** Date type: NSDate */ - RLMPropertyTypeDate = 7, - -#pragma mark - Array/Linked object types - - /** Object type. See [Realm Models](https://realm.io/docs/objc/latest/#models) */ - RLMPropertyTypeObject = 12, - /** Array type. See [Realm Models](http://realms.io/docs/objc/latest/#models) */ - RLMPropertyTypeArray = 13, -}; - -/** - Enum representing all recoverable errors in Realm. - */ -typedef NS_ENUM(NSInteger, RLMError) { - /** Returned by RLMRealm if no other specific error is returned when a realm is opened. */ - RLMErrorFail = 1, - /** Returned by RLMRealm for any I/O related exception scenarios when a realm is opened. */ - RLMErrorFileAccess = 2, - /** Returned by RLMRealm if the user does not have permission to open or create - the specified file in the specified access mode when the realm is opened. */ - RLMErrorFilePermissionDenied = 3, - /** Returned by RLMRealm if the file already exists when a copy should be written. */ - RLMErrorFileExists = 4, - /** Returned by RLMRealm if no file was found when a realm was opened as - read-only or if the directory part of the specified path was not - found when a copy should be written. */ - RLMErrorFileNotFound = 5, - /** Returned by RLMRealm if a file format upgrade is required to open the file, but upgrades were explicilty disabled. */ - RLMErrorFileFormatUpgradeRequired = 6, - /** Returned by RLMRealm if the database file is currently open in another - process which cannot share with the current process due to an - architecture mismatch. */ - RLMErrorIncompatibleLockFile = 8, -}; - -#pragma mark - Constants - -#pragma mark - Notification Constants - -/** - Posted by RLMRealm when the data in the realm has changed. - - DidChange are posted after a realm has been refreshed to reflect a write - transaction, i.e. when an autorefresh occurs, `[RLMRealm refresh]` is - called, after an implicit refresh from `[RLMRealm beginWriteTransaction]`, - and after a local write transaction is committed. - */ -extern NSString * const RLMRealmRefreshRequiredNotification; - -/** - Posted by RLMRealm when a write transaction has been committed to an RLMRealm on - a different thread for the same file. This is not posted if - `[RLMRealm autorefresh]` is enabled or if the RLMRealm is - refreshed before the notifcation has a chance to run. - - Realms with autorefresh disabled should normally have a handler for this - notification which calls `[RLMRealm refresh]` after doing some work. - While not refreshing is allowed, it may lead to large Realm files as Realm has - to keep an extra copy of the data for the un-refreshed RLMRealm. - */ -extern NSString * const RLMRealmDidChangeNotification; - -#pragma mark - Other Constants - -/** Schema version used for uninitialized Realms */ -extern const uint64_t RLMNotVersioned; - -/** Error domain used in Realm. */ -extern NSString * const RLMErrorDomain; - -/** Key for name of Realm exceptions. */ -extern NSString * const RLMExceptionName; - -/** Key for Realm file version. */ -extern NSString * const RLMRealmVersionKey; - -/** Key for Realm core version. */ -extern NSString * const RLMRealmCoreVersionKey; - -/** Key for Realm invalidated property name. */ -extern NSString * const RLMInvalidatedKey; diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/RLMDefines.h b/Carthage/Build/tvOS/Realm.framework/Headers/RLMDefines.h deleted file mode 100644 index 73afc03..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/RLMDefines.h +++ /dev/null @@ -1,95 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2015 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMObject; - -#ifndef __has_feature -#define __has_feature(x) 0 -#endif - -#pragma mark - Generics - -#if __has_extension(objc_generics) -#define RLM_GENERIC(...) <__VA_ARGS__> -#define RLM_GENERIC_COLLECTION -#define RLM_GENERIC_RETURN -#define RLMObjectArgument RLMObjectType -#else -#define RLM_GENERIC(...) -#define RLM_GENERIC_COLLECTION -#define RLM_GENERIC_RETURN -typedef id RLMObjectType; -typedef RLMObject * RLMObjectArgument; -#endif - -#pragma mark - Nullability - -#if !__has_feature(nullability) -#ifndef __nullable -#define __nullable -#endif -#ifndef __nonnull -#define __nonnull -#endif -#ifndef __null_unspecified -#define __null_unspecified -#endif -#ifndef nullable -#define nullable -#endif -#ifndef nonnull -#define nonnull -#endif -#ifndef null_unspecified -#define null_unspecified -#endif -#endif - -#if defined(NS_ASSUME_NONNULL_BEGIN) && defined(NS_ASSUME_NONNULL_END) -#define RLM_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_BEGIN -#define RLM_ASSUME_NONNULL_END NS_ASSUME_NONNULL_END -#else -#define RLM_ASSUME_NONNULL_BEGIN -#define RLM_ASSUME_NONNULL_END -#endif - -#pragma mark - Escaping - -#if __has_attribute(noescape) -# define RLM_NOESCAPE __attribute__((noescape)) -#else -# define RLM_NOESCAPE -#endif - -#pragma mark - Unused Result - -#if __has_attribute(warn_unused_result) -# define RLM_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define RLM_WARN_UNUSED_RESULT -#endif - -#pragma mark - Swift Availability - -#if defined(NS_SWIFT_UNAVAILABLE) -# define RLM_SWIFT_UNAVAILABLE(msg) NS_SWIFT_UNAVAILABLE(msg) -#else -# define RLM_SWIFT_UNAVAILABLE(msg) -#endif diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/RLMMigration.h b/Carthage/Build/tvOS/Realm.framework/Headers/RLMMigration.h deleted file mode 100644 index 3eb9b67..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/RLMMigration.h +++ /dev/null @@ -1,107 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMSchema; -@class RLMArray; -@class RLMObject; - -/** -Provides both the old and new versions of an object in this Realm. Object properties can only be -accessed using keyed subscripting. - -@param oldObject Object in original RLMRealm (read-only). -@param newObject Object in migrated RLMRealm (read-write). -*/ -typedef void (^RLMObjectMigrationBlock)(RLMObject * __nullable oldObject, RLMObject * __nullable newObject); - -/** - RLMMigration is the object passed into a user defined RLMMigrationBlock when updating the version - of an RLMRealm instance. - - This object provides access to the RLMSchema current to this migration. - */ -@interface RLMMigration : NSObject - -#pragma mark - Properties - -/** - Get the old RLMSchema for the migration. This is the schema which describes the RLMRealm before the - migration is applied. - */ -@property (nonatomic, readonly) RLMSchema *oldSchema; - -/** - Get the new RLMSchema for the migration. This is the schema which describes the RLMRealm after applying - a migration. - */ -@property (nonatomic, readonly) RLMSchema *newSchema; - - -#pragma mark - Altering Objects during a Migration - -/** - Enumerates objects of a given type in this Realm, providing both the old and new versions of each object. - Objects properties can be accessed using keyed subscripting. - - @param className The name of the RLMObject class to enumerate. - - @warning All objects returned are of a type specific to the current migration and should not be casted - to className. Instead you should access them as RLMObjects and use keyed subscripting to access - properties. - */ -- (void)enumerateObjects:(NSString *)className block:(RLMObjectMigrationBlock)block; - -/** - Create an RLMObject of type `className` in the Realm being migrated. - - @param className The name of the RLMObject class to create. - @param value The value used to populate the created object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. - */ --(RLMObject *)createObject:(NSString *)className withValue:(id)value; - -/** - Delete an object from a Realm during a migration. This can be called within `enumerateObjects:block:`. - - @param object Object to be deleted from the Realm being migrated. - */ -- (void)deleteObject:(RLMObject *)object; - -/** - Deletes the data for the class with the given name. - This deletes all objects of the given class, and if the RLMObject subclass no longer exists in your program, - cleans up any remaining metadata for the class in the Realm file. - - @param name The name of the RLMObject class to delete. - - @return whether there was any data to delete. - */ -- (BOOL)deleteDataForClassName:(NSString *)name; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/RLMObject.h b/Carthage/Build/tvOS/Realm.framework/Headers/RLMObject.h deleted file mode 100644 index 0047be1..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/RLMObject.h +++ /dev/null @@ -1,425 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMRealm; -@class RLMResults; -@class RLMObjectSchema; - -/** - - In Realm you define your model classes by subclassing `RLMObject` and adding properties to be persisted. - You then instantiate and use your custom subclasses instead of using the `RLMObject` class directly. - - // Dog.h - @interface Dog : RLMObject - @property NSString *name; - @property BOOL adopted; - @end - - // Dog.m - @implementation Dog - @end //none needed - - ### Supported property types - - - `NSString` - - `NSInteger`, `int`, `long`, `float`, and `double` - - `BOOL` or `bool` - - `NSDate` - - `NSData` - - `NSNumber`, where X is one of RLMInt, RLMFloat, RLMDouble or RLMBool, for optional number properties - - `RLMObject` subclasses, so you can have many-to-one relationships. - - `RLMArray`, where X is an `RLMObject` subclass, so you can have many-to-many relationships. - - ### Querying - - You can query an object directly via the class methods: `allObjects`, `objectsWhere:`, and `objectsWithPredicate:`. - These methods allow you to easily query a custom subclass for instances of this class in the - default Realm. To search in a Realm other than the default Realm use the interface on an RLMRealm instance. - - ### Relationships - - See our [Cocoa guide](https://realm.io/docs/objc/latest#relationships) for more details. - - ### Key-Value Observing - - All `RLMObject` properties (including properties you create in subclasses) are - [Key-Value Observing compliant](https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/KeyValueObserving/KeyValueObserving.html), - except for `realm` and `objectSchema`. There are several Realm-specific things - to keep in mind when observing Realm objects: - - 1. Unlike `NSMutableArray` properties, `RLMArray` properties do not require - using the proxy object returned from `-mutableArrayValueForKey:`, or defining - KVC mutation methods on the containing class. You can simply call methods on - the RLMArray directly and the changes will be observed by the containing - object. - 2. Standalone `RLMObjects` cannot be added to a Realm while they have any - observed properties. - 3. Modifying persisted `RLMObjects` in `-observeValueForKeyPath:ofObject:change:context:` - is problematic. Properties may change when the Realm is not in a write - transaction (for example, when `-[RLMRealm refresh]` is called after changes - are made on a different thread), and notifications sent prior to the change - being applied (when `NSKeyValueObservingOptionPrior` is used) may be sent at - times when you *cannot* begin a write transaction. - */ - -@interface RLMObject : RLMObjectBase - -#pragma mark - Creating & Initializing Objects - -/** - Initialize a standalone RLMObject - - Initialize an unpersisted instance of this object. - Call addObject: on an RLMRealm to add standalone object to a realm. - - @see [RLMRealm addObject:]: - */ -- (instancetype)init NS_DESIGNATED_INITIALIZER; - - -/** - Initialize a standalone RLMObject with values from an NSArray or NSDictionary - - Initialize an unpersisted instance of this object. - Call addObject: on an RLMRealm to add standalone object to a realm. - - @see [RLMRealm addObject:]: - */ -- (instancetype)initWithValue:(id)value NS_DESIGNATED_INITIALIZER; - - -/** - Helper to return the class name for an RLMObject subclass. - - @warning Do not override. Realm relies on this method returning the exact class - name. - - @return The class name for the model class. - */ -+ (NSString *)className; - -/** - Create an RLMObject in the default Realm with a given value. - - Creates an instance of this object and adds it to the default Realm populating - the object with the given value. - - If nested objects are included in the argument, `createInDefaultRealmWithValue:` will be called - on them. - - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. - - @see defaultPropertyValues - */ -+ (instancetype)createInDefaultRealmWithValue:(id)value; - -/** - Create an RLMObject in a Realm with a given object. - - Creates an instance of this object and adds it to the given Realm populating - the object with the given object. - - If nested objects are included in the argument, `createInRealm:withValue:` will be called - on them. - - @param realm The Realm in which this object is persisted. - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. - - @see defaultPropertyValues - */ -+ (instancetype)createInRealm:(RLMRealm *)realm withValue:(id)value; - -/** - Create or update an RLMObject in the default Realm with a given object. - - This method can only be called on object types with a primary key defined. If there is already - an object with the same primary key value in the default RLMRealm its values are updated and the object - is returned. Otherwise this creates and populates a new instance of this object in the default Realm. - - If nested objects are included in the argument, `createOrUpdateInDefaultRealmWithValue:` will be - called on them if have a primary key (`createInDefaultRealmWithValue:` otherwise). - - This is a no-op if the argument is an RLMObject of the same type already backed by the target realm. - - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. - - @see defaultPropertyValues, primaryKey - */ -+ (instancetype)createOrUpdateInDefaultRealmWithValue:(id)value; - -/** - Create or update an RLMObject with a given object. - - This method can only be called on object types with a primary key defined. If there is already - an object with the same primary key value in the provided RLMRealm its values are updated and the object - is returned. Otherwise this creates and populates a new instance of this object in the provided Realm. - - If nested objects are included in the argument, `createOrUpdateInRealm:withValue:` will be - called on them if have a primary key (`createInRealm:withValue:` otherwise). - - This is a no-op if the argument is an RLMObject of the same type already backed by the target realm. - - @param realm The Realm in which this object is persisted. - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. - - @see defaultPropertyValues, primaryKey - */ -+ (instancetype)createOrUpdateInRealm:(RLMRealm *)realm withValue:(id)value; - -#pragma mark - Properties - -/** - The Realm in which this object is persisted. Returns nil for standalone objects. - */ -@property (nonatomic, readonly, nullable) RLMRealm *realm; - -/** - The ObjectSchema which lists the persisted properties for this object. - */ -@property (nonatomic, readonly) RLMObjectSchema *objectSchema; - -/** - Indicates if an object can no longer be accessed. - - An object can no longer be accessed if the object has been deleted from the containing `realm` or - if `invalidate` is called on the containing `realm`. - */ -@property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated; - - -#pragma mark - Customizing your Objects - -/** - Return an array of property names for properties which should be indexed. Only supported - for string and int properties. - @return NSArray of property names. - */ -+ (NSArray RLM_GENERIC(NSString *) *)indexedProperties; - -/** - Implement to indicate the default values to be used for each property. - - @return NSDictionary mapping property names to their default values. - */ -+ (nullable NSDictionary *)defaultPropertyValues; - -/** - Implement to designate a property as the primary key for an RLMObject subclass. Only properties of - type RLMPropertyTypeString and RLMPropertyTypeInt can be designated as the primary key. Primary key - properties enforce uniqueness for each value whenever the property is set which incurs some overhead. - Indexes are created automatically for primary key properties. - - @return Name of the property designated as the primary key. - */ -+ (nullable NSString *)primaryKey; - -/** - Implement to return an array of property names to ignore. These properties will not be persisted - and are treated as transient. - - @return NSArray of property names to ignore. - */ -+ (nullable NSArray RLM_GENERIC(NSString *) *)ignoredProperties; - -/** - Implement to return an array of property names that should not allow storing nil. - - By default, all properties of a type that support storing nil are considered optional properties. - To require that an object in a Realm always have a non-nil value for a property, - add the name of the property to the array returned from this method. - - Currently Object properties cannot be required. Array and NSNumber properties - can, but it makes little sense to do so: arrays do not support storing nil, and - if you want a non-optional number you should instead use the primitive type. - - @return NSArray of property names that are required. - */ -+ (NSArray RLM_GENERIC(NSString *) *)requiredProperties; - - -#pragma mark - Getting & Querying Objects from the Default Realm - -/** - Get all objects of this type from the default Realm. - - @return An RLMResults of all objects of this type in the default Realm. - */ -+ (RLMResults *)allObjects; - -/** - Get objects matching the given predicate for this type from the default Realm. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return An RLMResults of objects of the subclass type in the default Realm that match the given predicate - */ -+ (RLMResults *)objectsWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -+ (RLMResults *)objectsWhere:(NSString *)predicateFormat args:(va_list)args; - - -/** - Get objects matching the given predicate for this type from the default Realm. - - @param predicate The predicate to filter the objects. - - @return An RLMResults of objects of the subclass type in the default Realm that match the given predicate - */ -+ (RLMResults *)objectsWithPredicate:(nullable NSPredicate *)predicate; - -/** - Get the single object with the given primary key from the default Realm. - - Returns the object from the default Realm which has the given primary key, or - `nil` if the object does not exist. This is slightly faster than the otherwise - equivalent `[[SubclassName objectsWhere:@"primaryKeyPropertyName = %@", key] firstObject]`. - - This method requires that `primaryKey` be overridden on the receiving subclass. - - @return An object of the subclass type or nil if an object with the given primary key does not exist. - @see -primaryKey - */ -+ (nullable instancetype)objectForPrimaryKey:(nullable id)primaryKey; - - -#pragma mark - Querying Specific Realms - -/** - Get all objects of this type from the specified Realm. - - @param realm The Realm instance to query. - - @return An RLMResults of all objects of this type in the specified Realm. - */ -+ (RLMResults *)allObjectsInRealm:(RLMRealm *)realm; - -/** - Get objects matching the given predicate for this type from the specified Realm. - - @param predicateFormat The predicate format string which can accept variable arguments. - @param realm The Realm instance to query. - - @return An RLMResults of objects of the subclass type in the specified Realm that match the given predicate - */ -+ (RLMResults *)objectsInRealm:(RLMRealm *)realm where:(NSString *)predicateFormat, ...; - -/// :nodoc: -+ (RLMResults *)objectsInRealm:(RLMRealm *)realm where:(NSString *)predicateFormat args:(va_list)args; - -/** - Get objects matching the given predicate for this type from the specified Realm. - - @param predicate The predicate to filter the objects. - @param realm The Realm instance to query. - - @return An RLMResults of objects of the subclass type in the specified Realm that match the given predicate - */ -+ (RLMResults *)objectsInRealm:(RLMRealm *)realm withPredicate:(nullable NSPredicate *)predicate; - -/** - Get the single object with the given primary key from the specified Realm. - - Returns the object from the specified Realm which has the given primary key, or - `nil` if the object does not exist. This is slightly faster than the otherwise - equivalent `[[SubclassName objectsInRealm:realm where:@"primaryKeyPropertyName = %@", key] firstObject]`. - - This method requires that `primaryKey` be overridden on the receiving subclass. - - @return An object of the subclass type or nil if an object with the given primary key does not exist. - @see -primaryKey - */ -+ (nullable instancetype)objectInRealm:(RLMRealm *)realm forPrimaryKey:(nullable id)primaryKey; - -#pragma mark - Other Instance Methods - -/** - Get an `NSArray` of objects of type `className` which have this object as the given property value. This can - be used to get the inverse relationship value for `RLMObject` and `RLMArray` properties. - - @param className The type of object on which the relationship to query is defined. - @param property The name of the property which defines the relationship. - - @return An NSArray of objects of type `className` which have this object as their value for the `property` property. - */ -- (NSArray *)linkingObjectsOfClass:(NSString *)className forProperty:(NSString *)property; - -/** - Returns YES if another RLMObject points to the same object in an RLMRealm. For RLMObject types - with a primary, key, `isEqual:` is overridden to use this method (along with a corresponding - implementation for `hash`. - - @param object The object to compare to. - - @return YES if the object represents the same object in the same RLMRealm. - */ -- (BOOL)isEqualToObject:(RLMObject *)object; - -#pragma mark - Dynamic Accessors - -/// :nodoc: -- (nullable id)objectForKeyedSubscript:(NSString *)key; - -/// :nodoc: -- (void)setObject:(nullable id)obj forKeyedSubscript:(NSString *)key; - -@end - -#pragma mark - RLMArray Property Declaration - -/** - Properties on RLMObjects of type RLMArray must have an associated type. A type is associated - with an RLMArray property by defining a protocol for the object type which the RLMArray will - hold. To define the protocol for an object you can use the macro RLM_ARRAY_TYPE: - - RLM_ARRAY_TYPE(ObjectType) - ... - @property RLMArray *arrayOfObjectTypes; - */ -#define RLM_ARRAY_TYPE(RLM_OBJECT_SUBCLASS)\ -@protocol RLM_OBJECT_SUBCLASS \ -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/RLMObjectBase.h b/Carthage/Build/tvOS/Realm.framework/Headers/RLMObjectBase.h deleted file mode 100644 index 739e0f0..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/RLMObjectBase.h +++ /dev/null @@ -1,42 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMRealm; -@class RLMSchema; -@class RLMObjectSchema; - -/// :nodoc: -@interface RLMObjectBase : NSObject - -@property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated; - -- (instancetype)init; - -+ (NSString *)className; - -// Returns whether the class is included in the default set of classes persisted in a Realm. -+ (BOOL)shouldIncludeInDefaultSchema; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/RLMObjectBase_Dynamic.h b/Carthage/Build/tvOS/Realm.framework/Headers/RLMObjectBase_Dynamic.h deleted file mode 100644 index 247bdf1..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/RLMObjectBase_Dynamic.h +++ /dev/null @@ -1,84 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMObjectSchema, RLMRealm; - -/** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to retrieve `realm` via `RLMObject`. - - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - - @return The Realm in which this object is persisted. Returns nil for standalone objects. - */ -FOUNDATION_EXTERN RLMRealm *RLMObjectBaseRealm(RLMObjectBase *object); - -/** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to retrieve `objectSchema` via `RLMObject`. - - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - - @return The ObjectSchema which lists the persisted properties for this object. - */ -FOUNDATION_EXTERN RLMObjectSchema *RLMObjectBaseObjectSchema(RLMObjectBase *object); - -/** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to retrieve the linking objects via `RLMObject`. - - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - @param className The type of object on which the relationship to query is defined. - @param property The name of the property which defines the relationship. - - @return An NSArray of objects of type `className` which have this object as their value for the `property` property. - */ -FOUNDATION_EXTERN NSArray *RLMObjectBaseLinkingObjectsOfClass(RLMObjectBase *object, NSString *className, NSString *property); - -/** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to retrieve key values via `RLMObject`. - - @warning Will throw `NSUndefinedKeyException` if key is not present on the object - - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - @param key The name of the property - - @return the object for the property requested - */ -FOUNDATION_EXTERN id RLMObjectBaseObjectForKeyedSubscript(RLMObjectBase *object, NSString *key); - -/** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to set key values via `RLMObject`. - - @warning Will throw `NSUndefinedKeyException` if key is not present on the object - - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - @param key The name of the property - @param obj The object to set as the value of the key - */ -FOUNDATION_EXTERN void RLMObjectBaseSetObjectForKeyedSubscript(RLMObjectBase *object, NSString *key, id obj); - diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/RLMObjectSchema.h b/Carthage/Build/tvOS/Realm.framework/Headers/RLMObjectSchema.h deleted file mode 100644 index 3aa15d7..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/RLMObjectSchema.h +++ /dev/null @@ -1,73 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMProperty; - -/** - This class represents Realm model object schemas. - - When using Realm, RLMObjectSchema objects allow performing migrations and - introspecting the database's schema. - - Object schemas map to tables in the core database. - */ -@interface RLMObjectSchema : NSObject - -#pragma mark - Properties - -/** - Array of persisted RLMProperty objects for an object. - - @see RLMProperty - */ -@property (nonatomic, readonly, copy) NSArray RLM_GENERIC(RLMProperty *) *properties; - -/** - The name of the class this schema describes. - */ -@property (nonatomic, readonly) NSString *className; - -/** - The property which is the primary key for this object (if any). - */ -@property (nonatomic, readonly, nullable) RLMProperty *primaryKeyProperty; - -#pragma mark - Methods - -/** - Retrieve an RLMProperty object by name. - - @param propertyName The property's name. - - @return RLMProperty object or nil if there is no property with the given name. - */ -- (nullable RLMProperty *)objectForKeyedSubscript:(id )propertyName; - -/** - Returns YES if equal to objectSchema -*/ -- (BOOL)isEqualToObjectSchema:(RLMObjectSchema *)objectSchema; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/RLMPlatform.h b/Carthage/Build/tvOS/Realm.framework/Headers/RLMPlatform.h deleted file mode 100644 index 6f3a2dd..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/RLMPlatform.h +++ /dev/null @@ -1,22 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#if !TARGET_OS_IPHONE -#error Attempting to use Realm's iOS framework in an OSX project. -#endif - diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/RLMProperty.h b/Carthage/Build/tvOS/Realm.framework/Headers/RLMProperty.h deleted file mode 100644 index 2f61020..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/RLMProperty.h +++ /dev/null @@ -1,95 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -/// :nodoc: -@protocol RLMInt -@end - -/// :nodoc: -@protocol RLMBool -@end - -/// :nodoc: -@protocol RLMDouble -@end - -/// :nodoc: -@protocol RLMFloat -@end - -/// :nodoc: -@interface NSNumber () -@end - -/** - This class models properties persisted to Realm in an RLMObjectSchema. - - When using Realm, RLMProperty objects allow performing migrations and - introspecting the database's schema. - - These properties map to columns in the core database. - */ -@interface RLMProperty : NSObject - -#pragma mark - Properties - -/** - Property name. - */ -@property (nonatomic, readonly) NSString *name; - -/** - Property type. - - @see RLMPropertyType - */ -@property (nonatomic, readonly) RLMPropertyType type; - -/** - Indicates if this property is indexed. - - @see RLMObject - */ -@property (nonatomic, readonly) BOOL indexed; - -/** - Object class name - specify object types for RLMObject and RLMArray properties. - */ -@property (nonatomic, readonly, copy, nullable) NSString *objectClassName; - -/** - Whether this property is optional. - */ -@property (nonatomic, readonly) BOOL optional; - -#pragma mark - Methods - -/** - Returns YES if property objects are equal. - */ -- (BOOL)isEqualToProperty:(RLMProperty *)property; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/RLMRealm.h b/Carthage/Build/tvOS/Realm.framework/Headers/RLMRealm.h deleted file mode 100644 index 0672725..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/RLMRealm.h +++ /dev/null @@ -1,519 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -@class RLMRealmConfiguration, RLMObject, RLMSchema, RLMMigration, RLMNotificationToken; - -RLM_ASSUME_NONNULL_BEGIN - -/** - An RLMRealm instance (also referred to as "a realm") represents a Realm - database. - - Realms can either be stored on disk (see +[RLMRealm realmWithPath:]) or in - memory (see RLMRealmConfiguration). - - RLMRealm instances are cached internally, and constructing equivalent RLMRealm - objects (with the same path or identifier) multiple times on a single thread - within a single iteration of the run loop will normally return the same - RLMRealm object. If you specifically want to ensure a RLMRealm object is - destroyed (for example, if you wish to open a realm, check some property, and - then possibly delete the realm file and re-open it), place the code which uses - the realm within an `@autoreleasepool {}` and ensure you have no other - strong references to it. - - @warning RLMRealm instances are not thread safe and can not be shared across - threads or dispatch queues. You must call this method on each thread you want - to interact with the realm on. For dispatch queues, this means that you must - call it in each block which is dispatched, as a queue is not guaranteed to run - on a consistent thread. - */ - -@interface RLMRealm : NSObject - -#pragma mark - Creating & Initializing a Realm - -/** - Obtains an instance of the default Realm. - - The default Realm is used by the `RLMObject` class methods - which do not take a `RLMRealm` parameter, but is otherwise not special. The - default Realm is persisted as default.realm under the Documents directory of - your Application on iOS, and in your application's Application Support - directory on OS X. - - The default Realm is created using the default `RLMRealmConfiguration`, which - can be changed via `+[RLMRealmConfiguration setDefaultConfiguration:]`. - - @return The default `RLMRealm` instance for the current thread. - */ -+ (instancetype)defaultRealm; - -/** - Obtains an `RLMRealm` instance with the given configuration. - - @param configuration The configuration for the realm. - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. - - @return An `RLMRealm` instance. - */ -+ (nullable instancetype)realmWithConfiguration:(RLMRealmConfiguration *)configuration error:(NSError **)error; - -/** - Obtains an `RLMRealm` instance persisted at a specific file path. - - @param path Path to the file you want the data saved in. - - @return An `RLMRealm` instance. - */ -+ (instancetype)realmWithPath:(NSString *)path; - -/** - Path to the file where this Realm is persisted. - */ -@property (nonatomic, readonly) NSString *path; - -/** - Indicates if this Realm was opened in read-only mode. - */ -@property (nonatomic, readonly, getter = isReadOnly) BOOL readOnly; - -/** - The RLMSchema used by this RLMRealm. - */ -@property (nonatomic, readonly, null_unspecified) RLMSchema *schema; - -/** - Indicates if this Realm is currently in a write transaction. - - @warning Wrapping mutating operations in a write transaction if this property returns `NO` - may cause a large number of write transactions to be created, which could negatively - impact Realm's performance. Always prefer performing multiple mutations in a single - transaction when possible. - */ -@property (nonatomic, readonly) BOOL inWriteTransaction; - -/** - Returns the `RLMRealmConfiguration` that was used to create this `RLMRealm` instance. - */ -@property (nonatomic, readonly) RLMRealmConfiguration *configuration; - -/** - Indicates if this Realm contains any objects. - */ -@property (nonatomic, readonly) BOOL isEmpty; - -#pragma mark - Notifications - -/// Block to run when the data in a Realm was modified. -typedef void (^RLMNotificationBlock)(NSString *notification, RLMRealm *realm); - -#pragma mark - Receiving Notification when a Realm Changes - -/** - Add a notification handler for changes in this RLMRealm. - - Notification handlers are called after each write transaction is committed, - either on the current thread or other threads. The block is called on the same - thread as they were added on, and can only be added on threads which are - currently within a run loop. Unless you are specifically creating and running a - run loop on a background thread, this normally will only be the main thread. - - The block has the following definition: - - typedef void(^RLMNotificationBlock)(NSString *notification, RLMRealm *realm); - - It receives the following parameters: - - - `NSString` \***notification**: The name of the incoming notification. See - RLMRealmNotification for information on what - notifications are sent. - - `RLMRealm` \***realm**: The realm for which this notification occurred - - @param block A block which is called to process RLMRealm notifications. - - @return A token object which must be stored as long as you wish to continue - receiving change notifications. - */ -- (RLMNotificationToken *)addNotificationBlock:(RLMNotificationBlock)block RLM_WARN_UNUSED_RESULT; - -/** - Remove a previously registered notification handler using the token returned - from `-addNotificationBlock:` - - @param notificationToken The token returned from `-addNotificationBlock:` - corresponding to the notification block to remove. - */ -- (void)removeNotification:(RLMNotificationToken *)notificationToken; - -#pragma mark - Transactions - - -#pragma mark - Writing to a Realm - -/** - Begins a write transaction in an `RLMRealm`. - - Only one write transaction can be open at a time. Write transactions cannot be - nested, and trying to begin a write transaction on a `RLMRealm` which is - already in a write transaction will throw an exception. Calls to - `beginWriteTransaction` from `RLMRealm` instances in other threads will block - until the current write transaction completes. - - Before beginning the write transaction, `beginWriteTransaction` updates the - `RLMRealm` to the latest Realm version, as if refresh was called, and - generates notifications if applicable. This has no effect if the `RLMRealm` - was already up to date. - - It is rarely a good idea to have write transactions span multiple cycles of - the run loop, but if you do wish to do so you will need to ensure that the - `RLMRealm` in the write transaction is kept alive until the write transaction - is committed. - */ -- (void)beginWriteTransaction; - -/** - Commits all write operations in the current write transaction, and ends the - transaction. - - @warning This method can only be called during a write transaction. - */ -- (void)commitWriteTransaction RLM_SWIFT_UNAVAILABLE(""); - -/** - Commits all write operations in the current write transaction, and ends the - transaction. - - @warning This method can only be called during a write transaction. - - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. - - @return Whether the transaction succeeded. - */ -- (BOOL)commitWriteTransaction:(NSError **)error; - -/** - Reverts all writes made in the current write transaction and ends the transaction. - - This rolls back all objects in the Realm to the state they were in at the - beginning of the write transaction, and then ends the transaction. - - This restores the data for deleted objects, but does not revive invalidated - object instances. Any `RLMObject`s which were added to the Realm will be - invalidated rather than switching back to standalone objects. - Given the following code: - - ObjectType *oldObject = [[ObjectType objectsWhere:@"..."] firstObject]; - ObjectType *newObject = [[ObjectType alloc] init]; - - [realm beginWriteTransaction]; - [realm addObject:newObject]; - [realm deleteObject:oldObject]; - [realm cancelWriteTransaction]; - - Both `oldObject` and `newObject` will return `YES` for `isInvalidated`, - but re-running the query which provided `oldObject` will once again return - the valid object. - - @warning This method can only be called during a write transaction. - */ -- (void)cancelWriteTransaction; - -/** - Helper to perform a block within a transaction. - */ -- (void)transactionWithBlock:(RLM_NOESCAPE void(^)(void))block RLM_SWIFT_UNAVAILABLE(""); - -/** - Performs actions contained within the given block inside a write transation. - - Write transactions cannot be nested, and trying to execute a write transaction - on a `RLMRealm` which is already in a write transaction will throw an - exception. Calls to `transactionWithBlock:` from `RLMRealm` instances in other - threads will block until the current write transaction completes. - - Before beginning the write transaction, `transactionWithBlock:` updates the - `RLMRealm` to the latest Realm version, as if refresh was called, and - generates notifications if applicable. This has no effect if the `RLMRealm` - was already up to date. - - @param block The block to perform. - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. - - @return Whether the transaction succeeded. - */ -- (BOOL)transactionWithBlock:(RLM_NOESCAPE void(^)(void))block error:(NSError **)error; - -/** - Update an `RLMRealm` and outstanding objects to point to the most recent data for this `RLMRealm`. - - @return Whether the realm had any updates. Note that this may return YES even if no data has actually changed. - */ -- (BOOL)refresh; - -/** - Set to YES to automatically update this Realm when changes happen in other threads. - - If set to YES (the default), changes made on other threads will be reflected - in this Realm on the next cycle of the run loop after the changes are - committed. If set to NO, you must manually call `-refresh` on the Realm to - update it to get the latest version. - - Note that by default, background threads do not have an active run loop and you - will need to manually call `-refresh` in order to update to the latest version, - even if `autorefresh` is set to `true`. - - Even with this enabled, you can still call `-refresh` at any time to update the - Realm before the automatic refresh would occur. - - Notifications are sent when a write transaction is committed whether or not - this is enabled. - - Disabling this on an `RLMRealm` without any strong references to it will not - have any effect, and it will switch back to YES the next time the `RLMRealm` - object is created. This is normally irrelevant as it means that there is - nothing to refresh (as persisted `RLMObject`s, `RLMArray`s, and `RLMResults` have strong - references to the containing `RLMRealm`), but it means that setting - `RLMRealm.defaultRealm.autorefresh = NO` in - `application:didFinishLaunchingWithOptions:` and only later storing Realm - objects will not work. - - Defaults to YES. - */ -@property (nonatomic) BOOL autorefresh; - -/** - Write a compacted copy of the RLMRealm to the given path. - - The destination file cannot already exist. - - Note that if this is called from within a write transaction it writes the - *current* data, and not data when the last write transaction was committed. - - @param path Path to save the Realm to. - @param error On input, a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information. - @return YES if the realm was copied successfully. Returns NO if an error occurred. -*/ -- (BOOL)writeCopyToPath:(NSString *)path error:(NSError **)error; - -/** - Write an encrypted and compacted copy of the RLMRealm to the given path. - - The destination file cannot already exist. - - Note that if this is called from within a write transaction it writes the - *current* data, and not data when the last write transaction was committed. - - @param path Path to save the Realm to. - @param key 64-byte encryption key to encrypt the new file with - @param error On input, a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information. - @return YES if the realm was copied successfully. Returns NO if an error occurred. -*/ -- (BOOL)writeCopyToPath:(NSString *)path encryptionKey:(NSData *)key error:(NSError **)error; - -/** - Invalidate all RLMObjects and RLMResults read from this Realm. - - An RLMRealm holds a read lock on the version of the data accessed by it, so - that changes made to the Realm on different threads do not modify or delete the - data seen by this RLMRealm. Calling this method releases the read lock, - allowing the space used on disk to be reused by later write transactions rather - than growing the file. This method should be called before performing long - blocking operations on a background thread on which you previously read data - from the Realm which you no longer need. - - All `RLMObject`, `RLMResults` and `RLMArray` instances obtained from this - `RLMRealm` on the current thread are invalidated, and can not longer be used. - The `RLMRealm` itself remains valid, and a new read transaction is implicitly - begun the next time data is read from the Realm. - - Calling this method multiple times in a row without reading any data from the - Realm, or before ever reading any data from the Realm is a no-op. This method - cannot be called on a read-only Realm. - */ -- (void)invalidate; - -#pragma mark - Accessing Objects - - -#pragma mark - Adding and Removing Objects from a Realm - -/** - Adds an object to be persisted in this Realm. - - Once added, this object can be retrieved using the `objectsWhere:` selectors - on `RLMRealm` and on subclasses of `RLMObject`. When added, all (child) - relationships referenced by this object will also be added to the Realm if they are - not already in it. If the object or any related objects already belong to a - different Realm an exception will be thrown. Use - `-[RLMObject createInRealm:withObject]` to insert a copy of a persisted object - into a different Realm. - - The object to be added must be valid and cannot have been previously deleted - from a Realm (i.e. `isInvalidated`) must be false. - - @warning This method can only be called during a write transaction. - - @param object Object to be added to this Realm. - */ -- (void)addObject:(RLMObject *)object; - -/** - Adds objects in the given array to be persisted in this Realm. - - This is the equivalent of `addObject:` except for an array of objects. - - @warning This method can only be called during a write transaction. - - @param array An enumerable object such as NSArray or RLMResults which contains objects to be added to - this Realm. - - @see addObject: - */ -- (void)addObjects:(id)array; - -/** - Adds or updates an object to be persisted in this Realm. The object provided must have a designated - primary key. If no objects exist in the RLMRealm instance with the same primary key value, the object is - inserted. Otherwise, the existing object is updated with any changed values. - - As with `addObject:`, the object cannot already be persisted in a different - Realm. Use `-[RLMObject createOrUpdateInRealm:withValue:]` to copy values to - a different Realm. - - @warning This method can only be called during a write transaction. - - @param object Object to be added or updated. - */ -- (void)addOrUpdateObject:(RLMObject *)object; - -/** - Adds or updates objects in the given array to be persisted in this Realm. - - This is the equivalent of `addOrUpdateObject:` except for an array of objects. - - @warning This method can only be called during a write transaction. - - @param array `NSArray`, `RLMArray`, or `RLMResults` of `RLMObject`s (or subclasses) to be added to this Realm. - - @see addOrUpdateObject: - */ -- (void)addOrUpdateObjectsFromArray:(id)array; - -/** - Delete an object from this Realm. - - @warning This method can only be called during a write transaction. - - @param object Object to be deleted from this Realm. - */ -- (void)deleteObject:(RLMObject *)object; - -/** - Delete an `NSArray`, `RLMArray`, or `RLMResults` of objects from this Realm. - - @warning This method can only be called during a write transaction. - - @param array `RLMArray`, `NSArray`, or `RLMResults` of `RLMObject`s to be deleted. - */ -- (void)deleteObjects:(id)array; - -/** - Deletes all objects in this Realm. - - @warning This method can only be called during a write transaction. - */ -- (void)deleteAllObjects; - - -#pragma mark - Migrations - -/** - Migration block used to migrate a Realm. - - @param migration `RLMMigration` object used to perform the migration. The - migration object allows you to enumerate and alter any - existing objects which require migration. - - @param oldSchemaVersion The schema version of the `RLMRealm` being migrated. - */ -typedef void (^RLMMigrationBlock)(RLMMigration *migration, uint64_t oldSchemaVersion); - -/** - Get the schema version for a Realm at a given path. - - @param realmPath Path to a Realm file - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. - - @return The version of the Realm at `realmPath` or RLMNotVersioned if the version cannot be read. - */ -+ (uint64_t)schemaVersionAtPath:(NSString *)realmPath error:(NSError **)error; - -/** - Get the schema version for an encrypted Realm at a given path. - - @param realmPath Path to a Realm file - @param key 64-byte encryption key. - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. - - @return The version of the Realm at `realmPath` or RLMNotVersioned if the version cannot be read. - */ -+ (uint64_t)schemaVersionAtPath:(NSString *)realmPath encryptionKey:(nullable NSData *)key error:(NSError **)error; - -/** - Performs the given Realm configuration's migration block on a Realm at the given path. - - This method is called automatically when opening a Realm for the first time and does - not need to be called explicitly. You can choose to call this method to control - exactly when and how migrations are performed. - - @param configuration The Realm configuration used to open and migrate the Realm. - @return The error that occurred while applying the migration, if any. - - @see RLMMigration - */ -+ (NSError *)migrateRealm:(RLMRealmConfiguration *)configuration; - -@end - -/** - A token which is returned from methods which subscribe to changes to a Realm. - - Change subscriptions in Realm return an RLMNotificationToken which can be used - to unsubscribe from the changes. You must store a strong reference to the token - for as long as you want to continue to receive notifications. When you wish to - stop, call the `-stop` method. - */ -@interface RLMNotificationToken : NSObject -/// Stop receiving notifications for the subcription that returned this token. -- (void)stop; -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/RLMRealmConfiguration.h b/Carthage/Build/tvOS/Realm.framework/Headers/RLMRealmConfiguration.h deleted file mode 100644 index 094016f..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/RLMRealmConfiguration.h +++ /dev/null @@ -1,79 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2015 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -/** - An `RLMRealmConfiguration` is used to describe the different options used to - create an `RLMRealm` instance. - - `RLMRealmConfiguration` instances are just plain NSObjects, and unlike RLMRealm - and RLMObjects can be freely shared between threads as long as you do not - mutate them. Creating configuration objects for class subsets (by setting the - `objectClasses` property) can be expensive, and so you will normally want to - cache and reuse a single configuration object for each distinct configuration - that you are using rather than creating a new one each time you open a Realm. - */ -@interface RLMRealmConfiguration : NSObject - -#pragma mark - Default Configuration - -/** - Returns the default configuration used to create Realms when no other - configuration is explicitly specified (i.e. `+[RLMRealm defaultRealm]`). - - @return The default Realm configuration. - */ -+ (instancetype)defaultConfiguration; - -/** - Sets the default configuration to the given `RLMRealmConfiguration`. - - @param configuration The new default Realm configuration. - */ -+ (void)setDefaultConfiguration:(RLMRealmConfiguration *)configuration; - -#pragma mark - Properties - -/// The path to the realm file. Mutually exclusive with `inMemoryIdentifier`. -@property (nonatomic, copy, nullable) NSString *path; - -/// A string used to identify a particular in-memory Realm. Mutually exclusive with `path`. -@property (nonatomic, copy, nullable) NSString *inMemoryIdentifier; - -/// 64-byte key to use to encrypt the data. -@property (nonatomic, copy, nullable) NSData *encryptionKey; - -/// Whether the Realm is read-only (must be YES for read-only files). -@property (nonatomic) BOOL readOnly; - -/// The current schema version. -@property (nonatomic) uint64_t schemaVersion; - -/// The block which migrates the Realm to the current version. -@property (nonatomic, copy, nullable) RLMMigrationBlock migrationBlock; - -/// The classes persisted in the Realm. -@property (nonatomic, copy, nullable) NSArray *objectClasses; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/RLMRealm_Dynamic.h b/Carthage/Build/tvOS/Realm.framework/Headers/RLMRealm_Dynamic.h deleted file mode 100644 index d778678..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/RLMRealm_Dynamic.h +++ /dev/null @@ -1,130 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import -#import - -@class RLMResults; - -@interface RLMRealm (Dynamic) - -#pragma mark - Getting Objects from a Realm - -/** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use the class methods on `RLMObject`. - - Get all objects of a given type in this Realm. - - The preferred way to get objects of a single class is to use the class methods on RLMObject. - - @warning This method is useful only in specialized circumstances. - - @param className The name of the RLMObject subclass to retrieve on e.g. `MyClass.className`. - - @return An RLMResults of all objects in this realm of the given type. - - @see RLMObject allObjects - */ -- (RLMResults *)allObjects:(NSString *)className; - -/** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use the class methods on `RLMObject`. - - Get objects matching the given predicate from the this Realm. - - The preferred way to get objects of a single class is to use the class methods on RLMObject. - - @warning This method is useful only in specialized circumstances. - - @param className The type of objects you are looking for (name of the class). - @param predicateFormat The predicate format string which can accept variable arguments. - - @return An RLMResults of results matching the given predicate. - - @see RLMObject objectsWhere: - */ -- (RLMResults *)objects:(NSString *)className where:(NSString *)predicateFormat, ...; - -/** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use the class methods on `RLMObject`. - - Get objects matching the given predicate from the this Realm. - - The preferred way to get objects of a single class is to use the class methods on RLMObject. - - @warning This method is useful only in specialized circumstances. - - @param className The type of objects you are looking for (name of the class). - @param predicate The predicate to filter the objects. - - @return An RLMResults of results matching the given predicate. - - @see RLMObject objectsWhere: - */ -- (RLMResults *)objects:(NSString *)className withPredicate:(NSPredicate *)predicate; - -/** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use the class methods on `RLMObject`. - - Get an object of a given class name with a primary key - - The preferred way to get an object of a single class is to use the class methods on RLMObject. - - @warning This method is useful only in specialized circumstances. - - @param className The class name for the object you are looking for - @param primaryKey The primary key value for the object you are looking for - - @return An object or nil if an object with the given primary key does not exist. - - @see RLMObject objectForPrimaryKey: - */ -- (RLMObject *)objectWithClassName:(NSString *)className forPrimaryKey:(id)primaryKey; - -/** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use [RLMObject createInDefaultRealmWithValue:]. - - Create an RLMObject of type `className` in the Realm with a given object. - - @warning This method is useful only in specialized circumstances. - - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as - the properties defined in the model. - - @return An RLMObject of type `className` - */ --(RLMObject *)createObject:(NSString *)className withValue:(id)value; - -@end diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/RLMResults.h b/Carthage/Build/tvOS/Realm.framework/Headers/RLMResults.h deleted file mode 100644 index 6f355fe..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/RLMResults.h +++ /dev/null @@ -1,280 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMObject, RLMRealm, RLMNotificationToken; - -/** - RLMResults is an auto-updating container type in Realm returned from object - queries. - - RLMResults can be queried with the same predicates as RLMObject and RLMArray - and you can chain queries to further filter query results. - - RLMResults always reflect the current state of the Realm on the current thread, - including during write transactions on the current thread. The one exception to - this is when using `for...in` fast enumeration, which will always enumerate - over the objects which matched the query when the enumeration is begun, even if - some of them are deleted or modified to be excluded by the filter during the - enumeration. - - RLMResults are initially lazily evaluated, and only run queries when the result - of the query is requested. This means that chaining several temporary - RLMResults to sort and filter your data does not perform any extra work - processing the intermediate state. - - Once the results have been evaluated or a notification block has been added, - the results are eagerly kept up-to-date, with the work done to keep them - up-to-date done on a background thread whenever possible. - - RLMResults cannot be created directly. - */ -@interface RLMResults RLM_GENERIC_COLLECTION : NSObject - -#pragma mark - Properties - -/** - Number of objects in the results. - */ -@property (nonatomic, readonly, assign) NSUInteger count; - -/** - The class name (i.e. type) of the RLMObjects contained in this RLMResults. - */ -@property (nonatomic, readonly, copy) NSString *objectClassName; - -/** - The Realm this `RLMResults` is associated with. - */ -@property (nonatomic, readonly) RLMRealm *realm; - -#pragma mark - Accessing Objects from an RLMResults - -/** - Returns the object at the index specified. - - @param index The index to look up. - - @return An RLMObject of the type contained in this RLMResults. - */ -- (RLMObjectType)objectAtIndex:(NSUInteger)index; - -/** - Returns the first object in the results. - - Returns `nil` if called on an empty RLMResults. - - @return An RLMObject of the type contained in this RLMResults. - */ -- (nullable RLMObjectType)firstObject; - -/** - Returns the last object in the results. - - Returns `nil` if called on an empty RLMResults. - - @return An RLMObject of the type contained in this RLMResults. - */ -- (nullable RLMObjectType)lastObject; - -#pragma mark - Querying Results - -/** - Gets the index of an object. - - Returns NSNotFound if the object is not found in this RLMResults. - - @param object An object (of the same type as returned from the objectClassName selector). - */ -- (NSUInteger)indexOfObject:(RLMObjectArgument)object; - -/** - Gets the index of the first object matching the predicate. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return Index of object or NSNotFound if the object is not found in this RLMResults. - */ -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Gets the index of the first object matching the predicate. - - @param predicate The predicate to filter the objects. - - @return Index of object or NSNotFound if the object is not found in this RLMResults. - */ -- (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate; - -/** - Get objects matching the given predicate in the RLMResults. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Get objects matching the given predicate in the RLMResults. - - @param predicate The predicate to filter the objects. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults RLM_GENERIC_RETURN*)objectsWithPredicate:(NSPredicate *)predicate; - -/** - Get a sorted `RLMResults` from an existing `RLMResults` sorted by a property. - - @param property The property name to sort by. - @param ascending The direction to sort by. - - @return An RLMResults sorted by the specified property. - */ -- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending; - -/** - Get a sorted `RLMResults` from an existing `RLMResults` sorted by an `NSArray`` of `RLMSortDescriptor`s. - - @param properties An array of `RLMSortDescriptor`s to sort by. - - @return An RLMResults sorted by the specified properties. - */ -- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingDescriptors:(NSArray *)properties; - -#pragma mark - Notifications - -/** - Register a block to be called each time the RLMResults changes. - - The block will be asynchronously called with the initial results, and then - called again after each write transaction which causes the results to change. - You must retain the returned token for as long as you want the results to - continue to be sent to the block. To stop receiving updates, call -stop on the - token. - - The determination for whether or not a write transaction has changed the - results is currently very coarse, and the block may be called even if no - changes occurred. The opposite (not being called despite changes) will not - happen. This will become more precise in future versions. - - If an error occurs the block will be called with `nil` for the results - parameter and a non-`nil` error. Currently the only errors that can occur are - when opening the RLMRealm on the background worker thread or the destination - queue fails. - - At the time when the block is called, the RLMResults object will be fully - evaluated and up-to-date, and as long as you do not perform a write transaction - on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will - never perform blocking work. - - @warning This method cannot be called during a write transaction, or when the - containing realm is read-only. - - @param block The block to be called with the evaluated results. - @return A token which must be held for as long as you want query results to be delivered. - */ -- (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults RLM_GENERIC_RETURN *__nullable results, NSError *__nullable error))block RLM_WARN_UNUSED_RESULT; - -#pragma mark - Aggregating Property Values - -/** - Returns the minimum (lowest) value of the given property - - NSNumber *min = [results minOfProperty:@"age"]; - - @warning You cannot use this method on RLMObject, RLMArray, and NSData properties. - - @param property The property to look for a minimum on. Only properties of type int, float, double and NSDate are supported. - - @return The minimum value for the property amongst objects in an RLMResults. - */ -- (nullable id)minOfProperty:(NSString *)property; - -/** - Returns the maximum (highest) value of the given property of objects in an RLMResults - - NSNumber *max = [results maxOfProperty:@"age"]; - - @warning You cannot use this method on RLMObject, RLMArray, and NSData properties. - - @param property The property to look for a maximum on. Only properties of type int, float, double and NSDate are supported. - - @return The maximum value for the property amongst objects in an RLMResults - */ -- (nullable id)maxOfProperty:(NSString *)property; - -/** - Returns the sum of the given property for objects in an RLMResults. - - NSNumber *sum = [results sumOfProperty:@"age"]; - - @warning You cannot use this method on RLMObject, RLMArray, and NSData properties. - - @param property The property to calculate sum on. Only properties of type int, float and double are supported. - - @return The sum of the given property over all objects in an RLMResults. - */ -- (NSNumber *)sumOfProperty:(NSString *)property; - -/** - Returns the average of a given property for objects in an RLMResults. - - NSNumber *average = [results averageOfProperty:@"age"]; - - @warning You cannot use this method on RLMObject, RLMArray, and NSData properties. - - @param property The property to calculate average on. Only properties of type int, float and double are supported. - - @return The average for the given property amongst objects in an RLMResults. This will be of type double for both - float and double properties. - */ -- (nullable NSNumber *)averageOfProperty:(NSString *)property; - -/// :nodoc: -- (id)objectAtIndexedSubscript:(NSUInteger)index; - -#pragma mark - Unavailable Methods - -/** - -[RLMResults init] is not available because RLMResults cannot be created directly. - RLMResults can be obtained by querying a Realm. - */ -- (instancetype)init __attribute__((unavailable("RLMResults cannot be created directly"))); - -/** - +[RLMResults new] is not available because RLMResults cannot be created directly. - RLMResults can be obtained by querying a Realm. - */ -+ (instancetype)new __attribute__((unavailable("RLMResults cannot be created directly"))); - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/RLMSchema.h b/Carthage/Build/tvOS/Realm.framework/Headers/RLMSchema.h deleted file mode 100644 index 6549706..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/RLMSchema.h +++ /dev/null @@ -1,76 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMObjectSchema; - -/** - This class represents the collection of model object schemas persisted to Realm. - - When using Realm, RLMSchema objects allow performing migrations and - introspecting the database's schema. - - Schemas map to collections of tables in the core database. - */ -@interface RLMSchema : NSObject - -#pragma mark - Properties - -/** - An NSArray containing RLMObjectSchemas for all object types in this Realm. Meant - to be used during migrations for dynamic introspection. - - @see RLMObjectSchema - */ -@property (nonatomic, readonly, copy) NSArray RLM_GENERIC(RLMObjectSchema *) *objectSchema; - -#pragma mark - Methods - -/** - Returns an RLMObjectSchema for the given class name in this RLMSchema. - - @param className The object class name. - @return RLMObjectSchema for the given class in this RLMSchema. - - @see RLMObjectSchema - */ -- (nullable RLMObjectSchema *)schemaForClassName:(NSString *)className; - -/** - Look up an RLMObjectSchema for the given class name in this Realm. Throws - an exception if there is no object of type className in this RLMSchema instance. - - @param className The object class name. - @return RLMObjectSchema for the given class in this Realm. - - @see RLMObjectSchema - */ -- (RLMObjectSchema *)objectForKeyedSubscript:(id )className; - -/** - Returns YES if equal to schema - */ -- (BOOL)isEqualToSchema:(RLMSchema *)schema; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/tvOS/Realm.framework/Headers/Realm.h b/Carthage/Build/tvOS/Realm.framework/Headers/Realm.h deleted file mode 100644 index 886f19e..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Headers/Realm.h +++ /dev/null @@ -1,30 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import diff --git a/Carthage/Build/tvOS/Realm.framework/Info.plist b/Carthage/Build/tvOS/Realm.framework/Info.plist deleted file mode 100644 index 7f4d239..0000000 Binary files a/Carthage/Build/tvOS/Realm.framework/Info.plist and /dev/null differ diff --git a/Carthage/Build/tvOS/Realm.framework/LICENSE b/Carthage/Build/tvOS/Realm.framework/LICENSE deleted file mode 100644 index a194346..0000000 --- a/Carthage/Build/tvOS/Realm.framework/LICENSE +++ /dev/null @@ -1,269 +0,0 @@ -TABLE OF CONTENTS - -1. Apache License version 2.0 -2. Realm Components -3. Export Compliance - -------------------------------------------------------------------------------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -REALM COMPONENTS - -This software contains components with separate copyright and license terms. -Your use of these components is subject to the terms and conditions of the -following licenses. - -For the Realm Core component - - Realm Core Binary License - - Copyright (c) 2011-2014 Realm Inc All rights reserved - - Redistribution and use in binary form, with or without modification, is - permitted provided that the following conditions are met: - - 1. You agree not to attempt to decompile, disassemble, reverse engineer or - otherwise discover the source code from which the binary code was derived. - You may, however, access and obtain a separate license for most of the - source code from which this Software was created, at - http://realm.io/pricing/. - - 2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - 3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -EXPORT COMPLIANCE - -You understand that the Software may contain cryptographic functions that may be -subject to export restrictions, and you represent and warrant that you are not -located in a country that is subject to United States export restriction or embargo, -including Cuba, Iran, North Korea, Sudan, Syria or the Crimea region, and that you -are not on the Department of Commerce list of Denied Persons, Unverified Parties, -or affiliated with a Restricted Entity. - -You agree to comply with all export, re-export and import restrictions and -regulations of the Department of Commerce or other agency or authority of the -United States or other applicable countries. You also agree not to transfer, or -authorize the transfer of, directly or indirectly, the Software to any prohibited -country, including Cuba, Iran, North Korea, Sudan, Syria or the Crimea region, -or to any person or organization on or affiliated with the Department of -Commerce lists of Denied Persons, Unverified Parties or Restricted Entities, or -otherwise in violation of any such restrictions or regulations. diff --git a/Carthage/Build/tvOS/Realm.framework/Modules/module.modulemap b/Carthage/Build/tvOS/Realm.framework/Modules/module.modulemap deleted file mode 100644 index 18b5e2e..0000000 --- a/Carthage/Build/tvOS/Realm.framework/Modules/module.modulemap +++ /dev/null @@ -1,27 +0,0 @@ -framework module Realm { - umbrella header "Realm.h" - - export * - module * { export * } - - explicit module Private { - header "RLMAccessor.h" - header "RLMArray_Private.h" - header "RLMListBase.h" - header "RLMMigration_Private.h" - header "RLMObjectSchema_Private.h" - header "RLMObjectStore.h" - header "RLMObject_Private.h" - header "RLMOptionalBase.h" - header "RLMProperty_Private.h" - header "RLMRealmConfiguration_Private.h" - header "RLMRealm_Private.h" - header "RLMResults_Private.h" - header "RLMSchema_Private.h" - } - - explicit module Dynamic { - header "RLMRealm_Dynamic.h" - header "RLMObjectBase_Dynamic.h" - } -} diff --git a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMAccessor.h b/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMAccessor.h deleted file mode 100644 index 23a4317..0000000 --- a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMAccessor.h +++ /dev/null @@ -1,64 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import - -@class RLMObjectSchema, RLMProperty, RLMObjectBase, RLMProperty; - -#ifdef __cplusplus -typedef NSUInteger RLMCreationOptions; -#else -typedef NS_OPTIONS(NSUInteger, RLMCreationOptions); -#endif - -RLM_ASSUME_NONNULL_BEGIN - -// -// Accessors Class Creation/Caching -// - -// get accessor classes for an object class - generates classes if not cached -Class RLMAccessorClassForObjectClass(Class objectClass, RLMObjectSchema *schema, NSString *prefix); -Class RLMStandaloneAccessorClassForObjectClass(Class objectClass, RLMObjectSchema *schema); - -// Check if a given class is a generated accessor class -bool RLMIsGeneratedClass(Class cls); - -// -// Dynamic getters/setters -// -FOUNDATION_EXTERN void RLMDynamicValidatedSet(RLMObjectBase *obj, NSString *propName, id __nullable val); -FOUNDATION_EXTERN RLMProperty *RLMValidatedGetProperty(RLMObjectBase *obj, NSString *propName); -FOUNDATION_EXTERN id __nullable RLMDynamicGet(RLMObjectBase *obj, RLMProperty *prop); - -// by property/column -FOUNDATION_EXTERN void RLMDynamicSet(RLMObjectBase *obj, RLMProperty *prop, id val, RLMCreationOptions options); - -// -// Class modification -// - -// Replace className method for the given class -void RLMReplaceClassNameMethod(Class accessorClass, NSString *className); - -// Replace sharedSchema method for the given class -void RLMReplaceSharedSchemaMethod(Class accessorClass, RLMObjectSchema * __nullable schema); - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMArray_Private.h b/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMArray_Private.h deleted file mode 100644 index 592dd57..0000000 --- a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMArray_Private.h +++ /dev/null @@ -1,24 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@interface RLMArray () -- (instancetype)initWithObjectClassName:(NSString *)objectClassName; -- (NSString *)descriptionWithMaxDepth:(NSUInteger)depth; -@end diff --git a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMListBase.h b/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMListBase.h deleted file mode 100644 index a8057a6..0000000 --- a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMListBase.h +++ /dev/null @@ -1,29 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMArray; - -// A base class for Swift generic Lists to make it possible to interact with -// them from obj-c -@interface RLMListBase : NSObject -@property (nonatomic, strong) RLMArray *_rlmArray; - -- (instancetype)initWithArray:(RLMArray *)array; -@end diff --git a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMMigration_Private.h b/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMMigration_Private.h deleted file mode 100644 index 4b54c89..0000000 --- a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMMigration_Private.h +++ /dev/null @@ -1,34 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import -#import - -typedef void (^RLMObjectBaseMigrationBlock)(RLMObjectBase *oldObject, RLMObjectBase *newObject); - -@interface RLMMigration () - -@property (nonatomic, strong) RLMRealm *oldRealm; -@property (nonatomic, strong) RLMRealm *realm; - -- (instancetype)initWithRealm:(RLMRealm *)realm oldRealm:(RLMRealm *)oldRealm; - -- (void)execute:(RLMMigrationBlock)block; - -@end diff --git a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h b/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h deleted file mode 100644 index 10b6473..0000000 --- a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h +++ /dev/null @@ -1,70 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMRealm; - -// RLMObjectSchema private -@interface RLMObjectSchema () - -// writable redecleration -@property (nonatomic, readwrite, copy) NSArray RLM_GENERIC(RLMProperty *) *properties; -@property (nonatomic, readwrite, assign) bool isSwiftClass; - -// class used for this object schema -@property (nonatomic, readwrite, assign) Class objectClass; -@property (nonatomic, readwrite, assign) Class accessorClass; -@property (nonatomic, readwrite, assign) Class standaloneClass; - -@property (nonatomic, readwrite, nullable) RLMProperty *primaryKeyProperty; - -@property (nonatomic, readonly) NSArray RLM_GENERIC(RLMProperty *) *propertiesInDeclaredOrder; - -// The Realm retains its object schemas, so they need to not retain the Realm -@property (nonatomic, unsafe_unretained, nullable) RLMRealm *realm; -// returns a cached or new schema for a given object class -+ (instancetype)schemaForObjectClass:(Class)objectClass; - -- (void)sortPropertiesByColumn; - -@end - -@interface RLMObjectSchema (Dynamic) -/** - This method is useful only in specialized circumstances, for example, when accessing objects - in a Realm produced externally. If you are simply building an app on Realm, it is not recommened - to use this method as an [RLMObjectSchema](RLMObjectSchema) is generated automatically for every [RLMObject](RLMObject) subclass. - - Initialize an RLMObjectSchema with classname, objectClass, and an array of properties - - @warning This method is useful only in specialized circumstances. - - @param objectClassName The name of the class used to refer to objects of this type. - @param objectClass The objective-c class used when creating instances of this type. - @param properties An array RLMProperty describing the persisted properties for this type. - - @return An initialized instance of RLMObjectSchema. - */ -- (instancetype)initWithClassName:(NSString *)objectClassName objectClass:(Class)objectClass properties:(NSArray *)properties; -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMObjectStore.h b/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMObjectStore.h deleted file mode 100644 index 590d0ef..0000000 --- a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMObjectStore.h +++ /dev/null @@ -1,99 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#ifdef __cplusplus -extern "C" { -#endif - -@class RLMRealm, RLMSchema, RLMObjectSchema, RLMObjectBase, RLMResults, RLMProperty; - -// -// Accessor Creation -// - -// create or get cached accessors for the given schema -void RLMRealmCreateAccessors(RLMSchema *schema); - -// Clear the cache of created accessor classes -void RLMClearAccessorCache(); - - -// -// Options for object creation -// -typedef NS_OPTIONS(NSUInteger, RLMCreationOptions) { - // Normal object creation - RLMCreationOptionsNone = 0, - // If the property is a link or array property, upsert the linked objects - // if they have a primary key, and insert them otherwise. - RLMCreationOptionsCreateOrUpdate = 1 << 0, - // Allow standalone objects to be promoted to persisted objects - // if false objects are copied during object creation - RLMCreationOptionsPromoteStandalone = 1 << 1, -}; - - -// -// Adding, Removing, Getting Objects -// - -// add an object to the given realm -void RLMAddObjectToRealm(RLMObjectBase *object, RLMRealm *realm, bool createOrUpdate); - -// delete an object from its realm -void RLMDeleteObjectFromRealm(RLMObjectBase *object, RLMRealm *realm); - -// deletes all objects from a realm -void RLMDeleteAllObjectsFromRealm(RLMRealm *realm); - -// get objects of a given class -RLMResults *RLMGetObjects(RLMRealm *realm, NSString *objectClassName, NSPredicate *predicate) NS_RETURNS_RETAINED; - -// get an object with the given primary key -id RLMGetObject(RLMRealm *realm, NSString *objectClassName, id key) NS_RETURNS_RETAINED; - -// create object from array or dictionary -RLMObjectBase *RLMCreateObjectInRealmWithValue(RLMRealm *realm, NSString *className, id value, bool createOrUpdate) NS_RETURNS_RETAINED; - - -// -// Accessor Creation -// - - -// switch List<> properties from being backed by standalone RLMArrays to RLMArrayLinkView -void RLMInitializeSwiftAccessorGenerics(RLMObjectBase *object); - -#ifdef __cplusplus -} - -namespace realm { - class Table; - template class BasicRowExpr; - using RowExpr = BasicRowExpr
    ; -} -// Create accessors -RLMObjectBase *RLMCreateObjectAccessor(RLMRealm *realm, - RLMObjectSchema *objectSchema, - NSUInteger index) NS_RETURNS_RETAINED; -RLMObjectBase *RLMCreateObjectAccessor(RLMRealm *realm, - RLMObjectSchema *objectSchema, - realm::RowExpr row) NS_RETURNS_RETAINED; -#endif diff --git a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMObject_Private.h b/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMObject_Private.h deleted file mode 100644 index 2c7e96f..0000000 --- a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMObject_Private.h +++ /dev/null @@ -1,89 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -// RLMObject accessor and read/write realm -@interface RLMObjectBase () { - @public - RLMRealm *_realm; - // objectSchema is a cached pointer to an object stored in the RLMSchema - // owned by _realm, so it's guaranteed to stay alive as long as this object - // without retaining it (and retaining it makes iteration slower) - __unsafe_unretained RLMObjectSchema *_objectSchema; -} - -// standalone initializer -- (instancetype)initWithValue:(id)value schema:(RLMSchema *)schema; - -// live accessor initializer -- (instancetype)initWithRealm:(__unsafe_unretained RLMRealm *const)realm - schema:(__unsafe_unretained RLMObjectSchema *const)schema; - -// shared schema for this class -+ (RLMObjectSchema *)sharedSchema; - -// provide injection point for alternative Swift object util class -+ (Class)objectUtilClass:(BOOL)isSwift; - -@end - -@interface RLMDynamicObject : RLMObject - -@end - -// -// Getters and setters for RLMObjectBase ivars for realm and objectSchema -// -FOUNDATION_EXTERN void RLMObjectBaseSetRealm(RLMObjectBase *object, RLMRealm *realm); -FOUNDATION_EXTERN RLMRealm *RLMObjectBaseRealm(RLMObjectBase *object); -FOUNDATION_EXTERN void RLMObjectBaseSetObjectSchema(RLMObjectBase *object, RLMObjectSchema *objectSchema); -FOUNDATION_EXTERN RLMObjectSchema *RLMObjectBaseObjectSchema(RLMObjectBase *object); - -// Get linking objects for an RLMObjectBase -FOUNDATION_EXTERN NSArray *RLMObjectBaseLinkingObjectsOfClass(RLMObjectBase *object, NSString *className, NSString *property); - -// Dynamic access to RLMObjectBase properties -FOUNDATION_EXTERN id RLMObjectBaseObjectForKeyedSubscript(RLMObjectBase *object, NSString *key); -FOUNDATION_EXTERN void RLMObjectBaseSetObjectForKeyedSubscript(RLMObjectBase *object, NSString *key, id obj); - -// Calls valueForKey: and re-raises NSUndefinedKeyExceptions -FOUNDATION_EXTERN id RLMValidatedValueForProperty(id object, NSString *key, NSString *className); - -// Compare two RLObjectBases -FOUNDATION_EXTERN BOOL RLMObjectBaseAreEqual(RLMObjectBase *o1, RLMObjectBase *o2); - -// Get ObjectUil class for objc or swift -FOUNDATION_EXTERN Class RLMObjectUtilClass(BOOL isSwift); - -FOUNDATION_EXTERN const NSUInteger RLMDescriptionMaxDepth; - -@class RLMProperty, RLMArray; -@interface RLMObjectUtil : NSObject - -+ (NSArray RLM_GENERIC(NSString *) *)ignoredPropertiesForClass:(Class)cls; -+ (NSArray RLM_GENERIC(NSString *) *)indexedPropertiesForClass:(Class)cls; - -+ (NSArray RLM_GENERIC(NSString *) *)getGenericListPropertyNames:(id)obj; -+ (void)initializeListProperty:(RLMObjectBase *)object property:(RLMProperty *)property array:(RLMArray *)array; -+ (void)initializeOptionalProperty:(RLMObjectBase *)object property:(RLMProperty *)property; - -+ (NSDictionary RLM_GENERIC(NSString *, NSNumber *) *)getOptionalProperties:(id)obj; -+ (NSArray RLM_GENERIC(NSString *) *)requiredPropertiesForClass:(Class)cls; - -@end diff --git a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMOptionalBase.h b/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMOptionalBase.h deleted file mode 100644 index bab04a5..0000000 --- a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMOptionalBase.h +++ /dev/null @@ -1,34 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2015 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -@class RLMObjectBase, RLMProperty; - -@interface RLMOptionalBase : NSProxy - -- (instancetype)init; - -@property (nonatomic, weak) RLMObjectBase *object; - -@property (nonatomic, unsafe_unretained) RLMProperty *property; - -@property (nonatomic, strong) id underlyingValue; - -@end diff --git a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMProperty_Private.h b/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMProperty_Private.h deleted file mode 100644 index 5223764..0000000 --- a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMProperty_Private.h +++ /dev/null @@ -1,93 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import - -@class RLMObjectBase; - -FOUNDATION_EXTERN BOOL RLMPropertyTypeIsNullable(RLMPropertyType propertyType); -FOUNDATION_EXTERN BOOL RLMPropertyTypeIsNumeric(RLMPropertyType propertyType); - -// private property interface -@interface RLMProperty () - -- (instancetype)initWithName:(NSString *)name - indexed:(BOOL)indexed - property:(objc_property_t)property; - -- (instancetype)initSwiftPropertyWithName:(NSString *)name - indexed:(BOOL)indexed - property:(objc_property_t)property - instance:(RLMObjectBase *)objectInstance; - -- (instancetype)initSwiftListPropertyWithName:(NSString *)name - ivar:(Ivar)ivar - objectClassName:(NSString *)objectClassName; - -- (instancetype)initSwiftOptionalPropertyWithName:(NSString *)name - indexed:(BOOL)indexed - ivar:(Ivar)ivar - propertyType:(RLMPropertyType)propertyType; - -// private setters -@property (nonatomic, assign) NSUInteger column; -@property (nonatomic, readwrite, assign) RLMPropertyType type; -@property (nonatomic, readwrite) BOOL indexed; -@property (nonatomic, readwrite) BOOL optional; -@property (nonatomic, copy) NSString *objectClassName; - -// private properties -@property (nonatomic, assign) char objcType; -@property (nonatomic, copy) NSString *objcRawType; -@property (nonatomic, assign) BOOL isPrimary; -@property (nonatomic, assign) Ivar swiftIvar; -@property (nonatomic, assign) NSUInteger declarationIndex; - -// getter and setter names -@property (nonatomic, copy) NSString *getterName; -@property (nonatomic, copy) NSString *setterName; -@property (nonatomic) SEL getterSel; -@property (nonatomic) SEL setterSel; - -@end - -@interface RLMProperty (Dynamic) -/** - This method is useful only in specialized circumstances, for example, in conjunction with - +[RLMObjectSchema initWithClassName:objectClass:properties:]. If you are simply building an - app on Realm, it is not recommened to use this method. - - Initialize an RLMProperty - - @warning This method is useful only in specialized circumstances. - - @param name The property name. - @param type The property type. - @param objectClassName The object type used for Object and Array types. - - @return An initialized instance of RLMProperty. - */ -- (instancetype)initWithName:(NSString *)name - type:(RLMPropertyType)type - objectClassName:(NSString *)objectClassName - indexed:(BOOL)indexed - optional:(BOOL)optional; -@end - diff --git a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMRealmConfiguration_Private.h b/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMRealmConfiguration_Private.h deleted file mode 100644 index 91770a2..0000000 --- a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMRealmConfiguration_Private.h +++ /dev/null @@ -1,38 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2015 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMSchema; - -@interface RLMRealmConfiguration () - -@property (nonatomic, readwrite) bool cache; -@property (nonatomic, readwrite) bool dynamic; -@property (nonatomic, readwrite) bool disableFormatUpgrade; -@property (nonatomic, copy) RLMSchema *customSchema; - -// Get the default confiugration without copying it -+ (RLMRealmConfiguration *)rawDefaultConfiguration; - -+ (void)resetRealmConfigurationState; -@end - -// Get a path in the platform-appropriate documents directory with the given filename -FOUNDATION_EXTERN NSString *RLMRealmPathForFile(NSString *fileName); -FOUNDATION_EXTERN NSString *RLMRealmPathForFileAndBundleIdentifier(NSString *fileName, NSString *mainBundleIdentifier); diff --git a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMRealmUtil.hpp b/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMRealmUtil.hpp deleted file mode 100644 index b69c727..0000000 --- a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMRealmUtil.hpp +++ /dev/null @@ -1,42 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import -#import - -@class RLMRealm; - -namespace realm { - class BindingContext; -} - -// Add a Realm to the weak cache -void RLMCacheRealm(std::string const& path, RLMRealm *realm); -// Get a Realm for the given path which can be used on the current thread -RLMRealm *RLMGetThreadLocalCachedRealmForPath(std::string const& path); -// Get a Realm for the given path -RLMRealm *RLMGetAnyCachedRealmForPath(std::string const& path); -// Clear the weak cache of Realms -void RLMClearRealmCache(); - -// Install an uncaught exception handler that cancels write transactions -// for all cached realms on the current thread -void RLMInstallUncaughtExceptionHandler(); - -std::unique_ptr RLMCreateBindingContext(RLMRealm *realm); diff --git a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMRealm_Private.h b/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMRealm_Private.h deleted file mode 100644 index 68b3b82..0000000 --- a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMRealm_Private.h +++ /dev/null @@ -1,86 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMFastEnumerator; - -// Disable syncing files to disk. Cannot be re-enabled. Use only for tests. -FOUNDATION_EXTERN void RLMDisableSyncToDisk(); - -FOUNDATION_EXTERN NSData *RLMRealmValidatedEncryptionKey(NSData *key); - -// Translate an in-flight exception resulting from opening a SharedGroup to -// an NSError or NSException (if error is nil) -void RLMRealmTranslateException(NSError **error); - -// RLMRealm private members -@interface RLMRealm () - -@property (nonatomic, readonly) BOOL dynamic; -@property (nonatomic, readwrite) RLMSchema *schema; - -+ (void)resetRealmState; - -/** - This method is useful only in specialized circumstances, for example, when opening Realm files - retrieved externally that contain a different schema than defined in your application. - If you are simply building an app on Realm you should consider using: - [defaultRealm]([RLMRealm defaultRealm]) or [realmWithPath:]([RLMRealm realmWithPath:]) - - Obtains an `RLMRealm` instance with persistence to a specific file path with - options. - - @warning This method is useful only in specialized circumstances. - - @param path Path to the file you want the data saved in. - @param key 64-byte key to use to encrypt the data. - @param readonly `BOOL` indicating if this Realm is read-only (must use for read-only files) - @param inMemory `BOOL` indicating if this Realm is in-memory - @param dynamic `BOOL` indicating if this Realm is dynamic - @param customSchema `RLMSchema` object representing the schema for the Realm - @param outError If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in NULL. - - @return An `RLMRealm` instance. - - @see RLMRealm defaultRealm - @see RLMRealm realmWithPath: - @see RLMRealm realmWithPath:readOnly:error: - @see RLMRealm realmWithPath:encryptionKey:readOnly:error: - */ -+ (instancetype)realmWithPath:(NSString *)path - key:(NSData *)key - readOnly:(BOOL)readonly - inMemory:(BOOL)inMemory - dynamic:(BOOL)dynamic - schema:(RLMSchema *)customSchema - error:(NSError **)outError; - -- (void)registerEnumerator:(RLMFastEnumerator *)enumerator; -- (void)unregisterEnumerator:(RLMFastEnumerator *)enumerator; -- (void)detachAllEnumerators; - -- (void)sendNotifications:(NSString *)notification; -- (void)verifyThread; -- (void)verifyNotificationsAreSupported; - -+ (NSString *)writeableTemporaryPathForFile:(NSString *)fileName; - -@end diff --git a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMResults_Private.h b/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMResults_Private.h deleted file mode 100644 index 7bdfa84..0000000 --- a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMResults_Private.h +++ /dev/null @@ -1,25 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMObjectSchema; - -@interface RLMResults () -@property (nonatomic, unsafe_unretained) RLMObjectSchema *objectSchema; -@end diff --git a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMSchema_Private.h b/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMSchema_Private.h deleted file mode 100644 index e951553..0000000 --- a/Carthage/Build/tvOS/Realm.framework/PrivateHeaders/RLMSchema_Private.h +++ /dev/null @@ -1,66 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#ifdef __cplusplus -extern "C" { -#endif - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMRealm; - -// -// RLMSchema private interface -// -@interface RLMSchema () - -/** - Returns an `RLMSchema` containing only the given `RLMObject` subclasses. - - @param classes The classes to be included in the schema. - - @return An `RLMSchema` containing only the given classes. - */ -+ (instancetype)schemaWithObjectClasses:(NSArray RLM_GENERIC(Class) *)classes; - -@property (nonatomic, readwrite, copy) NSArray RLM_GENERIC(RLMObjectSchema *) *objectSchema; - -// schema based on runtime objects -+ (instancetype)sharedSchema; - -// schema based upon all currently registered object classes -+ (instancetype)partialSharedSchema; - -// class for string -+ (nullable Class)classForString:(NSString *)className; - -// shallow copy for reusing schema properties accross the same Realm on multiple threads -- (instancetype)shallowCopy; - -+ (RLMObjectSchema *)sharedSchemaForClass:(Class)cls; - -@end - -RLM_ASSUME_NONNULL_END - -#ifdef __cplusplus -} -#endif diff --git a/Carthage/Build/tvOS/Realm.framework/Realm b/Carthage/Build/tvOS/Realm.framework/Realm deleted file mode 100755 index 9312aa8..0000000 Binary files a/Carthage/Build/tvOS/Realm.framework/Realm and /dev/null differ diff --git a/Carthage/Build/tvOS/Realm.framework/strip-frameworks.sh b/Carthage/Build/tvOS/Realm.framework/strip-frameworks.sh deleted file mode 100644 index 80814ab..0000000 --- a/Carthage/Build/tvOS/Realm.framework/strip-frameworks.sh +++ /dev/null @@ -1,72 +0,0 @@ -################################################################################ -# -# Copyright 2015 Realm Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -################################################################################ - -# This script strips all non-valid architectures from dynamic libraries in -# the application's `Frameworks` directory. -# -# The following environment variables are required: -# -# BUILT_PRODUCTS_DIR -# FRAMEWORKS_FOLDER_PATH -# VALID_ARCHS -# EXPANDED_CODE_SIGN_IDENTITY - - -# Signs a framework with the provided identity -code_sign() { - # Use the current code_sign_identitiy - echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" - echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements $1" - /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" -} - -# Set working directory to product’s embedded frameworks -cd "${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}" - -if [ "$ACTION" = "install" ]; then - echo "Copy .bcsymbolmap files to .xcarchive" - find . -name '*.bcsymbolmap' -type f -exec mv {} "${CONFIGURATION_BUILD_DIR}" \; -else - # Delete *.bcsymbolmap files from framework bundle unless archiving - find . -name '*.bcsymbolmap' -type f -exec rm -rf "{}" +\; -fi - -echo "Stripping frameworks" - -for file in $(find . -type f -perm +111); do - # Skip non-dynamic libraries - if ! [[ "$(file "$file")" == *"dynamically linked shared library"* ]]; then - continue - fi - # Get architectures for current file - archs="$(lipo -info "${file}" | rev | cut -d ':' -f1 | rev)" - stripped="" - for arch in $archs; do - if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then - # Strip non-valid architectures in-place - lipo -remove "$arch" -output "$file" "$file" || exit 1 - stripped="$stripped $arch" - fi - done - if [[ "$stripped" != "" ]]; then - echo "Stripped $file of architectures:$stripped" - if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then - code_sign "${file}" - fi - fi -done diff --git a/Carthage/Build/tvOS/RealmSwift.framework.dSYM/Contents/Info.plist b/Carthage/Build/tvOS/RealmSwift.framework.dSYM/Contents/Info.plist deleted file mode 100644 index fa8327b..0000000 --- a/Carthage/Build/tvOS/RealmSwift.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.io.realm.RealmSwit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 0.98.6 - CFBundleVersion - 0.98.6 - - diff --git a/Carthage/Build/tvOS/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift b/Carthage/Build/tvOS/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift deleted file mode 100644 index f186713..0000000 Binary files a/Carthage/Build/tvOS/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift and /dev/null differ diff --git a/Carthage/Build/tvOS/RealmSwift.framework/Headers/RealmSwift-Swift.h b/Carthage/Build/tvOS/RealmSwift.framework/Headers/RealmSwift-Swift.h deleted file mode 100644 index a478e34..0000000 --- a/Carthage/Build/tvOS/RealmSwift.framework/Headers/RealmSwift-Swift.h +++ /dev/null @@ -1,317 +0,0 @@ -// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.1 clang-703.0.29) -#pragma clang diagnostic push - -#if defined(__has_include) && __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if defined(__has_include) && __has_include() -# include -# elif !defined(__cplusplus) || __cplusplus < 201103L -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif - -#if defined(__has_attribute) && __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if defined(__has_attribute) && __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type -# if defined(__has_feature) && __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) -# endif -#endif -#if defined(__has_feature) && __has_feature(modules) -@import Realm; -@import Realm.Private; -@import Foundation; -@import ObjectiveC; -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -@class RLMRealm; -@class RLMObjectSchema; -@class RLMSchema; -@class RLMProperty; -@class RLMListBase; -@class RLMOptionalBase; - - -/// In Realm you define your model classes by subclassing Object and adding properties to be persisted. You then instantiate and use your custom subclasses instead of using the Object class directly. -/// -/// class Dog: Object { -/// dynamic var name: String = "" -/// dynamic var adopted: Bool = false -/// let siblings = List() -/// } -/// -/// -///

    Supported property types

    -///
    • String -/// , NSString -///
    • Int -///
    • Int8 -/// , Int16 -/// , Int32 -/// , Int64 -///
    • Float -///
    • Double -///
    • Bool -///
    • NSDate -///
    • NSData -///
    • RealmOptional -/// for optional numeric properties
    • Object -/// subclasses for to-one relationships
    • List -/// for to-many relationships
    -/// String -/// , NSString -/// , NSDate -/// , NSData -/// and Object -/// subclass properties can be -/// optional. Int -/// , Int8 -/// , Int16, Int32 -/// , Int64 -/// , Float -/// , Double -/// , Bool -/// -/// and List -/// properties cannot. To store an optional number, instead use -/// RealmOptional -/// , RealmOptional -/// , RealmOptional -/// , or -/// RealmOptional -/// instead, which wraps an optional value of the generic type. -/// -/// All property types except for List -/// and RealmOptional -/// must be declared as -/// dynamic var -/// . List -/// and RealmOptional -/// properties must be declared as -/// non-dynamic let -/// properties. -/// -///

    Querying

    -/// You can gets Results -/// of an Object subclass via the objects(_:) -/// instance -/// method on Realm -/// . -/// -///

    Relationships

    -/// See our Cocoa guide for more details. -SWIFT_CLASS_NAMED("Object") -@interface RealmSwiftObject : RLMObjectBase - -/// Initialize a standalone (unpersisted) Object. Call add(_:) on a Realm to add standalone objects to a realm. -/// -///
    • see: Realm().add(_:)
    -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - -/// Initialize a standalone (unpersisted) Object with values from an Array or Dictionary. Call add(_:) on a Realm to add standalone objects to a realm. -/// -/// \param value The value used to populate the object. This can be any key/value coding compliant -/// object, or a JSON object such as those returned from the methods in NSJSONSerialization -/// , -/// or an Array -/// with one object for each persisted property. An exception will be -/// thrown if any required properties are not present and no default is set. -- (nonnull instancetype)initWithValue:(id _Nonnull)value OBJC_DESIGNATED_INITIALIZER; - -/// Indicates if an object can no longer be accessed. -/// -/// An object can no longer be accessed if the object has been deleted from the containing -/// realm -/// or if invalidate -/// is called on the containing realm -/// . -@property (nonatomic, readonly, getter=isInvalidated) BOOL invalidated; - -/// Returns a human-readable description of this object. -@property (nonatomic, readonly, copy) NSString * _Nonnull description; - -/// Helper to return the class name for an Object subclass. -@property (nonatomic, readonly, copy) NSString * _Nonnull className; - -/// WARNING: This is an internal helper method not intended for public use. :nodoc: -+ (Class _Nonnull)objectUtilClass:(BOOL)isSwift; - -/// Override to designate a property as the primary key for an Object subclass. Only properties of type String and Int can be designated as the primary key. Primary key properties enforce uniqueness for each value whenever the property is set which incurs some overhead. Indexes are created automatically for primary key properties. -/// -/// \returns Name of the property designated as the primary key, or nil -/// if the model has no primary key. -+ (NSString * _Nullable)primaryKey; - -/// Override to return an array of property names to ignore. These properties will not be persisted and are treated as transient. -/// -/// \returns Array -/// of property names to ignore. -+ (NSArray * _Nonnull)ignoredProperties; - -/// Return an array of property names for properties which should be indexed. Only supported for string and int properties. -/// -/// \returns Array -/// of property names to index. -+ (NSArray * _Nonnull)indexedProperties; -- (id _Nullable)objectForKeyedSubscript:(NSString * _Nonnull)key; -- (void)setObject:(id _Nullable)value forKeyedSubscript:(NSString * _Nonnull)key; - -/// Returns whether both objects are equal. -/// -/// Objects are considered equal when they are both from the same Realm and point to the same -/// underlying object in the database. -/// -/// \param object Object to compare for equality. -- (BOOL)isEqual:(id _Nullable)object; - -/// WARNING: This is an internal initializer not intended for public use. :nodoc: -- (nonnull instancetype)initWithRealm:(RLMRealm * _Nonnull)realm schema:(RLMObjectSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER; - -/// WARNING: This is an internal initializer not intended for public use. :nodoc: -- (nonnull instancetype)initWithValue:(id _Nonnull)value schema:(RLMSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER; -- (RLMListBase * _Nonnull)listForProperty:(RLMProperty * _Nonnull)prop; -- (RLMOptionalBase * _Nonnull)optionalForProperty:(RLMProperty * _Nonnull)prop; -@end - - - -/// Object interface which allows untyped getters and setters for Objects. :nodoc: -SWIFT_CLASS("_TtC10RealmSwift13DynamicObject") -@interface DynamicObject : RealmSwiftObject -- (RLMListBase * _Nonnull)listForProperty:(RLMProperty * _Nonnull)prop; -- (RLMOptionalBase * _Nonnull)optionalForProperty:(RLMProperty * _Nonnull)prop; - -/// :nodoc: -- (id _Nullable)valueForUndefinedKey:(NSString * _Nonnull)key; - -/// :nodoc: -- (void)setValue:(id _Nullable)value forUndefinedKey:(NSString * _Nonnull)key; - -/// :nodoc: -+ (BOOL)shouldIncludeInDefaultSchema; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)initWithValue:(id _Nonnull)value OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)initWithRealm:(RLMRealm * _Nonnull)realm schema:(RLMObjectSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)initWithValue:(id _Nonnull)value schema:(RLMSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER; -@end - -@class RLMArray; - - -/// :nodoc: Internal class. Do not use directly. -SWIFT_CLASS("_TtC10RealmSwift8ListBase") -@interface ListBase : RLMListBase - -/// Returns a human-readable description of the objects contained in the List. -@property (nonatomic, readonly, copy) NSString * _Nonnull description; - -/// Returns the number of objects in this List. -@property (nonatomic, readonly) NSInteger count; -- (null_unspecified instancetype)initWithArray:(RLMArray * _Null_unspecified)array OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface NSDate (SWIFT_EXTENSION(RealmSwift)) -@end - - - - -/// :nodoc: Internal class. Do not use directly. -SWIFT_CLASS_NAMED("ObjectUtil") -@interface RealmSwiftObjectUtil : NSObject -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -@class RLMResults; - - -/// :nodoc: Internal class. Do not use directly. -SWIFT_CLASS("_TtC10RealmSwift11ResultsBase") -@interface ResultsBase : NSObject -@property (nonatomic, readonly, strong) RLMResults * _Nonnull rlmResults; - -/// Returns a human-readable description of the objects contained in these results. -@property (nonatomic, readonly, copy) NSString * _Nonnull description; -- (nonnull instancetype)init:(RLMResults * _Nonnull)rlmResults OBJC_DESIGNATED_INITIALIZER; -- (NSInteger)countByEnumeratingWithState:(NSFastEnumerationState * _Null_unspecified)state objects:(id _Nullable * _Null_unspecified)buffer count:(NSInteger)len; -@end - -#pragma clang diagnostic pop diff --git a/Carthage/Build/tvOS/RealmSwift.framework/Info.plist b/Carthage/Build/tvOS/RealmSwift.framework/Info.plist deleted file mode 100644 index 05ecec5..0000000 Binary files a/Carthage/Build/tvOS/RealmSwift.framework/Info.plist and /dev/null differ diff --git a/Carthage/Build/tvOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftdoc b/Carthage/Build/tvOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftdoc deleted file mode 100644 index dc9e098..0000000 Binary files a/Carthage/Build/tvOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftdoc and /dev/null differ diff --git a/Carthage/Build/tvOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftmodule b/Carthage/Build/tvOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftmodule deleted file mode 100644 index 34cd779..0000000 Binary files a/Carthage/Build/tvOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftmodule and /dev/null differ diff --git a/Carthage/Build/tvOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftdoc b/Carthage/Build/tvOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftdoc deleted file mode 100644 index 07366b3..0000000 Binary files a/Carthage/Build/tvOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftdoc and /dev/null differ diff --git a/Carthage/Build/tvOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule b/Carthage/Build/tvOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule deleted file mode 100644 index be95d8b..0000000 Binary files a/Carthage/Build/tvOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule and /dev/null differ diff --git a/Carthage/Build/tvOS/RealmSwift.framework/Modules/module.modulemap b/Carthage/Build/tvOS/RealmSwift.framework/Modules/module.modulemap deleted file mode 100644 index 293772c..0000000 --- a/Carthage/Build/tvOS/RealmSwift.framework/Modules/module.modulemap +++ /dev/null @@ -1,3 +0,0 @@ -framework module RealmSwift { - header "RealmSwift-Swift.h" -} diff --git a/Carthage/Build/tvOS/RealmSwift.framework/RealmSwift b/Carthage/Build/tvOS/RealmSwift.framework/RealmSwift deleted file mode 100755 index ff7d40a..0000000 Binary files a/Carthage/Build/tvOS/RealmSwift.framework/RealmSwift and /dev/null differ diff --git a/Carthage/Build/watchOS/A8786FCC-4F41-3970-9291-65A6E165937C.bcsymbolmap b/Carthage/Build/watchOS/A8786FCC-4F41-3970-9291-65A6E165937C.bcsymbolmap deleted file mode 100644 index f5dbf93..0000000 --- a/Carthage/Build/watchOS/A8786FCC-4F41-3970-9291-65A6E165937C.bcsymbolmap +++ /dev/null @@ -1,8044 +0,0 @@ -BCSymbolMap Version: 1.0 -_ZN5realm9TableViewD1Ev -__clang_call_terminate -_ZNK5realm5_impl10AsyncQuery21is_for_current_threadEv -_ZN5realm13TableViewBaseC2Ev -_ZN5realm9TableViewD0Ev -_ZNK5realm13TableViewBase15get_column_baseEm -_ZNK5realm13TableViewBase4sizeEv -_ZNK5realm9TableView18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_18ConstSourcePayloadE -_ZN5realm9TableView18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_20MutableSourcePayloadE -_ZN5realm9TableView23apply_and_consume_patchERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEERNS_5GroupE -_ZN5realm10RowIndexesD1Ev -_ZN5realm10RowIndexesD0Ev -_ZNK5realm10RowIndexes14sync_if_neededEv -_ZNK5realm10RowIndexes10is_in_syncEv -_ZN5realm19ColumnBaseWithIndexD2Ev -_ZNK5realm19ColumnBaseWithIndex16has_search_indexEv -_ZNK5realm19ColumnBaseWithIndex16get_search_indexEv -_ZN5realm19ColumnBaseWithIndex16get_search_indexEv -_ZN5realm10ColumnBase39set_search_index_allow_duplicate_valuesEb -_ZN5realm6ColumnIxE18replace_root_arrayENSt3__110unique_ptrINS_5ArrayENS2_14default_deleteIS4_EEEE -_ZNK5realm10ColumnBase21get_subtable_accessorEm -_ZN5realm10ColumnBase25discard_subtable_accessorEm -_ZN5realm10ColumnBase19adj_acc_insert_rowsEmm -_ZN5realm10ColumnBase17adj_acc_erase_rowEm -_ZN5realm10ColumnBase17adj_acc_move_overEmm -_ZN5realm10ColumnBase17adj_acc_swap_rowsEmm -_ZN5realm10ColumnBase24adj_acc_clear_root_tableEv -_ZN5realm10ColumnBase4markEi -_ZN5realm10ColumnBase30bump_link_origin_table_versionEv -_ZN5realm10ColumnBase26do_discard_child_accessorsEv -_ZNK5realm6ColumnIxE7get_valEm -_ZNK5realm14ColumnTemplateIxE14compare_valuesEmm -_ZThn8_NK5realm6ColumnIxE7get_valEm -_ZN5realm12ArrayIntegerD1Ev -_ZN5realm12ArrayIntegerD0Ev -_ZN5realm5Array16update_child_refEmm -_ZNK5realm5Array13get_child_refEm -_ZNK5realm5Array12GetWidthTypeEv -_ZN5realm10LogicErrorD1Ev -_ZN5realm5_impl17NullableOrNothingINS_12ArrayIntegerEE8set_nullERS2_m -_ZN5realm6BpTreeIxE14SetNullHandlerD1Ev -_ZN5realm6BpTreeIxE14SetNullHandler6updateENS_6MemRefEPNS_11ArrayParentEmm -_ZN5realm6BpTreeIxE14SetNullHandlerD0Ev -_ZN5realm6BpTreeIxE17LeafValueInserter11leaf_insertENS_6MemRefERNS_11ArrayParentEmRNS_9AllocatorEmRNS_5Array10TreeInsertIS2_EE -_ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZThn8_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZThn8_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZTv0_n12_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZTv0_n12_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekposENS_4fposI11__mbstate_tEEj -_ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_ -_ZN5realm6BpTreeIxE12EraseHandlerD1Ev -_ZN5realm6BpTreeIxE12EraseHandler15erase_leaf_elemENS_6MemRefEPNS_11ArrayParentEmm -_ZN5realm6BpTreeIxE12EraseHandler12destroy_leafENS_6MemRefE -_ZN5realm6BpTreeIxE12EraseHandler20replace_root_by_leafENS_6MemRefE -_ZN5realm6BpTreeIxE12EraseHandler26replace_root_by_empty_leafEv -_ZN5realm6BpTreeIxE12EraseHandlerD0Ev -_ZN5realm6BpTreeIxE13UpdateHandlerD1Ev -_ZN5realm6BpTreeIxE13UpdateHandler6updateENS_6MemRefEPNS_11ArrayParentEmm -_ZN5realm6BpTreeIxE13UpdateHandlerD0Ev -_ZN5realm10BpTreeBase7destroyEv -_ZN5realm6BpTreeIxE12SliceHandler10slice_leafENS_6MemRefEmmRNS_9AllocatorE -_ZN5realm6ColumnIxE13CreateHandler11create_leafEm -_ZNK5realm5Table10unbind_ptrEv -_ZNKSt3__114default_deleteIN5realm22TableViewHandoverPatchEEclEPS2_ -_ZN5realm13TableViewBaseD2Ev -_ZN5realm13TableViewBaseaSEOS0_ -_ZN5realm11SharedGroup10BadVersionD1Ev -_ZN5realm11SharedGroup10BadVersionD0Ev -_ZNSt3__117bad_function_callD1Ev -_ZNSt3__117bad_function_callD0Ev -.str -.str.1 -.str.2 -.str.3 -.str.4 -.str.5 -.str.6 -.str.7 -.str.8 -.str.9 -.str.10 -.str.11 -.str.12 -.str.13 -.str.14 -.str.15 -.str.16 -.str.17 -.str.18 -.str.19 -.str.20 -.str.21 -.str.22 -.str.23 -.str.24 -.str.25 -.str.26 -.str.27 -.str.28 -.str.29 -.str.30 -.str.31 -.str.32 -.str.33 -.str.34 -.str.35 -.str.36 -.str.37 -.str.39 -.str.40 -.str.41 -.str.42 -.str.43 -Apple LLVM version 7.3.0 (clang-703.0.29) -operator* -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/memory -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release -operator bool -operator= -__libcpp_compressed_pair_imp -__compressed_pair -unique_ptr -get_deleter -forward > -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/type_traits -move > &> -import_from_handover -core/include/realm/group_shared.hpp -function -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/functional -operator[] -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/vector -clear -forward -~bad_function_call -bad_function_call -operator() -~unique_ptr -first -operator-> -forward > -release -move > &> -~BadVersion -BadVersion -import_from_handover -forward > > -second -reset -move *&> -forward -Handover -export_for_handover -load -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/atomic -get -empty -__wrap_iter -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iterator -__unwrap_iter -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/algorithm -__move -move -__annotate_shrink -__destruct_at_end -__wrap_iter -__make_iter -begin -cbegin -base -operator- -erase -operator- -__distance > -distance > -operator== -operator() -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/async_query.cpp -find_if, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/async_query.cpp:78:27)> -end > > -begin > > -size -store -~function -__end_cap -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__split_buffer -capacity -~__split_buffer -__invalidate_all_iterators -__annotate_new -move -swap -move_if_noexcept -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/utility -__construct_backward -data -__annotate_contiguous_container -__annotate_delete -__swap_out_circular_buffer -__alloc -allocate -forward &> -__split_buffer -max_size -__max_size -__recommend -__push_back_slow_path -__done -forward -Callback -Realm/ObjectStore/impl/async_query.hpp -construct -__construct -__RAII_IncreaseAnnotator -push_back -operator!= -move -swap -move -swap -swap -shared_ptr -move &> -~lock_guard -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__mutex_base -lock_guard -forward > > -unlock -core/include/realm/util/thread.hpp -~LockGuard -move *&> -max -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/limits -VersionID -forward -lock -LockGuard -export_for_handover -~Handover -allocator -forward -__vector_base -vector -~shared_ptr -bad_weak_ptr -shared_ptr -shared_from_this -end -__bit_iterator -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__bit_reference -__copy_unaligned >, true> -__to_raw_pointer -min > -min -__copy_aligned >, true> -copy >, true> -operator- -__distance >, true, 0> > -distance >, true, 0> > -__construct_at_end >, true, 0> > -__external_cap_to_internal -__internal_cap_to_external -forward > -select_on_container_copy_construction -~vector -move, std::__1::default_delete > > &> -move, std::__1::default_delete > > &> -move -operator!= -operator== -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/thread -is_for_current_thread -~__vector_base -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.hpp -move -move &> -__move_assign_alloc -deallocate -__move_assign -move &> -__cap -move &> -core/include/realm/views.hpp -max > -max -__allocate -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/new -min > -min -__to_raw_pointer -destroy -__destroy -destroy -__construct_range_forward -__construct_at_end -__unwrap_iter -__copy -copy -__advance -advance -__distance -distance -assign -__copy_assign_alloc -move &> -move -swap -core/include/realm/util/bind_ptr.hpp -bind_ptr -move -move &> -core/include/realm/bptree.hpp -move_assign -core/include/realm/column.hpp -BasicTableRef -core/include/realm/table_ref.hpp -move -core/include/realm/table_view.hpp -is_attached -wants_background_updates -move -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/exception -get_coordinator -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.hpp -~Callback -move &> -operator++ -~SortOrder -move &> -~bind_ptr -move -swap -move &> -~TableViewBase -~TableView -__to_raw_pointer -__destroy -destroy -__atomic_base -atomic -exception_ptr -get_shared_group -forward *> -apply_patch -apply_and_consume_patch -TableView -clone_for_handover -forward -move -forward -forward > *> -forward -QueryHandoverPatch -core/include/realm/handover_defs.hpp -forward -TableViewHandoverPatch -__to_raw_pointer > > -__destroy > > -destroy > > -~QueryHandoverPatch -~LinkViewHandoverPatch -~TableViewHandoverPatch -get_column_base -~RowIndexes -unbind_ptr -core/include/realm/table.hpp -unbind -~BasicTableRef -core/include/realm/link_view.hpp -__to_raw_pointer -__destroy -destroy -__deallocate -__to_raw_pointer -__destroy -destroy -~Sorter -init_from_ref -core/include/realm/array.hpp -get_root_array -get_alloc -~CreateHandler -create -create_array -create_leaf -CreateHandler -forward -forward -Sorter -forward -__vector_base_common -is_in_sync -sync_if_needed -compare_values -get_val -do_discard_child_accessors -operator= > -create_root_from_mem -create_root_from_ref -get_parent -get_ref_from_parent -init_from_parent -refresh_accessor_tree -bump_link_origin_table_version -mark -adj_acc_clear_root_table -adj_acc_swap_rows -adj_acc_move_over -adj_acc_erase_row -adj_acc_insert_rows -discard_subtable_accessor -get_subtable_accessor -update_from_parent -set_ndx_in_parent -get_ndx_in_parent -set_parent -~SliceHandler -slice_leaf -SliceHandler -~DeepArrayDestroyGuard -core/include/realm/impl/destroy_guard.hpp -is_read_only -core/include/realm/alloc.hpp -write -DeepArrayDestroyGuard -detach -clone_deep -replace_root_array -get_mem -get_ref -set_search_index_allow_duplicate_values -get_search_index -insert -core/include/realm/index_string.hpp -populate_search_index -StringIndex -create_search_index -has_search_index -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/array -__unwrap_iter -__unwrap_iter -__copy -copy -core/include/realm/string_data.hpp -get_index_data -~Column -~BpTreeBase -~BpTree -swap_rows_without_updating_index -swap_rows -clear_and_destroy_children -get_type -clear_without_updating_index -~UpdateHandler -update -UpdateHandler -set -core/include/realm/array_integer.hpp -move_last_over -move_last_over_without_updating_index -update_ref -erase -move_last_row_over -~EraseHandler -replace_root_by_empty_leaf -default_delete -forward > -unique_ptr > -move > &> -forward -move -replace_root_by_leaf -free_ -destroy_leaf -has_refs -erase_leaf_elem -EraseHandler -set_header_size -erase_without_updating_index -erase -do_erase -erase_rows -StringData -to_str -insert -adjust -to_size_t -core/include/realm/utilities.hpp -ensure_bptree_offsets -forward -inspect_value, std::__1::allocator >, int> -core/include/realm/util/inspect.hpp -inspect_all, std::__1::allocator >, int> -inspect_all, std::__1::allocator >, unsigned long, int> -terminate -core/include/realm/util/terminate.hpp -bptree_insert::LeafValueInserter> -~basic_stringstream -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iosfwd -forward -inspect_all, std::__1::allocator > > -inspect_all, std::__1::allocator >, unsigned long> -inspect_value, std::__1::allocator >, unsigned long> -inspect_all, std::__1::allocator >, unsigned long, unsigned long> -operator<< > -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ostream -length -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/string -setstate -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ios -failed -widen -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__locale -use_facet > -fill -flags -rdbuf -ostreambuf_iterator -width -basic_string -sputn -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/streambuf -__pad_and_output > -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/locale -__put_character_sequence > -sputc -max > -max -overflow -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/sstream -to_char_type -eq -not_eof -eq_int_type -pbackfail -to_int_type -egptr -underflow -operator long long -seekpos -epptr -pbase -eback -gptr -fpos -pptr -seekoff -~basic_stringbuf -pbump -setp -__get_long_cap -resize -setg -__get_short_size -__get_long_size -addressof -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__functional_base -pointer_to -__get_short_pointer -__get_long_pointer -__is_long -__get_pointer -__to_raw_pointer -str -__zero -basic_stringbuf -basic_ostream -eof -init -basic_istream -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/istream -basic_iostream -ios_base -basic_ios -_ZTv0_n12_NSt3__113basic_ostreamIcNS_11char_traitsIcEEED0Ev -_ZTv0_n12_NSt3__113basic_ostreamIcNS_11char_traitsIcEEED1Ev -_ZTv0_n12_NSt3__113basic_istreamIcNS_11char_traitsIcEEED0Ev -_ZTv0_n12_NSt3__113basic_istreamIcNS_11char_traitsIcEEED1Ev -_ZTv0_n12_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev -_ZTv0_n12_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev -_ZThn8_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev -_ZThn8_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev -basic_stringstream -terminate -~Array -Array -MemRef -leaf_insert -get_is_inner_bptree_node_from_header -translate -bptree_append::LeafValueInserter> -move -insert -null_or_default_value -insert_rows -~SetNullHandler -SetNullHandler -root -root_as_leaf -set_null -null -core/include/realm/null.hpp -update_parent -get_header_from_data -destroy_deep -erase -equal > -equal -safe_equal -is_null -to_str -set -~LogicError -core/include/realm/exceptions.hpp -exception -LogicError -~pair -~MemRef -get_leaf -is_nullable -back -get_bptree_size -is_inner_bptree_node -root_is_leaf -~ColumnBase -~StringIndex -~ColumnBaseWithIndex -forward > -move > &> -BpTreeBase -forward -move -GetWidthType -to_ref -get_as_ref -get_child_ref -update_child_ref -~ArrayInteger -~ArrayParent -ArrayParent -ArrayInteger -BpTree -ColumnTemplateBase -ColumnTemplate -forward -ColumnBase -ColumnBaseWithIndex -_ZThn8_NK5realm6ColumnIxE7is_nullEm -Column -RowIndexes -TableViewBase -forward -forward *> -__thread_id -get_id -SortOrder -get_sort -get_realm -mutex -detatch -attach_to -next_callback -call_callbacks -deliver -prepare_handover -run -is_alive -release_query -unregister -remove_callback -add_callback -~AsyncQuery -AsyncQuery -_ZZN5realm5_impl11CachedRealmC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_08__invokeEPv -_ZZN5realm5_impl11CachedRealmC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_18__invokeEPKv -_ZZN5realm5_impl11CachedRealmC1ERKNSt3__110shared_ptrINS_5RealmEEEbEN3$_28__invokeEPKv -weak_ptr -move &> -Realm/ObjectStore/impl/cached_realm_base.hpp -weak_ptr -CachedRealmBase -move -~CachedRealmBase -~weak_ptr -~RefCountedWeakPointer -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/cached_realm.cpp -__invoke -operator void (*)(const void *) -fetch_add -operator const void *(*)(const void *) -operator void (*)(void *) -notify -~CachedRealm -CachedRealm -_ZNSt3__119basic_ostringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZN12_GLOBAL__N_19notify_fdEi -_ZTv0_n12_NSt3__119basic_ostringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev -_ZNSt3__119basic_ostringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZTv0_n12_NSt3__119basic_ostringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev -_ZN5realm5_impl20ExternalCommitHelper8FdHolderD2Ev -_ZNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEED1Ev -_ZNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEED0Ev -_ZNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEE16__on_zero_sharedEv -_ZNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEE9__executeEv -_ZNSt3__112__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS2_16RealmCoordinatorEE3$_0JEEclEv -_ZNSt3__114__thread_proxyINS_5tupleIJMNS_19__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS5_16RealmCoordinatorEE3$_0JEEEEEFvvEPSB_EEEEEPvSG_ -__func__._ZN5realm5_impl20ExternalCommitHelper6listenEv -__func__._ZN12_GLOBAL__N_19notify_fdEi -_ZTVNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEEE -_ZTSNSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEEE -_ZTINSt3__119__async_assoc_stateIvNS_12__async_funcIZN5realm5_impl20ExternalCommitHelperC1ERNS3_16RealmCoordinatorEE3$_0JEEEEE -forward > *> -move > *&> -__execute -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/future -~__deferred_assoc_state -__set_deferred -__deferred_assoc_state -__make_deferred_assoc_state > -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), void> -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/tuple -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47), false> -__async_func -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -__decay_copy<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -get<1, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> -get<0, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> -move >::*&)()> -__invoke >::*)(), std::__1::__async_assoc_state > *, void> -__thread_execute >::*)(), std::__1::__async_assoc_state > *, 1> -__thread_proxy >::*)(), std::__1::__async_assoc_state > *> > -forward >::*)(), std::__1::__async_assoc_state > *> *> -move >::*)(), std::__1::__async_assoc_state > *> *&> -__tuple_leaf > *, void> -__tuple_leaf >::*)(), void> -__tuple_impl<0, 1, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *, void (std::__1::__async_assoc_state >::*)(), std::__1::__async_assoc_state > *> -tuple >::*)(), std::__1::__async_assoc_state > *, false> -__decay_copy > *> -forward >::*)()> -__decay_copy >::*)()> -thread >::*)(), std::__1::__async_assoc_state > *, void> -forward > *> -move > *&> -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47) &> -name -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/typeinfo -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -__execute<> -__on_zero_shared -~__async_assoc_state -~__assoc_sub_state -move &> -condition_variable -__shared_count -__assoc_sub_state -__async_assoc_state -forward > -__make_async_assoc_state > -__does_policy_contain -async<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/apple/external_commit_helper.cpp:157:47)> -move &> -shrink_to_fit -assign -__set_long_size -__set_long_cap -__set_long_pointer -__align_it<16> -addressof -__set_short_size -__distance -distance -__init -basic_string -__loadword -__do_string_hash -basic_ostringstream -c_str -forward > -get_allocator -operator+, std::__1::allocator > -wait -notify_fd -~FdHolder -Realm/ObjectStore/impl/apple/external_commit_helper.hpp -move -swap -future -move &> -~basic_ostringstream -get_path -Realm/ObjectStore/impl/realm_coordinator.hpp -operator int -FdHolder -notify_others -listen -~ExternalCommitHelper -ExternalCommitHelper -close -operator+= -operator+ -__push_back_slow_path > -__construct_forward > -__construct_backward > -move *&> -swap *> -move_iterator -operator!= *, std::__1::pair *> -__construct_at_end *> > -forward > &> -forward *> -__move_backward *, std::__1::pair *> -move_backward *, std::__1::pair *> -__move_range -forward > -construct, std::__1::pair > -__construct, std::__1::pair > -operator- *, std::__1::pair *> -__wrap_iter *> -__unwrap_iter *> -move &> -__move *, std::__1::pair *> -move *, std::__1::pair *> -__to_raw_pointer > -__destroy > -destroy > -operator- *, const std::__1::pair *> -operator== *, std::__1::pair *> -operator!= *> -pair -forward -pair -add_shifted -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/index_set.cpp -insert_at -do_add -add -find -Realm/ObjectStore/index_set.cpp -_ZN5realm26InvalidPrimaryKeyExceptionD1Ev -_ZN5realm26InvalidPrimaryKeyExceptionD0Ev -_ZNK5realm20ObjectStoreException4whatEv -_ZN5realm31ObjectSchemaValidationExceptionD1Ev -_ZN5realm31ObjectSchemaValidationExceptionD0Ev -_ZN5realm20ObjectStoreExceptionD1Ev -_ZN5realm20ObjectStoreExceptionD0Ev -operator== -operator!= -__push_back_slow_path -operator basic_string, std::__1::allocator > -move -swap -move_if_noexcept -forward -Property -Realm/ObjectStore/property.hpp -construct -__construct -__construct_backward -forward &> -reserve -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/initializer_list -forward -construct -__construct -__construct_range_forward -__construct_at_end -forward -StringData, std::__1::allocator > -move, std::__1::allocator >::__rep, std::__1::allocator > &> -what -Realm/ObjectStore/object_store.hpp -~InvalidPrimaryKeyException -~ObjectSchemaValidationException -~ObjectStoreException -primary_key_property -Realm/ObjectStore/object_schema.hpp -~Property -move -get_name -bind_ptr -BasicTableRef -get_link_target -get_column_type -core/include/realm/array_string.hpp -get_column_count -core/include/realm/spec.hpp -get_column_name -get_public_column_count -has_parent -move &> -__to_raw_pointer -__destroy -destroy -set_primary_key_property -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/object_schema.cpp -property_for_name -ObjectSchema -~ObjectSchema -Realm/ObjectStore/object_schema.cpp -_ZN5realm23SchemaMismatchExceptionD1Ev -_ZN5realm24MissingPropertyExceptionD1Ev -_ZN5realm29MismatchedPropertiesExceptionD1Ev -_ZN5realm26ChangedPrimaryKeyExceptionD1Ev -_ZN5realm22ExtraPropertyExceptionD1Ev -_ZN5realm29InvalidSchemaVersionExceptionD1Ev -_ZN5realm33PropertyTypeNotIndexableExceptionD1Ev -_ZN5realm33DuplicatePrimaryKeyValueExceptionD1Ev -_ZN5realm29ObjectSchemaPropertyExceptionC2ERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_8PropertyE -_ZN5realm31ObjectSchemaValidationExceptionC2ERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE -_ZN5realm29InvalidSchemaVersionExceptionD0Ev -_ZN5realm33DuplicatePrimaryKeyValueExceptionD0Ev -_ZN5realm25SchemaValidationExceptionD1Ev -_ZN5realm25SchemaValidationExceptionD0Ev -_ZN5realm23SchemaMismatchExceptionD0Ev -_ZN5realm33PropertyTypeNotIndexableExceptionD0Ev -_ZN5realm22ExtraPropertyExceptionD0Ev -_ZN5realm24MissingPropertyExceptionD0Ev -_ZN5realm27InvalidNullabilityExceptionD1Ev -_ZN5realm27InvalidNullabilityExceptionD0Ev -_ZN5realm26MissingObjectTypeExceptionD1Ev -_ZN5realm26MissingObjectTypeExceptionD0Ev -_ZN5realm29MismatchedPropertiesExceptionD0Ev -_ZN5realm26ChangedPrimaryKeyExceptionD0Ev -_ZN5realm29DuplicatePrimaryKeysExceptionD1Ev -_ZN5realm29DuplicatePrimaryKeysExceptionD0Ev -_ZN5realm31ObjectSchemaValidationExceptionC2ERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9_ -_ZN5realm29ObjectSchemaPropertyExceptionD1Ev -_ZN5realm29ObjectSchemaPropertyExceptionD0Ev -_ZN12_GLOBAL__N_1L21c_object_table_prefixE -.str.38 -.str.44 -.str.45 -.str.46 -.str.48 -.str.49 -.str.50 -.str.51 -.str.52 -.str.53 -.str.54 -.str.55 -.str.56 -.str.57 -.str.58 -.str.59 -.str.60 -.str.61 -.str.62 -.str.63 -.str.64 -.str.65 -.str.66 -.str.67 -.str.68 -.str.69 -.str.70 -.str.71 -.str.72 -.str.73 -.str.74 -.str.76 -.str.77 -.str.78 -.str.79 -.str.80 -.str.81 -.str.82 -.str.83 -.str.84 -.str.85 -.str.86 -.str.87 -.str.88 -switch.table -~DuplicatePrimaryKeysException -~ChangedPrimaryKeyException -~MismatchedPropertiesException -~MissingObjectTypeException -~InvalidNullabilityException -~MissingPropertyException -~ExtraPropertyException -~PropertyTypeNotIndexableException -~SchemaMismatchException -~SchemaValidationException -~DuplicatePrimaryKeyValueException -~InvalidSchemaVersionException -operator== -operator!= -__construct_range_forward -__construct_at_end -forward > -append -forward -construct -__construct -__construct_range_forward -__construct_at_end -forward > -swap -move -move_if_noexcept -forward -forward -construct -__construct -__construct_range_forward -__construct_at_end -forward > -construct -__construct -__construct_backward -forward &> -__emplace_back_slow_path &> -forward &> -forward -construct &> -__construct &> -emplace_back &> -forward -forward -end -operator!= -operator== -operator!= -move -swap -forward &> -__push_back_slow_path -move -forward -construct -__construct -forward -__emplace_back_slow_path -forward -construct -__construct -emplace_back -__emplace_back_slow_path -forward -construct -__construct -emplace_back -__emplace_back_slow_path -forward -construct -__construct -emplace_back -__emplace_back_slow_path -forward -construct -__construct -emplace_back -operator== -operator!= -__wrap_iter -__construct_forward -__construct_at_end > -__unwrap_iter > -__copy, realm::ObjectSchemaValidationException *> -copy, realm::ObjectSchemaValidationException *> -__unwrap_iter -__move_backward -move_backward -forward -ObjectStoreException -ObjectSchemaValidationException -construct -__construct -operator== -operator!= -__construct_range_forward, realm::ObjectSchemaValidationException *> -__advance > -advance > -operator- -__distance > -distance > -operator- -insert > -move -swap -move -move_if_noexcept -__construct_backward -forward &> -__emplace_back_slow_path -forward -construct -__construct -emplace_back -operator== -operator== -operator!= -forward -operator!=, std::__1::allocator > -~ObjectSchemaPropertyException -string_for_property_type -ObjectSchemaPropertyException -~MigrationException -MigrationException -is_empty -do_get_table -core/include/realm/group.hpp -get_table -~ConstTableView -requires_index -__to_raw_pointer -__destroy -destroy -get_table_name -__to_raw_pointer -__destroy -destroy -copy_property_values -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/object_store.cpp -copy_property_values -copy_property_values -copy_property_values -copy_property_values -copy_property_values -copy_property_values -copy_property_values -compare -operator== > -property_can_be_migrated_to_nullable -property_has_changed -__to_raw_pointer -__destroy -destroy -substr -begins_with -remove -add_empty_row -bind -get_or_add_table -DuplicatePrimaryKeysException -InvalidPrimaryKeyException -ChangedPrimaryKeyException -MismatchedPropertiesException -MissingObjectTypeException -InvalidNullabilityException -MissingPropertyException -ExtraPropertyException -PropertyTypeNotIndexableException -SchemaMismatchException -SchemaValidationException -DuplicatePrimaryKeyValueException -InvalidSchemaVersionException -delete_data_for_object -validate_primary_column_uniqueness -update_indexes -schema_from_group -update_realm_with_schema -needs_update -is_schema_at_version -create_tables -verify_object_schema -verify_schema -table_for_object_type_create_if_needed -table_for_object_type -table_name_for_object_type -object_type_for_table_name -set_primary_key_for_object -get_primary_key_for_object -set_schema_version -get_schema_version -create_metadata_tables -has_metadata_tables -Realm/ObjectStore/object_store.cpp -_ZNSt3__113unordered_mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_8weak_ptrIN5realm5_impl16RealmCoordinatorEEENS_4hashIS6_EENS_8equal_toIS6_EENS4_INS_4pairIKS6_SB_EEEEED1Ev -_ZN5realm18RealmFileExceptionD1Ev -_ZN5realm25MismatchedConfigExceptionD1Ev -_ZNK5realm5_impl15CachedRealmBase28is_cached_for_current_threadEv -_ZN5realm18RealmFileExceptionD0Ev -_ZN5realm25MismatchedConfigExceptionD0Ev -_ZN5realm11SharedGroup15do_advance_readINS_5_impl23NullInstructionObserverEEEbPT_NS0_9VersionIDERNS2_7HistoryE -_ZN5realm5_impl20ChangesetInputStreamD1Ev -_ZN5realm5_impl20ChangesetInputStream10next_blockERPKcS4_ -_ZN5realm5_impl20ChangesetInputStreamD0Ev -_ZN5realm5_impl17TransactLogParser10read_mixedEPNS_5MixedE -_ZN5realm4util6BufferImE7reserveEmm -_ZN5realm5_impl17TransactLogParser14BadTransactLogD1Ev -_ZN5realm4util6BufferImE6resizeEmmmm -_ZN5realm5_impl17TransactLogParser14BadTransactLogD0Ev -_ZNK5realm5_impl17TransactLogParser14BadTransactLog4whatEv -_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl16RealmCoordinatorENS_9allocatorIS3_EEED1Ev -_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl16RealmCoordinatorENS_9allocatorIS3_EEED0Ev -_ZNSt3__120__shared_ptr_emplaceIN5realm5RealmENS_9allocatorIS2_EEED1Ev -_ZNSt3__120__shared_ptr_emplaceIN5realm5RealmENS_9allocatorIS2_EEED0Ev -_ZNSt3__16__sortIRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEvT0_SA_T_ -_ZNSt3__17__sort3IRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEjT0_SA_SA_T_ -_ZNSt3__17__sort4IRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEjT0_SA_SA_SA_T_ -_ZNSt3__17__sort5IRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEjT0_SA_SA_SA_SA_T_ -_ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl16RealmCoordinator37advance_helper_shared_group_to_latestEvE3$_1PNS_10shared_ptrINS2_10AsyncQueryEEEEEbT0_SA_T_ -_GLOBAL__sub_I_realm_coordinator.cpp -_ZL19s_coordinator_mutex -_ZL23s_coordinators_per_path -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp -__push_back_slow_path &> -forward &> -construct, const std::__1::shared_ptr &> -__construct, const std::__1::shared_ptr &> -__insertion_sort_incomplete<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -__insertion_sort_3<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -__sort5<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -__sort4<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -__sort3<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -swap -operator(), std::__1::shared_ptr > -__sort<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &, std::__1::shared_ptr *> -sort *, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59) &> -sort, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/realm_coordinator.cpp:378:59)> -__unwrap_iter, std::__1::allocator > > > > -__unwrap_iter *> > -__move *>, std::__1::back_insert_iterator, std::__1::allocator > > > > -move *>, std::__1::back_insert_iterator, std::__1::allocator > > > > -addressof, std::__1::allocator > > > -back_insert_iterator -back_inserter, std::__1::allocator > > > -operator== *, std::__1::shared_ptr *> -operator!= *> -forward &> -construct, std::__1::shared_ptr &> -__construct, std::__1::shared_ptr &> -__construct_range_forward *, std::__1::shared_ptr *> -__construct_at_end *> -forward > > -~unique_lock -unique_lock -move *&> -swap *> -move_if_noexcept > -__construct_backward *> -forward > &> -__push_back_slow_path > -forward > -construct, std::__1::shared_ptr > -__construct, std::__1::shared_ptr > -operator== *, std::__1::weak_ptr *> -operator!= *> -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__hash_table -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/unordered_map -move *&> -swap *> -move_if_noexcept > -__construct_backward *> -forward > &> -__push_back_slow_path > -forward > -construct, std::__1::weak_ptr > -__construct, std::__1::weak_ptr > -forward *> -pop_back -__hash_const_iterator -forward, std::__1::weak_ptr >, void *> > > > -move, std::__1::weak_ptr >, void *> > > &> -__hash_node_destructor -expired -~enable_shared_from_this -forward *> -forward > -~Schema -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/schema.hpp -forward -move -Schema -forward -make_unique -move -swap -move_if_noexcept -forward -construct -__construct -__construct_backward -forward &> -forward -__emplace_back_slow_path &, bool &> -forward &> -construct &, bool &> -__construct &, bool &> -emplace_back &, bool &> -shared_ptr -forward -__enable_weak_this -addressof > > -allocator -__on_zero_shared_weak -~__shared_ptr_emplace -~__libcpp_compressed_pair_imp -~__compressed_pair -get<0, realm::Realm::Config &&> -forward -get<0, std::__1::allocator &> -__libcpp_compressed_pair_imp &, realm::Realm::Config &&, 0, 0> -move &> -move &> &> -__compressed_pair &, realm::Realm::Config &&> -__tuple_leaf -__tuple_impl<0, realm::Realm::Config &&, realm::Realm::Config> -tuple -forward_as_tuple -__tuple_leaf &, void> -__tuple_impl<0, std::__1::allocator &, std::__1::allocator &> -tuple -forward &> -forward_as_tuple &> -__shared_ptr_emplace -allocator > > -forward > > > > -forward > *> -move > > > &> -__allocator_destructor -make_shared -make_shared -operator== -operator!= -operator== -operator!= -equal, std::__1::__wrap_iter, std::__1::__equal_to > -equal, std::__1::__wrap_iter > -operator== > -operator!= > -forward > -move -forward -make_unique -addressof, std::__1::weak_ptr > > -find > -move -swap -weak_ptr -operator= -__enable_weak_this -addressof > > -allocator -forward > -move &> -__shared_weak_count -__shared_ptr_emplace -allocator > > -forward > > > > -forward > *> -move > > > &> -make_shared<> -make_shared -__destroy > -destroy > -__destroy > -destroy > -forward -__hash_map_iterator -pair, std::__1::weak_ptr >, void *> *>, bool> -forward -forward, std::__1::weak_ptr >, void *> *> > -pair, std::__1::weak_ptr >, void *> *>, bool &, void> -__hash_iterator -addressof, std::__1::weak_ptr >, void *> *> > -ceil -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/cmath -__is_hash_power2 -__clz -__next_hash_pow2 -reset, std::__1::weak_ptr >, void *> **> -__rehash -rehash -max_load_factor -key_eq -__constrain_hash -bucket_count -hash_function -__node_insert_unique -addressof > -construct> -__construct> -addressof > -forward > -construct, std::__1::basic_string > -__construct, std::__1::basic_string > -forward, std::__1::weak_ptr >, void *> > > > -forward, std::__1::weak_ptr >, void *> *> -move, std::__1::weak_ptr >, void *> > > &> -__hash_map_node_destructor -__construct_node_with_key -__unordered_map_equal -forward -__unordered_map_hasher -__hash_node_base -__bucket_list_deallocator -forward, std::__1::weak_ptr >, void *> **> -__hash_table -unordered_map -Realm/ObjectStore/shared_realm.hpp -~ReadLockUnlockGuard -operator() -~Buffer -core/include/realm/util/buffer.hpp -~StringBuffer -core/include/realm/util/string_buffer.hpp -~TransactLogParser -core/include/realm/impl/transact_log.hpp -~ChangesetInputStream -core/include/realm/impl/input_stream.hpp -parse_complete -~BadTransactLog -BadTransactLog -optimize_table -move_group_level_table -rename_group_level_table -erase_group_level_table -insert_group_level_table -select_descriptor -move_column -rename_column -erase_link_column -erase_column -insert_link_column -insert_column -is_valid_data_type -set_link_type -is_valid_link_type -remove_search_index -add_search_index -select_link_list -link_list_clear -link_list_nullify -link_list_erase -link_list_swap -link_list_move -link_list_insert -link_list_set -clear_table -select_table -operator() -reset -unique_ptr -less -core/include/realm/util/safe_int_ops.hpp -int_less_than -int_greater_than -int_multiply_with_overflow_detect -min -sub -int_subtract_with_overflow_detect -int_greater_than_or_equal -int_shift_left_with_overflow_detect -read_int -change_link_targets -insert_empty_rows -erase_substring -insert_substring -nullify_link -set_link -~Mixed -core/include/realm/mixed.hpp -set_mixed -Mixed -set_binary -set_string -get_datetime -core/include/realm/datetime.hpp -set_datetime -set_double -set_float -set_bool -set_int -read_mixed -set_table -DateTime -set_date_time -read_binary -set_string_unique -BinaryData -core/include/realm/binary_data.hpp -read_buffer -read_string -read_double -read_bytes -read_float -cast -cast_to_unsigned -int_subtract_with_overflow_detect -int_greater_than_or_equal -int_shift_left_with_overflow_detect -read_int -set_int_unique -int_subtract_with_overflow_detect -int_greater_than_or_equal -int_shift_left_with_overflow_detect -read_int -cast_to_unsigned -int_subtract_with_overflow_detect -cast -cast_to_unsigned -int_greater_than_or_equal -int_shift_left_with_overflow_detect -read_int -read_char -parse_one -next_input_buffer -has_next -parse -next_block -~NoCopyInputStream -NoCopyInputStream -ChangesetInputStream -Buffer -StringBuffer -forward -unique_ptr -TransactLogParser -ReadLockUnlockGuard -ReadLockInfo -do_advance_read -get_replication -core/include/realm/alloc_slab.hpp -get_history -advance_read -advance_read -core/include/realm/lang_bind_helper.hpp -move -swap -operator(), std::__1::allocator > > > -move &> -version -operator< -__to_raw_pointer > -__destroy > -destroy > -is_for_realm -__libcpp_relaxed_load -use_count -__to_raw_pointer -__destroy -destroy -__to_raw_pointer > -__destroy > -destroy > -forward -forward -forward -enable_shared_from_this -move -realm -is_cached_for_current_thread -~MismatchedConfigException -MismatchedConfigException -~RealmFileException -RealmFileException -code -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/system_error -addressof, std::__1::weak_ptr > > -~__hash_value_type -__destroy, std::__1::weak_ptr > > -destroy, std::__1::weak_ptr > > -__node_alloc -~__hash_table -~unordered_map -process_available_async -advance_to_ready -advance_helper_shared_group_to_latest -move_new_queries_to_main -open_helper_shared_group -run_async_queries -on_change -clean_up_dead_queries -register_query -pin_version -send_commit_notifications -clear_cache -unregister_realm -~RealmCoordinator -RealmCoordinator -update_schema -get_schema -get_existing_coordinator -__cxx_global_var_init.1 -__cxx_global_var_init -_ZN5realm27InvalidTransactionExceptionD1Ev -_ZN5realm18QueryHandoverPatchD2Ev -_ZN5realm13TableViewBaseC2EOS0_ -_ZN5realm27InvalidTransactionExceptionD0Ev -_ZN5realm13TableViewBaseC2ERKS0_ -_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl10AsyncQueryENS_9allocatorIS3_EEED1Ev -_ZNSt3__120__shared_ptr_emplaceIN5realm5_impl10AsyncQueryENS_9allocatorIS3_EEED0Ev -atomic_store -atomic_exchange -atomic_load -operator() -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp -operator() -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:281:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:282:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:283:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:284:22)> -aggregate<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:281:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:282:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:283:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:284:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:272:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:273:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:274:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:275:22)> -aggregate<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:272:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:273:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:274:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:275:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:263:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:264:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:265:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:266:22)> -aggregate<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:263:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:264:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:265:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:266:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:254:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:255:22)> -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:256:22)> -OptionalStorage -core/include/realm/util/optional.hpp -constexpr_move -Optional -operator()<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:257:22)> -aggregate<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:254:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:255:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:256:22), (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.cpp:257:22)> -impl_get_row_ndx -core/include/realm/row.hpp -row_ndx -get_index -table -impl_get_table -forward -__enable_weak_this -addressof > > -allocator -get<0, realm::Results &> -get<0, std::__1::allocator &> -__libcpp_compressed_pair_imp &, realm::Results &, 0, 0> -move &> -move &> &> -__compressed_pair &, realm::Results &> -__tuple_leaf -__tuple_impl<0, realm::Results &, realm::Results &> -forward_as_tuple -__tuple_leaf &, void> -__tuple_impl<0, std::__1::allocator &, std::__1::allocator &> -forward &> -forward_as_tuple &> -__shared_ptr_emplace -allocator > > -forward > > > > -forward > *> -move > > > &> -make_shared -make_shared -config -get_hasrefs_from_header -~DeepArrayRefDestroyGuard -__destroy -destroy -move -swap -__construct_backward -forward &> -forward -__push_back_slow_path -__to_raw_pointer -construct -__construct -register_view -DeepArrayRefDestroyGuard -__construct_range_forward -__construct_at_end -__construct_range_forward -__construct_at_end -move -move > &> -where -get_query -find_first -find_first -find_by_source_ndx -front -forward > -constexpr_move &> -some > -some, realm::BasicRowExpr > -make_optional > -BasicRowExpr -~InvalidTransactionException -InvalidTransactionException -forward > -forward > -move > &> -forward > -move &> -move -core/include/realm/query.hpp -AsyncQueryCancelationToken -~AsyncQueryCancelationToken -UnsupportedColumnTypeException -set_table_view -async -filter -sort -get_object_type -get_tableview -average -sum -index_of -update_tableview -last -validate_write -validate_read -~Results -Results -Realm/ObjectStore/results.cpp -___Z25RLMReplaceClassNameMethodP10objc_classP8NSString_block_invoke -__copy_helper_block_ -__destroy_helper_block_ -___Z28RLMReplaceSharedSchemaMethodP10objc_classP15RLMObjectSchema_block_invoke -__copy_helper_block_.4 -__destroy_helper_block_.5 -_ZL22RLMCreateAccessorClassP10objc_classP15RLMObjectSchemaP8NSStringPFPFvvEP11RLMProperty15RLMAccessorCodeESB_ -_ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode -_ZL17RLMAccessorSetterP11RLMProperty15RLMAccessorCode -_ZL27RLMAccessorStandaloneGetterP11RLMProperty15RLMAccessorCode -_ZL27RLMAccessorStandaloneSetterP11RLMProperty15RLMAccessorCode -_ZL14RLMCoerceToNilIU8__strongP11objc_objectET_S3_ -_ZL19accessorCodeForTypec15RLMPropertyType -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_2 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_3 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_4 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_5 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_6 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_7 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_8 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_9 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_10 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_11 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_12 -__copy_helper_block_.128 -__destroy_helper_block_.129 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke.132 -__copy_helper_block_.133 -__destroy_helper_block_.134 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke.137 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_2.140 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_3.144 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_4.148 -___ZL17RLMAccessorGetterP11RLMProperty15RLMAccessorCode_block_invoke_5.152 -___ZL13RLMMakeSetterIcxEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIcxEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.160 -__destroy_helper_block_.161 -___ZL13RLMMakeSetterIsxEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIsxEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.174 -__destroy_helper_block_.175 -___ZL13RLMMakeSetterIixEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIixEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.180 -__destroy_helper_block_.181 -___ZL13RLMMakeSetterIlxEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIlxEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.186 -__destroy_helper_block_.187 -___ZL13RLMMakeSetterIxxEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIxxEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.192 -__destroy_helper_block_.193 -___ZL13RLMMakeSetterIffEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIffEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.198 -__destroy_helper_block_.199 -___ZL13RLMMakeSetterIddEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIddEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.204 -__destroy_helper_block_.205 -___ZL13RLMMakeSetterIbbEPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIbbEPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.210 -__destroy_helper_block_.211 -___ZL13RLMMakeSetterIU8__strongP8NSStringS2_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongP8NSStringS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.216 -__destroy_helper_block_.217 -_ZZZL13RLMMakeSetterIU8__strongP8NSStringS2_EPFvvEP11RLMPropertyEUb1_ENKUlvE_clEv -___ZL13RLMMakeSetterIU8__strongP6NSDateS2_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongP6NSDateS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.224 -__destroy_helper_block_.225 -___ZL13RLMMakeSetterIU8__strongP6NSDataS2_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongP6NSDataS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.232 -__destroy_helper_block_.233 -_ZZZL13RLMMakeSetterIU8__strongP6NSDataS2_EPFvvEP11RLMPropertyEUb1_ENKUlvE_clEv -___ZL13RLMMakeSetterIU8__strongP13RLMObjectBaseS2_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongP13RLMObjectBaseS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.242 -__destroy_helper_block_.243 -_ZL11RLMSetValueP13RLMObjectBasejS0_ -_ZL26RLMGetLinkedObjectForValueP8RLMRealmP8NSStringP11objc_objectj -___ZL13RLMMakeSetterIU8__strongP8RLMArrayS2_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongP8RLMArrayS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.260 -__destroy_helper_block_.261 -_ZL11RLMSetValueP13RLMObjectBasejPU28objcproto17NSFastEnumeration11objc_object -___ZL13RLMMakeSetterIU8__strongP11objc_objectS2_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongP11objc_objectS2_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.270 -__destroy_helper_block_.271 -_ZL11RLMSetValueP13RLMObjectBasejP11objc_object -___ZL13RLMMakeSetterIU8__strongPU16objcproto6RLMInt8NSNumberS3_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongPU16objcproto6RLMInt8NSNumberS3_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.291 -__destroy_helper_block_.292 -___ZL13RLMMakeSetterIU8__strongPU18objcproto8RLMFloat8NSNumberS3_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongPU18objcproto8RLMFloat8NSNumberS3_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.297 -__destroy_helper_block_.298 -___ZL13RLMMakeSetterIU8__strongPU19objcproto9RLMDouble8NSNumberS3_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongPU19objcproto9RLMDouble8NSNumberS3_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.303 -__destroy_helper_block_.304 -___ZL13RLMMakeSetterIU8__strongPU17objcproto7RLMBool8NSNumberS3_EPFvvEP11RLMProperty_block_invoke -___ZL13RLMMakeSetterIU8__strongPU17objcproto7RLMBool8NSNumberS3_EPFvvEP11RLMProperty_block_invoke_2 -__copy_helper_block_.309 -__destroy_helper_block_.310 -___ZL27RLMAccessorStandaloneGetterP11RLMProperty15RLMAccessorCode_block_invoke -_ZL11RLMSuperSetP13RLMObjectBaseP8NSStringP11objc_object -__copy_helper_block_.317 -__destroy_helper_block_.318 -___ZL27RLMAccessorStandaloneSetterP11RLMProperty15RLMAccessorCode_block_invoke -__copy_helper_block_.324 -__destroy_helper_block_.325 -_ZZ13RLMDynamicSetENK3$_0clEv -_GLOBAL__sub_I_RLMAccessor.mm -__block_descriptor_tmp -OBJC_METH_VAR_NAME_ -OBJC_SELECTOR_REFERENCES_ -OBJC_CLASSLIST_REFERENCES_$_ -OBJC_METH_VAR_NAME_.2 -OBJC_SELECTOR_REFERENCES_.3 -OBJC_CLASS_NAME_ -__block_descriptor_tmp.7 -OBJC_METH_VAR_NAME_.8 -OBJC_SELECTOR_REFERENCES_.9 -_ZL18s_generatedClasses -OBJC_CLASSLIST_REFERENCES_$_.10 -OBJC_METH_VAR_NAME_.11 -OBJC_SELECTOR_REFERENCES_.12 -OBJC_METH_VAR_NAME_.13 -OBJC_SELECTOR_REFERENCES_.14 -_unnamed_cfstring_ -OBJC_METH_VAR_NAME_.16 -OBJC_SELECTOR_REFERENCES_.17 -_unnamed_cfstring_.19 -OBJC_METH_VAR_NAME_.20 -OBJC_SELECTOR_REFERENCES_.21 -_unnamed_cfstring_.23 -_unnamed_cfstring_.25 -OBJC_METH_VAR_NAME_.26 -OBJC_SELECTOR_REFERENCES_.27 -OBJC_METH_VAR_NAME_.28 -OBJC_SELECTOR_REFERENCES_.29 -OBJC_METH_VAR_NAME_.30 -OBJC_SELECTOR_REFERENCES_.31 -OBJC_METH_VAR_NAME_.32 -OBJC_SELECTOR_REFERENCES_.33 -OBJC_CLASSLIST_REFERENCES_$_.34 -OBJC_METH_VAR_NAME_.35 -OBJC_SELECTOR_REFERENCES_.36 -OBJC_METH_VAR_NAME_.37 -OBJC_SELECTOR_REFERENCES_.38 -OBJC_METH_VAR_NAME_.39 -OBJC_SELECTOR_REFERENCES_.40 -OBJC_METH_VAR_NAME_.41 -OBJC_SELECTOR_REFERENCES_.42 -OBJC_METH_VAR_NAME_.43 -OBJC_SELECTOR_REFERENCES_.44 -OBJC_METH_VAR_NAME_.45 -OBJC_SELECTOR_REFERENCES_.46 -OBJC_METH_VAR_NAME_.47 -OBJC_SELECTOR_REFERENCES_.48 -OBJC_METH_VAR_NAME_.49 -OBJC_SELECTOR_REFERENCES_.50 -OBJC_METH_VAR_NAME_.51 -OBJC_SELECTOR_REFERENCES_.52 -_unnamed_cfstring_.54 -OBJC_CLASSLIST_REFERENCES_$_.55 -OBJC_METH_VAR_NAME_.56 -OBJC_SELECTOR_REFERENCES_.57 -_unnamed_cfstring_.59 -OBJC_METH_VAR_NAME_.60 -OBJC_SELECTOR_REFERENCES_.61 -OBJC_METH_VAR_NAME_.62 -OBJC_SELECTOR_REFERENCES_.63 -OBJC_METH_VAR_NAME_.64 -OBJC_SELECTOR_REFERENCES_.65 -OBJC_METH_VAR_NAME_.66 -OBJC_SELECTOR_REFERENCES_.67 -OBJC_METH_VAR_NAME_.68 -OBJC_SELECTOR_REFERENCES_.69 -OBJC_METH_VAR_NAME_.70 -OBJC_SELECTOR_REFERENCES_.71 -OBJC_METH_VAR_NAME_.72 -OBJC_SELECTOR_REFERENCES_.73 -.str.75 -_unnamed_cfstring_.83 -.str.89 -.str.90 -.str.91 -.str.92 -OBJC_METH_VAR_NAME_.93 -OBJC_SELECTOR_REFERENCES_.94 -.str.95 -OBJC_CLASS_NAME_.96 -__block_descriptor_tmp.97 -.str.98 -OBJC_CLASS_NAME_.99 -__block_descriptor_tmp.100 -.str.101 -OBJC_CLASS_NAME_.102 -__block_descriptor_tmp.103 -.str.104 -OBJC_CLASS_NAME_.105 -__block_descriptor_tmp.106 -.str.107 -OBJC_CLASS_NAME_.108 -__block_descriptor_tmp.109 -.str.110 -OBJC_CLASS_NAME_.111 -__block_descriptor_tmp.112 -.str.113 -OBJC_CLASS_NAME_.114 -__block_descriptor_tmp.115 -.str.116 -OBJC_CLASS_NAME_.117 -__block_descriptor_tmp.118 -.str.119 -OBJC_CLASS_NAME_.120 -__block_descriptor_tmp.121 -.str.122 -OBJC_CLASS_NAME_.123 -__block_descriptor_tmp.124 -.str.125 -OBJC_CLASS_NAME_.126 -__block_descriptor_tmp.127 -.str.130 -__block_descriptor_tmp.131 -.str.135 -__block_descriptor_tmp.136 -OBJC_CLASS_NAME_.138 -__block_descriptor_tmp.139 -.str.141 -OBJC_CLASS_NAME_.142 -__block_descriptor_tmp.143 -.str.145 -OBJC_CLASS_NAME_.146 -__block_descriptor_tmp.147 -.str.149 -OBJC_CLASS_NAME_.150 -__block_descriptor_tmp.151 -.str.153 -OBJC_CLASS_NAME_.154 -__block_descriptor_tmp.155 -.str.156 -_unnamed_cfstring_.157 -.str.158 -__block_descriptor_tmp.159 -__block_literal_global -__block_descriptor_tmp.162 -OBJC_METH_VAR_NAME_.163 -OBJC_SELECTOR_REFERENCES_.164 -.str.165 -_unnamed_cfstring_.166 -.str.167 -_unnamed_cfstring_.168 -OBJC_METH_VAR_NAME_.169 -OBJC_SELECTOR_REFERENCES_.170 -.str.171 -__block_descriptor_tmp.172 -__block_literal_global.173 -__block_descriptor_tmp.176 -.str.177 -__block_descriptor_tmp.178 -__block_literal_global.179 -__block_descriptor_tmp.182 -.str.183 -__block_descriptor_tmp.184 -__block_literal_global.185 -__block_descriptor_tmp.188 -.str.189 -__block_descriptor_tmp.190 -__block_literal_global.191 -__block_descriptor_tmp.194 -.str.195 -__block_descriptor_tmp.196 -__block_literal_global.197 -__block_descriptor_tmp.200 -.str.201 -__block_descriptor_tmp.202 -__block_literal_global.203 -__block_descriptor_tmp.206 -.str.207 -__block_descriptor_tmp.208 -__block_literal_global.209 -__block_descriptor_tmp.212 -.str.213 -__block_descriptor_tmp.214 -__block_literal_global.215 -__block_descriptor_tmp.218 -OBJC_METH_VAR_NAME_.219 -OBJC_SELECTOR_REFERENCES_.220 -.str.221 -__block_descriptor_tmp.222 -__block_literal_global.223 -__block_descriptor_tmp.226 -OBJC_METH_VAR_NAME_.227 -OBJC_SELECTOR_REFERENCES_.228 -.str.229 -__block_descriptor_tmp.230 -__block_literal_global.231 -__block_descriptor_tmp.234 -OBJC_METH_VAR_NAME_.235 -OBJC_SELECTOR_REFERENCES_.236 -OBJC_METH_VAR_NAME_.237 -OBJC_SELECTOR_REFERENCES_.238 -.str.239 -__block_descriptor_tmp.240 -__block_literal_global.241 -__block_descriptor_tmp.244 -OBJC_METH_VAR_NAME_.245 -OBJC_SELECTOR_REFERENCES_.246 -.str.247 -_unnamed_cfstring_.248 -OBJC_METH_VAR_NAME_.249 -OBJC_SELECTOR_REFERENCES_.250 -.str.251 -_unnamed_cfstring_.252 -.str.253 -_unnamed_cfstring_.254 -OBJC_METH_VAR_NAME_.255 -OBJC_SELECTOR_REFERENCES_.256 -.str.257 -__block_descriptor_tmp.258 -__block_literal_global.259 -__block_descriptor_tmp.262 -OBJC_METH_VAR_NAME_.263 -OBJC_SELECTOR_REFERENCES_.264 -.str.265 -.str.266 -.str.267 -__block_descriptor_tmp.268 -__block_literal_global.269 -__block_descriptor_tmp.272 -OBJC_METH_VAR_NAME_.273 -OBJC_SELECTOR_REFERENCES_.274 -OBJC_METH_VAR_NAME_.275 -OBJC_SELECTOR_REFERENCES_.276 -OBJC_METH_VAR_NAME_.277 -OBJC_SELECTOR_REFERENCES_.278 -OBJC_METH_VAR_NAME_.279 -OBJC_SELECTOR_REFERENCES_.280 -OBJC_METH_VAR_NAME_.281 -OBJC_SELECTOR_REFERENCES_.282 -.str.283 -_unnamed_cfstring_.284 -OBJC_CLASSLIST_REFERENCES_$_.285 -OBJC_CLASSLIST_REFERENCES_$_.286 -OBJC_CLASSLIST_REFERENCES_$_.287 -.str.288 -__block_descriptor_tmp.289 -__block_literal_global.290 -__block_descriptor_tmp.293 -.str.294 -__block_descriptor_tmp.295 -__block_literal_global.296 -__block_descriptor_tmp.299 -.str.300 -__block_descriptor_tmp.301 -__block_literal_global.302 -__block_descriptor_tmp.305 -.str.306 -__block_descriptor_tmp.307 -__block_literal_global.308 -__block_descriptor_tmp.311 -OBJC_CLASSLIST_REFERENCES_$_.312 -OBJC_METH_VAR_NAME_.313 -OBJC_SELECTOR_REFERENCES_.314 -OBJC_METH_VAR_NAME_.315 -OBJC_SELECTOR_REFERENCES_.316 -__block_descriptor_tmp.319 -OBJC_METH_VAR_NAME_.320 -OBJC_SELECTOR_REFERENCES_.321 -OBJC_METH_VAR_NAME_.322 -OBJC_SELECTOR_REFERENCES_.323 -.str.326 -__block_descriptor_tmp.327 -.str.328 -_unnamed_cfstring_.329 -OBJC_METH_VAR_NAME_.330 -OBJC_SELECTOR_REFERENCES_.331 -OBJC_METH_VAR_NAME_.332 -OBJC_SELECTOR_REFERENCES_.333 -OBJC_METH_VAR_NAME_.334 -OBJC_SELECTOR_REFERENCES_.335 -OBJC_METH_VAR_NAME_.336 -OBJC_SELECTOR_REFERENCES_.337 -OBJC_CLASSLIST_REFERENCES_$_.338 -OBJC_METH_VAR_NAME_.339 -OBJC_SELECTOR_REFERENCES_.340 -OBJC_CLASSLIST_REFERENCES_$_.341 -OBJC_METH_VAR_NAME_.342 -OBJC_SELECTOR_REFERENCES_.343 -OBJC_METH_VAR_NAME_.344 -OBJC_SELECTOR_REFERENCES_.345 -OBJC_CLASSLIST_REFERENCES_$_.346 -OBJC_CLASSLIST_REFERENCES_$_.347 -OBJC_METH_VAR_NAME_.348 -OBJC_SELECTOR_REFERENCES_.349 -.str.350 -_unnamed_cfstring_.351 -.str.352 -_unnamed_cfstring_.353 -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMAccessor.mm -RLMSetValueUnique -RLMWrapSetter<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMAccessor.mm:796:35)> -RLMDynamicCast -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMUtil.hpp -RLMCoerceToNil -RLMGetBoolObject -RLMGetDoubleObject -RLMGetFloatObject -RLMGetIntObject -get_mixed -RLMGetAnyProperty -RLMGetArray -get_link -is_null_link -RLMGetLink -RLMBinaryDataToNSData -get_binary -RLMGetData -RLMDateTimeToNSDate -RLMGetDate -get_string -RLMStringDataToNSString -RLMGetString -get_bool -RLMGetBool -get_double -RLMGetDouble -get_float -RLMGetFloat -get_int -RLMGetLong -accessorCodeForType -RLMAccessorStandaloneSetter -RLMSuperSet -RLMSuperGet -RLMAccessorStandaloneGetter -RLMSetValue -RLMWrapSetter<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMAccessor.mm:531:34)> -RLMMakeSetter *, NSNumber *> -RLMMakeSetter *, NSNumber *> -RLMMakeSetter *, NSNumber *> -RLMMakeSetter *, NSNumber *> -RLMDynamicCast -RLMDynamicCast -RLMDynamicCast -RLMDynamicCast -RLMMakeSetter -get_linklist -RLMMakeSetter -RLMDynamicCast -RLMGetLinkedObjectForValue -RLMMakeSetter -RLMBinaryDataForNSData -RLMMakeSetter -RLMDateTimeForNSDate -RLMMakeSetter -RLMStringDataWithNSString -RLMMakeSetter -RLMMakeSetter -RLMMakeSetter -RLMMakeSetter -RLMMakeSetter -RLMMakeSetter -RLMMakeSetter -RLMMakeSetter -RLMVerifyAttached -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObject_Private.hpp -RLMVerifyInWriteTransaction -RLMMakeSetter -RLMAccessorSetter -RLMAccessorGetter -RLMMarkClassAsGenerated -setterTypeStringForObjcCode -getterTypeStringForObjcCode -RLMIsKindOfClass -RLMCreateAccessorClass -RLMDynamicGet -RLMValidatedGetProperty -RLMDynamicSet -RLMDynamicValidatedSet -RLMStandaloneAccessorClassForObjectClass -RLMAccessorClassForObjectClass -RLMIsGeneratedClass -RLMReplaceSharedSchemaMethod -RLMReplaceClassNameMethod -_ZL11RLMHashDataPKvm -_ZL9RLMSysCtlPijPm -OBJC_CLASSLIST_REFERENCES_$_.1 -OBJC_METH_VAR_NAME_.3 -OBJC_SELECTOR_REFERENCES_.4 -OBJC_METH_VAR_NAME_.5 -OBJC_SELECTOR_REFERENCES_.6 -OBJC_CLASSLIST_REFERENCES_$_.7 -OBJC_METH_VAR_NAME_.15 -OBJC_SELECTOR_REFERENCES_.16 -OBJC_CLASSLIST_REFERENCES_$_.17 -OBJC_METH_VAR_NAME_.18 -OBJC_SELECTOR_REFERENCES_.19 -OBJC_METH_VAR_NAME_.22 -OBJC_SELECTOR_REFERENCES_.23 -OBJC_METH_VAR_NAME_.24 -OBJC_SELECTOR_REFERENCES_.25 -OBJC_CLASSLIST_REFERENCES_$_.32 -OBJC_METH_VAR_NAME_.33 -OBJC_SELECTOR_REFERENCES_.34 -_unnamed_cfstring_.38 -_unnamed_cfstring_.42 -_unnamed_cfstring_.44 -_unnamed_cfstring_.46 -.str.47 -_unnamed_cfstring_.48 -_unnamed_cfstring_.50 -_unnamed_cfstring_.52 -_unnamed_cfstring_.56 -_unnamed_cfstring_.58 -_unnamed_cfstring_.60 -_unnamed_cfstring_.62 -_unnamed_cfstring_.64 -_unnamed_cfstring_.66 -_unnamed_cfstring_.68 -_unnamed_cfstring_.70 -_unnamed_cfstring_.72 -_unnamed_cfstring_.74 -_unnamed_cfstring_.76 -_unnamed_cfstring_.78 -_unnamed_cfstring_.80 -_unnamed_cfstring_.82 -_unnamed_cfstring_.84 -OBJC_METH_VAR_NAME_.85 -OBJC_SELECTOR_REFERENCES_.86 -_unnamed_cfstring_.88 -OBJC_METH_VAR_NAME_.89 -OBJC_SELECTOR_REFERENCES_.90 -_unnamed_cfstring_.92 -.str.93 -_unnamed_cfstring_.94 -_unnamed_cfstring_.96 -OBJC_CLASSLIST_REFERENCES_$_.97 -OBJC_METH_VAR_NAME_.98 -OBJC_SELECTOR_REFERENCES_.99 -.str.100 -OBJC_METH_VAR_NAME_.101 -OBJC_SELECTOR_REFERENCES_.102 -OBJC_METH_VAR_NAME_.103 -OBJC_SELECTOR_REFERENCES_.104 -.str.105 -OBJC_METH_VAR_NAME_.106 -OBJC_SELECTOR_REFERENCES_.107 -RLMOSVersion -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMAnalytics.mm -forward -forward -move -RLMSysCtl -RLMMACAddress -RLMHashData -RLMAnalyticsPayload -RLMSendAnalytics --[RLMArrayHolder .cxx_destruct] --[RLMArrayHolder .cxx_construct] --[RLMArray initWithObjectClassName:] --[RLMArray realm] --[RLMArray firstObject] --[RLMArray lastObject] --[RLMArray addObjects:] --[RLMArray addObject:] --[RLMArray removeLastObject] --[RLMArray objectAtIndexedSubscript:] --[RLMArray setObject:atIndexedSubscript:] --[RLMArray objectAtIndex:] -_ZL22RLMValidateArrayBoundsP8RLMArrayjb --[RLMArray count] --[RLMArray isInvalidated] --[RLMArray countByEnumeratingWithState:objects:count:] --[RLMArray addObjectsFromArray:] -_ZL29RLMValidateMatchingObjectTypeP8RLMArrayP9RLMObject -_ZL11changeArrayP8RLMArray16NSKeyValueChange8_NSRangeU13block_pointerFvvE -__32-[RLMArray addObjectsFromArray:]_block_invoke --[RLMArray insertObject:atIndex:] -_ZL11changeArrayP8RLMArray16NSKeyValueChangejU13block_pointerFvvE -__33-[RLMArray insertObject:atIndex:]_block_invoke -__copy_helper_block_.27 -__destroy_helper_block_.28 --[RLMArray insertObjects:atIndexes:] -_ZL11changeArrayP8RLMArray16NSKeyValueChangeP10NSIndexSetU13block_pointerFvvE -__36-[RLMArray insertObjects:atIndexes:]_block_invoke -__copy_helper_block_.34 -__destroy_helper_block_.35 --[RLMArray removeObjectAtIndex:] -__32-[RLMArray removeObjectAtIndex:]_block_invoke -__copy_helper_block_.37 -__destroy_helper_block_.38 --[RLMArray removeObjectsAtIndexes:] -__35-[RLMArray removeObjectsAtIndexes:]_block_invoke -__copy_helper_block_.42 -__destroy_helper_block_.43 --[RLMArray replaceObjectAtIndex:withObject:] -__44-[RLMArray replaceObjectAtIndex:withObject:]_block_invoke -__copy_helper_block_.45 -__destroy_helper_block_.46 --[RLMArray moveObjectAtIndex:toIndex:] -__38-[RLMArray moveObjectAtIndex:toIndex:]_block_invoke -__copy_helper_block_.50 -__destroy_helper_block_.51 --[RLMArray exchangeObjectAtIndex:withObjectAtIndex:] -__52-[RLMArray exchangeObjectAtIndex:withObjectAtIndex:]_block_invoke -__copy_helper_block_.55 -__destroy_helper_block_.56 --[RLMArray indexOfObject:] --[RLMArray removeAllObjects] -__28-[RLMArray removeAllObjects]_block_invoke -__copy_helper_block_.60 -__destroy_helper_block_.61 --[RLMArray objectsWhere:] --[RLMArray objectsWhere:args:] --[RLMArray valueForKeyPath:] --[RLMArray valueForKey:] --[RLMArray setValue:forKey:] --[RLMArray indexOfObjectWithPredicate:] -__39-[RLMArray indexOfObjectWithPredicate:]_block_invoke -__copy_helper_block_.94 -__destroy_helper_block_.95 --[RLMArray objectsAtIndexes:] --[RLMArray addObserver:forKeyPath:options:context:] --[RLMArray objectsWithPredicate:] --[RLMArray sortedResultsUsingProperty:ascending:] --[RLMArray sortedResultsUsingDescriptors:] --[RLMArray addNotificationBlock:] --[RLMArray indexOfObjectWhere:] --[RLMArray indexOfObjectWhere:args:] --[RLMArray description] --[RLMArray descriptionWithMaxDepth:] --[RLMArray objectClassName] --[RLMArray .cxx_destruct] -+[RLMSortDescriptor sortDescriptorWithProperty:ascending:] --[RLMSortDescriptor reversedSortDescriptor] --[RLMSortDescriptor property] --[RLMSortDescriptor setProperty:] --[RLMSortDescriptor ascending] --[RLMSortDescriptor setAscending:] --[RLMSortDescriptor .cxx_destruct] -l_OBJC_METACLASS_RO_$_RLMArrayHolder -OBJC_METH_VAR_TYPE_ -OBJC_METH_VAR_NAME_.1 -OBJC_METH_VAR_TYPE_.2 -l_OBJC_$_INSTANCE_METHODS_RLMArrayHolder -OBJC_METH_VAR_TYPE_.4 -l_OBJC_$_INSTANCE_VARIABLES_RLMArrayHolder -l_OBJC_CLASS_RO_$_RLMArrayHolder -OBJC_CLASSLIST_SUP_REFS_$_ -OBJC_METH_VAR_NAME_.6 -OBJC_SELECTOR_REFERENCES_.7 -OBJC_METH_VAR_NAME_.10 -OBJC_SELECTOR_REFERENCES_.11 -OBJC_METH_VAR_NAME_.12 -OBJC_SELECTOR_REFERENCES_.13 -OBJC_METH_VAR_NAME_.14 -OBJC_SELECTOR_REFERENCES_.15 -OBJC_CLASSLIST_REFERENCES_$_.22 -OBJC_METH_VAR_NAME_.23 -OBJC_SELECTOR_REFERENCES_.24 -OBJC_METH_VAR_NAME_.25 -OBJC_SELECTOR_REFERENCES_.26 -__block_descriptor_tmp.29 -__block_descriptor_tmp.36 -__block_descriptor_tmp.39 -OBJC_METH_VAR_NAME_.40 -OBJC_SELECTOR_REFERENCES_.41 -__block_descriptor_tmp.44 -__block_descriptor_tmp.47 -OBJC_METH_VAR_NAME_.48 -OBJC_SELECTOR_REFERENCES_.49 -__block_descriptor_tmp.52 -OBJC_METH_VAR_NAME_.53 -OBJC_SELECTOR_REFERENCES_.54 -__block_descriptor_tmp.57 -OBJC_METH_VAR_NAME_.58 -OBJC_SELECTOR_REFERENCES_.59 -__block_descriptor_tmp.62 -OBJC_METH_VAR_NAME_.63 -OBJC_SELECTOR_REFERENCES_.64 -OBJC_CLASSLIST_REFERENCES_$_.65 -OBJC_METH_VAR_NAME_.75 -OBJC_SELECTOR_REFERENCES_.76 -OBJC_METH_VAR_NAME_.77 -OBJC_SELECTOR_REFERENCES_.78 -OBJC_METH_VAR_NAME_.79 -OBJC_SELECTOR_REFERENCES_.80 -OBJC_METH_VAR_NAME_.83 -OBJC_SELECTOR_REFERENCES_.84 -OBJC_CLASSLIST_REFERENCES_$_.85 -OBJC_METH_VAR_NAME_.86 -OBJC_SELECTOR_REFERENCES_.87 -OBJC_METH_VAR_NAME_.88 -OBJC_SELECTOR_REFERENCES_.89 -OBJC_METH_VAR_NAME_.90 -OBJC_SELECTOR_REFERENCES_.91 -OBJC_METH_VAR_NAME_.92 -OBJC_SELECTOR_REFERENCES_.93 -.str.96 -OBJC_METH_VAR_NAME_.100 -OBJC_SELECTOR_REFERENCES_.101 -OBJC_METH_VAR_NAME_.102 -OBJC_SELECTOR_REFERENCES_.103 -_unnamed_cfstring_.105 -OBJC_CLASSLIST_REFERENCES_$_.106 -OBJC_METH_VAR_NAME_.107 -OBJC_SELECTOR_REFERENCES_.108 -OBJC_CLASSLIST_REFERENCES_$_.109 -OBJC_METH_VAR_NAME_.110 -OBJC_SELECTOR_REFERENCES_.111 -OBJC_METH_VAR_NAME_.112 -OBJC_SELECTOR_REFERENCES_.113 -OBJC_METH_VAR_NAME_.114 -OBJC_SELECTOR_REFERENCES_.115 -OBJC_METH_VAR_NAME_.116 -OBJC_SELECTOR_REFERENCES_.117 -OBJC_METH_VAR_NAME_.118 -OBJC_SELECTOR_REFERENCES_.119 -.str.120 -_unnamed_cfstring_.121 -OBJC_CLASSLIST_REFERENCES_$_.122 -.str.123 -_unnamed_cfstring_.124 -OBJC_METH_VAR_NAME_.125 -OBJC_SELECTOR_REFERENCES_.126 -OBJC_METH_VAR_NAME_.127 -OBJC_SELECTOR_REFERENCES_.128 -OBJC_METH_VAR_NAME_.129 -OBJC_SELECTOR_REFERENCES_.130 -.str.131 -_unnamed_cfstring_.132 -.str.133 -_unnamed_cfstring_.134 -OBJC_METH_VAR_NAME_.135 -OBJC_SELECTOR_REFERENCES_.136 -.str.137 -_unnamed_cfstring_.138 -OBJC_METH_VAR_NAME_.139 -OBJC_SELECTOR_REFERENCES_.140 -OBJC_METH_VAR_NAME_.141 -OBJC_SELECTOR_REFERENCES_.142 -OBJC_METH_VAR_NAME_.143 -OBJC_SELECTOR_REFERENCES_.144 -_unnamed_cfstring_.146 -.str.147 -_unnamed_cfstring_.148 -OBJC_CLASSLIST_REFERENCES_$_.149 -OBJC_METH_VAR_NAME_.150 -OBJC_SELECTOR_REFERENCES_.151 -OBJC_CLASS_NAME_.152 -OBJC_METH_VAR_TYPE_.153 -OBJC_METH_VAR_NAME_.154 -OBJC_METH_VAR_NAME_.155 -OBJC_METH_VAR_NAME_.156 -OBJC_METH_VAR_TYPE_.157 -OBJC_METH_VAR_TYPE_.158 -OBJC_METH_VAR_NAME_.159 -OBJC_METH_VAR_TYPE_.160 -OBJC_METH_VAR_TYPE_.161 -OBJC_METH_VAR_TYPE_.162 -OBJC_METH_VAR_TYPE_.163 -OBJC_METH_VAR_NAME_.164 -OBJC_METH_VAR_TYPE_.165 -OBJC_METH_VAR_TYPE_.166 -OBJC_METH_VAR_TYPE_.167 -OBJC_METH_VAR_TYPE_.168 -OBJC_METH_VAR_TYPE_.169 -OBJC_METH_VAR_NAME_.170 -OBJC_METH_VAR_TYPE_.171 -OBJC_METH_VAR_TYPE_.172 -OBJC_METH_VAR_TYPE_.173 -OBJC_METH_VAR_TYPE_.174 -OBJC_METH_VAR_TYPE_.175 -OBJC_METH_VAR_TYPE_.176 -OBJC_METH_VAR_NAME_.177 -OBJC_METH_VAR_TYPE_.178 -OBJC_METH_VAR_TYPE_.179 -OBJC_METH_VAR_TYPE_.180 -OBJC_METH_VAR_NAME_.181 -OBJC_METH_VAR_TYPE_.182 -OBJC_METH_VAR_NAME_.183 -OBJC_METH_VAR_TYPE_.184 -OBJC_CLASS_NAME_.185 -OBJC_METH_VAR_TYPE_.186 -OBJC_CLASS_NAME_.187 -l_OBJC_$_PROTOCOL_INSTANCE_METHODS_NSFastEnumeration -l_OBJC_$_PROTOCOL_METHOD_TYPES_NSFastEnumeration -l_OBJC_PROTOCOL_$_NSFastEnumeration -l_OBJC_LABEL_PROTOCOL_$_NSFastEnumeration -l_OBJC_$_PROTOCOL_REFS_RLMCollection -l_OBJC_$_PROTOCOL_INSTANCE_METHODS_RLMCollection -OBJC_PROP_NAME_ATTR_ -OBJC_PROP_NAME_ATTR_.188 -OBJC_PROP_NAME_ATTR_.189 -OBJC_PROP_NAME_ATTR_.190 -OBJC_PROP_NAME_ATTR_.191 -OBJC_PROP_NAME_ATTR_.192 -l_OBJC_$_PROP_LIST_RLMCollection -l_OBJC_$_PROTOCOL_METHOD_TYPES_RLMCollection -l_OBJC_PROTOCOL_$_RLMCollection -l_OBJC_LABEL_PROTOCOL_$_RLMCollection -l_OBJC_CLASS_PROTOCOLS_$_RLMArray -l_OBJC_METACLASS_RO_$_RLMArray -OBJC_CLASS_NAME_.193 -OBJC_METH_VAR_NAME_.194 -OBJC_METH_VAR_NAME_.195 -OBJC_METH_VAR_TYPE_.196 -OBJC_METH_VAR_NAME_.197 -OBJC_METH_VAR_NAME_.198 -OBJC_METH_VAR_TYPE_.199 -OBJC_METH_VAR_NAME_.200 -OBJC_METH_VAR_TYPE_.201 -OBJC_METH_VAR_NAME_.202 -OBJC_METH_VAR_TYPE_.203 -OBJC_METH_VAR_TYPE_.204 -OBJC_METH_VAR_NAME_.205 -OBJC_METH_VAR_TYPE_.206 -OBJC_METH_VAR_TYPE_.207 -l_OBJC_$_INSTANCE_METHODS_RLMArray -OBJC_METH_VAR_NAME_.208 -OBJC_METH_VAR_TYPE_.209 -OBJC_METH_VAR_NAME_.210 -OBJC_METH_VAR_NAME_.211 -OBJC_METH_VAR_TYPE_.212 -OBJC_METH_VAR_NAME_.213 -OBJC_METH_VAR_TYPE_.214 -l_OBJC_$_INSTANCE_VARIABLES_RLMArray -OBJC_CLASS_NAME_.215 -OBJC_PROP_NAME_ATTR_.216 -OBJC_PROP_NAME_ATTR_.217 -OBJC_PROP_NAME_ATTR_.218 -l_OBJC_$_PROP_LIST_RLMArray -l_OBJC_CLASS_RO_$_RLMArray -OBJC_IVAR_$_RLMSortDescriptor._property -OBJC_IVAR_$_RLMSortDescriptor._ascending -OBJC_CLASS_NAME_.221 -l_OBJC_$_CLASS_METHODS_RLMSortDescriptor -l_OBJC_METACLASS_RO_$_RLMSortDescriptor -OBJC_CLASS_NAME_.222 -OBJC_METH_VAR_NAME_.223 -OBJC_METH_VAR_NAME_.224 -OBJC_METH_VAR_NAME_.225 -OBJC_METH_VAR_NAME_.226 -OBJC_METH_VAR_TYPE_.228 -l_OBJC_$_INSTANCE_METHODS_RLMSortDescriptor -OBJC_METH_VAR_NAME_.229 -OBJC_METH_VAR_TYPE_.230 -OBJC_METH_VAR_NAME_.231 -l_OBJC_$_INSTANCE_VARIABLES_RLMSortDescriptor -OBJC_PROP_NAME_ATTR_.232 -OBJC_PROP_NAME_ATTR_.233 -OBJC_PROP_NAME_ATTR_.234 -OBJC_PROP_NAME_ATTR_.235 -l_OBJC_$_PROP_LIST_RLMSortDescriptor -l_OBJC_CLASS_RO_$_RLMSortDescriptor -.str.236 -_unnamed_cfstring_.237 -.str.238 -_unnamed_cfstring_.239 -OBJC_METH_VAR_NAME_.240 -OBJC_SELECTOR_REFERENCES_.241 -.str.242 -_unnamed_cfstring_.243 -OBJC_METH_VAR_NAME_.244 -OBJC_SELECTOR_REFERENCES_.245 -OBJC_METH_VAR_NAME_.246 -OBJC_SELECTOR_REFERENCES_.247 -OBJC_CLASSLIST_REFERENCES_$_.248 -OBJC_METH_VAR_NAME_.251 -OBJC_SELECTOR_REFERENCES_.252 -OBJC_CLASSLIST_REFERENCES_$_.253 -OBJC_METH_VAR_NAME_.254 -OBJC_SELECTOR_REFERENCES_.255 -OBJC_METH_VAR_NAME_.256 -OBJC_SELECTOR_REFERENCES_.257 -OBJC_LABEL_CLASS_$ -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm:265:8)> -forward > -reset<__strong id *> -unique_ptr<__strong id *> -make_unique -operator() -max > -max -min > -min -~ -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm:71:30)> -changeArray -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm:63:30)> -NSMakeRange -/Applications/Xcode-7.3.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.mm:67:30)> -RLMValidateMatchingObjectType -RLMValidateArrayBounds -forward<__strong id *> --[RLMSortDescriptor .cxx_destruct] --[RLMSortDescriptor setAscending:] --[RLMSortDescriptor ascending] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray.h --[RLMSortDescriptor setProperty:] --[RLMSortDescriptor property] --[RLMSortDescriptor reversedSortDescriptor] -+[RLMSortDescriptor sortDescriptorWithProperty:ascending:] --[RLMArray .cxx_destruct] --[RLMArray objectClassName] --[RLMArray descriptionWithMaxDepth:] --[RLMArray description] --[RLMArray indexOfObjectWhere:args:] --[RLMArray indexOfObjectWhere:] --[RLMArray addNotificationBlock:] --[RLMArray sortedResultsUsingDescriptors:] --[RLMArray sortedResultsUsingProperty:ascending:] --[RLMArray objectsWithPredicate:] --[RLMArray addObserver:forKeyPath:options:context:] --[RLMArray objectsAtIndexes:] --[RLMArray indexOfObjectWithPredicate:] --[RLMArray setValue:forKey:] --[RLMArray valueForKey:] --[RLMArray valueForKeyPath:] --[RLMArray objectsWhere:args:] --[RLMArray objectsWhere:] --[RLMArray removeAllObjects] --[RLMArray indexOfObject:] --[RLMArray exchangeObjectAtIndex:withObjectAtIndex:] --[RLMArray moveObjectAtIndex:toIndex:] --[RLMArray replaceObjectAtIndex:withObject:] --[RLMArray removeObjectsAtIndexes:] --[RLMArray removeObjectAtIndex:] --[RLMArray insertObjects:atIndexes:] --[RLMArray insertObject:atIndex:] --[RLMArray addObjectsFromArray:] --[RLMArray countByEnumeratingWithState:objects:count:] --[RLMArray isInvalidated] --[RLMArray count] --[RLMArray objectAtIndex:] --[RLMArray setObject:atIndexedSubscript:] --[RLMArray objectAtIndexedSubscript:] --[RLMArray removeLastObject] --[RLMArray addObject:] --[RLMArray addObjects:] --[RLMArray lastObject] --[RLMArray firstObject] --[RLMArray realm] --[RLMArray initWithObjectClassName:] --[RLMArrayHolder .cxx_construct] --[RLMArrayHolder .cxx_destruct] -+[RLMArrayLinkView arrayWithObjectClassName:view:realm:key:parentSchema:] -_ZN5realm4util8bind_ptrINS_8LinkViewEEaSERKS3_ --[RLMArrayLinkView realm] --[RLMArrayLinkView count] --[RLMArrayLinkView isInvalidated] --[RLMArrayLinkView isEqual:] --[RLMArrayLinkView hash] --[RLMArrayLinkView countByEnumeratingWithState:objects:count:] --[RLMArrayLinkView objectAtIndex:] -_ZL22RLMValidateArrayBoundsP16RLMArrayLinkViewjb --[RLMArrayLinkView addObject:] -_ZL15RLMInsertObjectP16RLMArrayLinkViewP9RLMObjectj --[RLMArrayLinkView insertObject:atIndex:] --[RLMArrayLinkView insertObjects:atIndexes:] -_ZL11changeArrayP16RLMArrayLinkView16NSKeyValueChangeP10NSIndexSetU13block_pointerFvvE -__44-[RLMArrayLinkView insertObjects:atIndexes:]_block_invoke --[RLMArrayLinkView removeObjectAtIndex:] -_ZL11changeArrayP16RLMArrayLinkView16NSKeyValueChangejU13block_pointerFvvE -__40-[RLMArrayLinkView removeObjectAtIndex:]_block_invoke -__copy_helper_block_.31 -__destroy_helper_block_.32 --[RLMArrayLinkView removeObjectsAtIndexes:] -__43-[RLMArrayLinkView removeObjectsAtIndexes:]_block_invoke -__copy_helper_block_.40 -__destroy_helper_block_.41 --[RLMArrayLinkView addObjectsFromArray:] -_ZL11changeArrayP16RLMArrayLinkView16NSKeyValueChange8_NSRangeU13block_pointerFvvE -__40-[RLMArrayLinkView addObjectsFromArray:]_block_invoke -__copy_helper_block_.43 -__destroy_helper_block_.44 --[RLMArrayLinkView removeAllObjects] -__36-[RLMArrayLinkView removeAllObjects]_block_invoke -__copy_helper_block_.46 -__destroy_helper_block_.47 --[RLMArrayLinkView replaceObjectAtIndex:withObject:] -__52-[RLMArrayLinkView replaceObjectAtIndex:withObject:]_block_invoke -__copy_helper_block_.53 -__destroy_helper_block_.54 --[RLMArrayLinkView moveObjectAtIndex:toIndex:] -__46-[RLMArrayLinkView moveObjectAtIndex:toIndex:]_block_invoke -__copy_helper_block_.56 -__destroy_helper_block_.57 --[RLMArrayLinkView exchangeObjectAtIndex:withObjectAtIndex:] -__60-[RLMArrayLinkView exchangeObjectAtIndex:withObjectAtIndex:]_block_invoke -__copy_helper_block_.59 -__destroy_helper_block_.60 --[RLMArrayLinkView indexOfObject:] --[RLMArrayLinkView valueForKeyPath:] --[RLMArrayLinkView valueForKey:] --[RLMArrayLinkView setValue:forKey:] --[RLMArrayLinkView deleteObjectsFromRealm] -__42-[RLMArrayLinkView deleteObjectsFromRealm]_block_invoke -__copy_helper_block_.80 -__destroy_helper_block_.81 --[RLMArrayLinkView sortedResultsUsingDescriptors:] --[RLMArrayLinkView objectsWithPredicate:] --[RLMArrayLinkView indexOfObjectWithPredicate:] --[RLMArrayLinkView objectsAtIndexes:] --[RLMArrayLinkView addObserver:forKeyPath:options:context:] --[RLMArrayLinkView indexInSource:] --[RLMArrayLinkView tableView] --[RLMArrayLinkView addNotificationBlock:] -__41-[RLMArrayLinkView addNotificationBlock:]_block_invoke -__copy_helper_block_.87 -__destroy_helper_block_.88 -__41-[RLMArrayLinkView addNotificationBlock:]_block_invoke.91 -__copy_helper_block_.92 -__destroy_helper_block_.93 --[RLMArrayLinkView objectSchema] --[RLMArrayLinkView setObjectSchema:] --[RLMArrayLinkView .cxx_destruct] --[RLMArrayLinkView .cxx_construct] -___ZL15RLMInsertObjectP16RLMArrayLinkViewP9RLMObjectj_block_invoke -__copy_helper_block_.179 -__destroy_helper_block_.180 -_ZN5realm7ResultsC2EOS0_ -OBJC_SELECTOR_REFERENCES_.2 -OBJC_IVAR_$_RLMArrayLinkView._objectSchema -OBJC_METH_VAR_NAME_.7 -OBJC_SELECTOR_REFERENCES_.8 -OBJC_METH_VAR_NAME_.9 -OBJC_SELECTOR_REFERENCES_.10 -OBJC_CLASSLIST_REFERENCES_$_.11 -_unnamed_cfstring_.27 -__block_descriptor_tmp.33 -OBJC_METH_VAR_NAME_.34 -OBJC_SELECTOR_REFERENCES_.35 -_unnamed_cfstring_.37 -OBJC_METH_VAR_NAME_.38 -OBJC_SELECTOR_REFERENCES_.39 -__block_descriptor_tmp.42 -__block_descriptor_tmp.45 -__block_descriptor_tmp.48 -__block_descriptor_tmp.55 -__block_descriptor_tmp.58 -__block_descriptor_tmp.61 -_unnamed_cfstring_.63 -_unnamed_cfstring_.67 -_unnamed_cfstring_.69 -OBJC_CLASSLIST_REFERENCES_$_.72 -OBJC_METH_VAR_NAME_.73 -OBJC_SELECTOR_REFERENCES_.74 -OBJC_CLASSLIST_REFERENCES_$_.77 -OBJC_METH_VAR_NAME_.78 -OBJC_SELECTOR_REFERENCES_.79 -__block_descriptor_tmp.82 -__block_descriptor_tmp.90 -__block_descriptor_tmp.94 -OBJC_METH_VAR_NAME_.95 -OBJC_SELECTOR_REFERENCES_.96 -OBJC_METH_VAR_NAME_.97 -l_OBJC_$_CLASS_METHODS_RLMArrayLinkView -OBJC_METH_VAR_TYPE_.99 -OBJC_METH_VAR_TYPE_.101 -OBJC_METH_VAR_TYPE_.102 -OBJC_METH_VAR_TYPE_.103 -OBJC_METH_VAR_NAME_.104 -OBJC_METH_VAR_TYPE_.105 -OBJC_METH_VAR_TYPE_.106 -OBJC_CLASS_NAME_.107 -l_OBJC_$_PROTOCOL_INSTANCE_METHODS_RLMFastEnumerable -OBJC_PROP_NAME_ATTR_.108 -OBJC_PROP_NAME_ATTR_.109 -OBJC_PROP_NAME_ATTR_.110 -OBJC_PROP_NAME_ATTR_.111 -OBJC_PROP_NAME_ATTR_.112 -l_OBJC_$_PROP_LIST_RLMFastEnumerable -l_OBJC_$_PROTOCOL_METHOD_TYPES_RLMFastEnumerable -l_OBJC_PROTOCOL_$_RLMFastEnumerable -l_OBJC_LABEL_PROTOCOL_$_RLMFastEnumerable -l_OBJC_CLASS_PROTOCOLS_$_RLMArrayLinkView -l_OBJC_METACLASS_RO_$_RLMArrayLinkView -OBJC_CLASS_NAME_.113 -OBJC_METH_VAR_TYPE_.115 -OBJC_METH_VAR_TYPE_.117 -OBJC_METH_VAR_TYPE_.119 -OBJC_METH_VAR_NAME_.120 -OBJC_METH_VAR_TYPE_.121 -OBJC_METH_VAR_TYPE_.122 -OBJC_METH_VAR_NAME_.123 -OBJC_METH_VAR_TYPE_.124 -OBJC_METH_VAR_TYPE_.126 -OBJC_METH_VAR_TYPE_.128 -OBJC_METH_VAR_NAME_.130 -OBJC_METH_VAR_NAME_.131 -OBJC_METH_VAR_TYPE_.132 -OBJC_METH_VAR_NAME_.133 -OBJC_METH_VAR_TYPE_.134 -OBJC_METH_VAR_TYPE_.136 -OBJC_METH_VAR_NAME_.137 -OBJC_METH_VAR_NAME_.138 -OBJC_METH_VAR_TYPE_.139 -OBJC_METH_VAR_TYPE_.140 -OBJC_METH_VAR_NAME_.142 -OBJC_METH_VAR_NAME_.144 -OBJC_METH_VAR_NAME_.145 -OBJC_METH_VAR_NAME_.146 -OBJC_METH_VAR_NAME_.147 -OBJC_METH_VAR_TYPE_.148 -OBJC_METH_VAR_TYPE_.149 -OBJC_METH_VAR_NAME_.151 -OBJC_METH_VAR_NAME_.152 -l_OBJC_$_INSTANCE_METHODS_RLMArrayLinkView -OBJC_METH_VAR_NAME_.153 -OBJC_METH_VAR_TYPE_.154 -OBJC_METH_VAR_TYPE_.156 -OBJC_METH_VAR_NAME_.157 -OBJC_METH_VAR_NAME_.161 -l_OBJC_$_INSTANCE_VARIABLES_RLMArrayLinkView -OBJC_PROP_NAME_ATTR_.162 -l_OBJC_$_PROP_LIST_RLMArrayLinkView -l_OBJC_CLASS_RO_$_RLMArrayLinkView -.str.163 -.str.164 -OBJC_METH_VAR_NAME_.167 -OBJC_SELECTOR_REFERENCES_.168 -.str.169 -_unnamed_cfstring_.170 -.str.172 -.str.173 -.str.174 -.str.175 -.str.176 -.str.178 -__block_descriptor_tmp.181 -OBJC_METH_VAR_NAME_.182 -OBJC_SELECTOR_REFERENCES_.183 -.str.184 -_unnamed_cfstring_.185 -OBJC_CLASSLIST_REFERENCES_$_.186 -OBJC_METH_VAR_NAME_.187 -OBJC_SELECTOR_REFERENCES_.188 -OBJC_METH_VAR_NAME_.189 -OBJC_SELECTOR_REFERENCES_.190 -.str.191 -_unnamed_cfstring_.192 -.str.193 -_unnamed_cfstring_.194 -.str.197 -.str.198 -.str.199 -.str.200 -.str.202 -.str.203 -.str.204 -.str.205 -.str.206 -.str.208 -.str.209 -.str.210 -.str.211 -.str.212 -.str.214 -.str.215 -.str.216 -.str.217 -.str.218 -.str.219 -.str.222 -OBJC_SELECTOR_REFERENCES_.224 -OBJC_CLASSLIST_REFERENCES_$_.225 -OBJC_SELECTOR_REFERENCES_.227 -OBJC_METH_VAR_NAME_.228 -OBJC_SELECTOR_REFERENCES_.229 -forward > -move -forward -forward -make_unique -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm:333:8)> -RLMDynamicCast -move -swap -forward -get_version_counter -get_origin_table -move -RLMConvertNotFound -get_target_table -RLMValidateObjectClass -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm:131:30)> -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm:127:30)> -changeArray<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArrayLinkView.mm:135:30)> -RLMLinkViewArrayValidateInWriteTransaction -RLMInsertObject -core/include/realm/column_linkbase.hpp -RLMLinkViewArrayValidateAttached -get_origin_row_index --[RLMArrayLinkView .cxx_construct] --[RLMArrayLinkView .cxx_destruct] --[RLMArrayLinkView setObjectSchema:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMArray_Private.hpp --[RLMArrayLinkView objectSchema] --[RLMArrayLinkView addNotificationBlock:] --[RLMArrayLinkView tableView] --[RLMArrayLinkView indexInSource:] --[RLMArrayLinkView addObserver:forKeyPath:options:context:] --[RLMArrayLinkView objectsAtIndexes:] --[RLMArrayLinkView indexOfObjectWithPredicate:] --[RLMArrayLinkView objectsWithPredicate:] --[RLMArrayLinkView sortedResultsUsingDescriptors:] --[RLMArrayLinkView deleteObjectsFromRealm] --[RLMArrayLinkView setValue:forKey:] --[RLMArrayLinkView valueForKey:] --[RLMArrayLinkView valueForKeyPath:] --[RLMArrayLinkView indexOfObject:] --[RLMArrayLinkView exchangeObjectAtIndex:withObjectAtIndex:] --[RLMArrayLinkView moveObjectAtIndex:toIndex:] --[RLMArrayLinkView replaceObjectAtIndex:withObject:] --[RLMArrayLinkView removeAllObjects] --[RLMArrayLinkView addObjectsFromArray:] --[RLMArrayLinkView removeObjectsAtIndexes:] --[RLMArrayLinkView removeObjectAtIndex:] --[RLMArrayLinkView insertObjects:atIndexes:] --[RLMArrayLinkView insertObject:atIndex:] --[RLMArrayLinkView addObject:] --[RLMArrayLinkView objectAtIndex:] --[RLMArrayLinkView countByEnumeratingWithState:objects:count:] --[RLMArrayLinkView hash] --[RLMArrayLinkView isEqual:] --[RLMArrayLinkView isInvalidated] --[RLMArrayLinkView count] --[RLMArrayLinkView realm] -RLMEnsureArrayObservationInfo -RLMValidateArrayObservationKey -+[RLMArrayLinkView arrayWithObjectClassName:view:realm:key:parentSchema:] -_unnamed_cfstring_.2 -_unnamed_cfstring_.4 -_unnamed_cfstring_.6 -_unnamed_cfstring_.8 -_unnamed_cfstring_.10 -_unnamed_cfstring_.12 -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMConstants.m --[RLMListBase initWithArray:] --[RLMListBase valueForKey:] --[RLMListBase countByEnumeratingWithState:objects:count:] --[RLMListBase objectsAtIndexes:] --[RLMListBase addObserver:forKeyPath:options:context:] --[RLMListBase _rlmArray] --[RLMListBase set_rlmArray:] --[RLMListBase .cxx_destruct] --[RLMListBase .cxx_construct] -OBJC_IVAR_$_RLMListBase.__rlmArray -OBJC_IVAR_$_RLMListBase._observationInfo -OBJC_CLASS_NAME_.9 -l_OBJC_CLASS_PROTOCOLS_$_RLMListBase -l_OBJC_METACLASS_RO_$_RLMListBase -OBJC_CLASS_NAME_.10 -OBJC_METH_VAR_TYPE_.12 -OBJC_METH_VAR_TYPE_.13 -OBJC_METH_VAR_TYPE_.15 -OBJC_METH_VAR_TYPE_.17 -OBJC_METH_VAR_NAME_.19 -OBJC_METH_VAR_TYPE_.20 -l_OBJC_$_INSTANCE_METHODS_RLMListBase -OBJC_METH_VAR_NAME_.21 -OBJC_METH_VAR_TYPE_.22 -OBJC_METH_VAR_TYPE_.24 -l_OBJC_$_INSTANCE_VARIABLES_RLMListBase -OBJC_PROP_NAME_ATTR_.25 -l_OBJC_$_PROP_LIST_RLMListBase -l_OBJC_CLASS_RO_$_RLMListBase --[RLMListBase .cxx_construct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMListBase.mm --[RLMListBase .cxx_destruct] --[RLMListBase set_rlmArray:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMListBase.h --[RLMListBase _rlmArray] --[RLMListBase addObserver:forKeyPath:options:context:] --[RLMListBase objectsAtIndexes:] --[RLMListBase countByEnumeratingWithState:objects:count:] --[RLMListBase valueForKey:] --[RLMListBase initWithArray:] --[RLMMigrationRealm readonly] --[RLMMigrationRealm beginWriteTransaction] --[RLMMigration initWithRealm:oldRealm:] --[RLMMigration oldSchema] --[RLMMigration newSchema] --[RLMMigration enumerateObjects:block:] --[RLMMigration execute:] --[RLMMigration createObject:withValue:] --[RLMMigration createObject:withObject:] --[RLMMigration deleteObject:] --[RLMMigration deleteDataForClassName:] --[RLMMigration oldRealm] --[RLMMigration setOldRealm:] --[RLMMigration realm] --[RLMMigration setRealm:] --[RLMMigration .cxx_destruct] -l_OBJC_METACLASS_RO_$_RLMMigrationRealm -l_OBJC_$_INSTANCE_METHODS_RLMMigrationRealm -l_OBJC_CLASS_RO_$_RLMMigrationRealm -OBJC_IVAR_$_RLMMigration._realm -OBJC_IVAR_$_RLMMigration._oldRealm -OBJC_METH_VAR_NAME_.4 -OBJC_SELECTOR_REFERENCES_.5 -OBJC_CLASS_NAME_.36 -l_OBJC_METACLASS_RO_$_RLMMigration -OBJC_CLASS_NAME_.37 -OBJC_METH_VAR_TYPE_.39 -OBJC_METH_VAR_TYPE_.41 -OBJC_METH_VAR_NAME_.42 -OBJC_METH_VAR_TYPE_.44 -OBJC_METH_VAR_TYPE_.46 -OBJC_METH_VAR_TYPE_.48 -OBJC_METH_VAR_TYPE_.50 -OBJC_METH_VAR_NAME_.52 -l_OBJC_$_INSTANCE_METHODS_RLMMigration -OBJC_METH_VAR_NAME_.54 -OBJC_METH_VAR_TYPE_.55 -l_OBJC_$_INSTANCE_VARIABLES_RLMMigration -OBJC_PROP_NAME_ATTR_.57 -OBJC_PROP_NAME_ATTR_.58 -OBJC_PROP_NAME_ATTR_.59 -OBJC_PROP_NAME_ATTR_.60 -OBJC_PROP_NAME_ATTR_.61 -OBJC_PROP_NAME_ATTR_.62 -l_OBJC_$_PROP_LIST_RLMMigration -l_OBJC_CLASS_RO_$_RLMMigration --[RLMMigration .cxx_destruct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMMigration.mm --[RLMMigration setRealm:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMMigration_Private.h --[RLMMigration realm] --[RLMMigration setOldRealm:] --[RLMMigration oldRealm] --[RLMMigration deleteDataForClassName:] --[RLMMigration deleteObject:] --[RLMMigration createObject:withObject:] --[RLMMigration createObject:withValue:] --[RLMMigration execute:] --[RLMMigration enumerateObjects:block:] --[RLMMigration newSchema] --[RLMMigration oldSchema] --[RLMMigration initWithRealm:oldRealm:] --[RLMMigrationRealm beginWriteTransaction] --[RLMMigrationRealm readonly] --[RLMObject init] --[RLMObject initWithValue:] --[RLMObject initWithObject:] -+[RLMObject createInDefaultRealmWithValue:] -+[RLMObject createInDefaultRealmWithObject:] -+[RLMObject createInRealm:withValue:] -+[RLMObject createInRealm:withObject:] -+[RLMObject createOrUpdateInDefaultRealmWithValue:] -+[RLMObject createOrUpdateInDefaultRealmWithObject:] -+[RLMObject createOrUpdateInRealm:withValue:] -+[RLMObject createOrUpdateInRealm:withObject:] --[RLMObject objectForKeyedSubscript:] --[RLMObject setObject:forKeyedSubscript:] -+[RLMObject allObjects] -+[RLMObject allObjectsInRealm:] -+[RLMObject objectsWhere:] -+[RLMObject objectsWhere:args:] -+[RLMObject objectsInRealm:where:] -+[RLMObject objectsInRealm:where:args:] -+[RLMObject objectsWithPredicate:] -+[RLMObject objectsInRealm:withPredicate:] -+[RLMObject objectForPrimaryKey:] -+[RLMObject objectInRealm:forPrimaryKey:] --[RLMObject linkingObjectsOfClass:forProperty:] --[RLMObject isEqualToObject:] -+[RLMObject className] -+[RLMObject indexedProperties] -+[RLMObject defaultPropertyValues] -+[RLMObject primaryKey] -+[RLMObject ignoredProperties] -+[RLMObject requiredProperties] -+[RLMDynamicObject shouldIncludeInDefaultSchema] --[RLMDynamicObject valueForUndefinedKey:] --[RLMDynamicObject setValue:forUndefinedKey:] -OBJC_CLASSLIST_REFERENCES_$_.26 -OBJC_METH_VAR_NAME_.27 -OBJC_SELECTOR_REFERENCES_.28 -OBJC_CLASSLIST_REFERENCES_$_.29 -_unnamed_cfstring_.31 -OBJC_CLASSLIST_REFERENCES_$_.36 -OBJC_CLASSLIST_REFERENCES_$_.45 -OBJC_METH_VAR_NAME_.46 -OBJC_SELECTOR_REFERENCES_.47 -OBJC_CLASSLIST_SUP_REFS_$_.48 -OBJC_METH_VAR_NAME_.57 -OBJC_METH_VAR_TYPE_.58 -OBJC_METH_VAR_NAME_.59 -OBJC_METH_VAR_TYPE_.60 -OBJC_METH_VAR_NAME_.61 -OBJC_METH_VAR_NAME_.65 -OBJC_METH_VAR_NAME_.67 -l_OBJC_$_CLASS_METHODS_RLMObject -l_OBJC_METACLASS_RO_$_RLMObject -OBJC_METH_VAR_NAME_.69 -OBJC_METH_VAR_TYPE_.71 -OBJC_METH_VAR_TYPE_.74 -l_OBJC_$_INSTANCE_METHODS_RLMObject -OBJC_PROP_NAME_ATTR_.75 -OBJC_PROP_NAME_ATTR_.76 -OBJC_PROP_NAME_ATTR_.77 -OBJC_PROP_NAME_ATTR_.78 -OBJC_PROP_NAME_ATTR_.79 -l_OBJC_$_PROP_LIST_RLMObject -l_OBJC_CLASS_RO_$_RLMObject -OBJC_CLASS_NAME_.80 -OBJC_METH_VAR_NAME_.81 -OBJC_METH_VAR_TYPE_.82 -l_OBJC_$_CLASS_METHODS_RLMDynamicObject -l_OBJC_METACLASS_RO_$_RLMDynamicObject -OBJC_METH_VAR_NAME_.84 -l_OBJC_$_INSTANCE_METHODS_RLMDynamicObject -l_OBJC_CLASS_RO_$_RLMDynamicObject --[RLMDynamicObject setValue:forUndefinedKey:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObject.mm --[RLMDynamicObject valueForUndefinedKey:] -+[RLMDynamicObject shouldIncludeInDefaultSchema] -+[RLMObject requiredProperties] -+[RLMObject ignoredProperties] -+[RLMObject primaryKey] -+[RLMObject defaultPropertyValues] -+[RLMObject indexedProperties] -+[RLMObject className] --[RLMObject isEqualToObject:] --[RLMObject linkingObjectsOfClass:forProperty:] -+[RLMObject objectInRealm:forPrimaryKey:] -+[RLMObject objectForPrimaryKey:] -+[RLMObject objectsInRealm:withPredicate:] -+[RLMObject objectsWithPredicate:] -+[RLMObject objectsInRealm:where:args:] -+[RLMObject objectsInRealm:where:] -+[RLMObject objectsWhere:args:] -+[RLMObject objectsWhere:] -+[RLMObject allObjectsInRealm:] -+[RLMObject allObjects] --[RLMObject setObject:forKeyedSubscript:] --[RLMObject objectForKeyedSubscript:] -+[RLMObject createOrUpdateInRealm:withObject:] -+[RLMObject createOrUpdateInRealm:withValue:] -+[RLMObject createOrUpdateInDefaultRealmWithObject:] -+[RLMObject createOrUpdateInDefaultRealmWithValue:] -+[RLMObject createInRealm:withObject:] -+[RLMObject createInRealm:withValue:] -+[RLMObject createInDefaultRealmWithObject:] -+[RLMObject createInDefaultRealmWithValue:] --[RLMObject initWithObject:] --[RLMObject initWithValue:] --[RLMObject init] --[RLMObjectBase init] -_ZL26RLMInitializedObjectSchemaP13RLMObjectBase --[RLMObjectBase initWithValue:schema:] -_ZL29RLMValidatedObjectForPropertyP11objc_objectP11RLMPropertyP9RLMSchema --[RLMObjectBase initWithRealm:schema:] --[RLMObjectBase valueForKey:] --[RLMObjectBase valueForUndefinedKey:] --[RLMObjectBase setValue:forUndefinedKey:] -+[RLMObjectBase className] -+[RLMObjectBase sharedSchema] -+[RLMObjectBase objectUtilClass:] --[RLMObjectBase description] --[RLMObjectBase descriptionWithMaxDepth:] --[RLMObjectBase realm] --[RLMObjectBase objectSchema] --[RLMObjectBase isInvalidated] --[RLMObjectBase isEqual:] --[RLMObjectBase hash] -+[RLMObjectBase shouldIncludeInDefaultSchema] --[RLMObjectBase mutableArrayValueForKey:] --[RLMObjectBase addObserver:forKeyPath:options:context:] --[RLMObjectBase removeObserver:forKeyPath:] --[RLMObjectBase observationInfo] --[RLMObjectBase setObservationInfo:] -+[RLMObjectBase automaticallyNotifiesObserversForKey:] --[RLMObjectBase .cxx_destruct] --[RLMObjectBase .cxx_construct] -+[RLMObjectUtil ignoredPropertiesForClass:] -+[RLMObjectUtil indexedPropertiesForClass:] -+[RLMObjectUtil getGenericListPropertyNames:] -+[RLMObjectUtil initializeListProperty:property:array:] -+[RLMObjectUtil initializeOptionalProperty:property:] -+[RLMObjectUtil getOptionalProperties:] -+[RLMObjectUtil requiredPropertiesForClass:] -_ZN5realm8BasicRowINS_5TableEED2Ev -OBJC_METH_VAR_NAME_.17 -OBJC_SELECTOR_REFERENCES_.18 -OBJC_SELECTOR_REFERENCES_.20 -OBJC_SELECTOR_REFERENCES_.22 -l_OBJC_PROTOCOL_REFERENCE_$_NSFastEnumeration -OBJC_METH_VAR_NAME_.29 -OBJC_SELECTOR_REFERENCES_.30 -OBJC_METH_VAR_NAME_.31 -OBJC_SELECTOR_REFERENCES_.32 -OBJC_CLASSLIST_REFERENCES_$_.43 -OBJC_METH_VAR_NAME_.44 -OBJC_SELECTOR_REFERENCES_.45 -_unnamed_cfstring_.51 -OBJC_SELECTOR_REFERENCES_.53 -_unnamed_cfstring_.55 -OBJC_CLASSLIST_REFERENCES_$_.56 -OBJC_SELECTOR_REFERENCES_.60 -OBJC_SELECTOR_REFERENCES_.62 -OBJC_METH_VAR_NAME_.91 -OBJC_SELECTOR_REFERENCES_.92 -OBJC_SELECTOR_REFERENCES_.98 -OBJC_METH_VAR_NAME_.99 -OBJC_SELECTOR_REFERENCES_.100 -OBJC_CLASSLIST_REFERENCES_$_.101 -OBJC_SELECTOR_REFERENCES_.105 -OBJC_METH_VAR_NAME_.108 -OBJC_SELECTOR_REFERENCES_.109 -_ZZ54+[RLMObjectBase automaticallyNotifiesObserversForKey:]E19accessorClassPrefix -OBJC_CLASSLIST_SUP_REFS_$_.112 -OBJC_METH_VAR_NAME_.113 -OBJC_SELECTOR_REFERENCES_.114 -OBJC_CLASS_NAME_.115 -OBJC_METH_VAR_TYPE_.116 -OBJC_METH_VAR_NAME_.117 -OBJC_METH_VAR_TYPE_.118 -OBJC_METH_VAR_NAME_.119 -OBJC_METH_VAR_TYPE_.120 -l_OBJC_$_CLASS_METHODS_RLMObjectBase -l_OBJC_METACLASS_RO_$_RLMObjectBase -OBJC_CLASS_NAME_.122 -OBJC_METH_VAR_TYPE_.127 -OBJC_METH_VAR_TYPE_.131 -OBJC_METH_VAR_TYPE_.138 -l_OBJC_$_INSTANCE_METHODS_RLMObjectBase -OBJC_METH_VAR_NAME_.140 -OBJC_METH_VAR_TYPE_.141 -OBJC_METH_VAR_TYPE_.143 -OBJC_METH_VAR_TYPE_.145 -OBJC_METH_VAR_TYPE_.147 -l_OBJC_$_INSTANCE_VARIABLES_RLMObjectBase -OBJC_PROP_NAME_ATTR_.148 -l_OBJC_$_PROP_LIST_RLMObjectBase -l_OBJC_CLASS_RO_$_RLMObjectBase -_unnamed_cfstring_.150 -OBJC_SELECTOR_REFERENCES_.152 -_unnamed_cfstring_.154 -OBJC_SELECTOR_REFERENCES_.156 -.str.157 -_unnamed_cfstring_.158 -OBJC_SELECTOR_REFERENCES_.160 -OBJC_SELECTOR_REFERENCES_.162 -_unnamed_cfstring_.164 -OBJC_METH_VAR_NAME_.165 -OBJC_SELECTOR_REFERENCES_.166 -OBJC_CLASSLIST_REFERENCES_$_.169 -OBJC_SELECTOR_REFERENCES_.171 -OBJC_METH_VAR_NAME_.172 -OBJC_SELECTOR_REFERENCES_.173 -OBJC_METH_VAR_NAME_.174 -OBJC_SELECTOR_REFERENCES_.175 -OBJC_METH_VAR_NAME_.176 -OBJC_SELECTOR_REFERENCES_.177 -OBJC_CLASSLIST_REFERENCES_$_.178 -.str.179 -_unnamed_cfstring_.180 -.str.181 -_unnamed_cfstring_.182 -_ZZ18RLMObjectUtilClassE14objectUtilObjc -_ZGVZ18RLMObjectUtilClassE14objectUtilObjc -OBJC_CLASSLIST_REFERENCES_$_.183 -_ZZ18RLMObjectUtilClassE15objectUtilSwift -_ZGVZ18RLMObjectUtilClassE15objectUtilSwift -OBJC_METH_VAR_NAME_.186 -OBJC_SELECTOR_REFERENCES_.187 -OBJC_METH_VAR_NAME_.188 -OBJC_SELECTOR_REFERENCES_.189 -OBJC_METH_VAR_NAME_.190 -OBJC_SELECTOR_REFERENCES_.191 -OBJC_CLASS_NAME_.192 -OBJC_METH_VAR_NAME_.193 -OBJC_METH_VAR_TYPE_.194 -OBJC_METH_VAR_NAME_.196 -OBJC_METH_VAR_TYPE_.198 -OBJC_METH_VAR_NAME_.199 -OBJC_METH_VAR_NAME_.201 -l_OBJC_$_CLASS_METHODS_RLMObjectUtil -l_OBJC_METACLASS_RO_$_RLMObjectUtil -l_OBJC_CLASS_RO_$_RLMObjectUtil -OBJC_SELECTOR_REFERENCES_.203 -OBJC_METH_VAR_NAME_.204 -OBJC_SELECTOR_REFERENCES_.205 -OBJC_METH_VAR_NAME_.206 -OBJC_SELECTOR_REFERENCES_.207 -OBJC_SELECTOR_REFERENCES_.209 -OBJC_SELECTOR_REFERENCES_.210 -OBJC_SELECTOR_REFERENCES_.212 -_unnamed_cfstring_.214 -OBJC_CLASSLIST_REFERENCES_$_.215 -OBJC_CLASSLIST_REFERENCES_$_.216 -OBJC_METH_VAR_NAME_.217 -OBJC_SELECTOR_REFERENCES_.218 -OBJC_CLASSLIST_REFERENCES_$_.221 -get_backlink -get_backlink_count -~RowBase -~BasicRow -RowBase -BasicRow -forward -make_unique -RLMDynamicCast -RLMValidatedObjectForProperty -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectBase.mm -RLMInitializedObjectSchema -+[RLMObjectUtil requiredPropertiesForClass:] -+[RLMObjectUtil getOptionalProperties:] -+[RLMObjectUtil initializeOptionalProperty:property:] -+[RLMObjectUtil initializeListProperty:property:array:] -+[RLMObjectUtil getGenericListPropertyNames:] -+[RLMObjectUtil indexedPropertiesForClass:] -+[RLMObjectUtil ignoredPropertiesForClass:] -RLMObjectUtilClass -RLMValidatedValueForProperty -RLMObjectBaseAreEqual -RLMObjectBaseSetObjectForKeyedSubscript -RLMObjectBaseObjectForKeyedSubscript -RLMObjectBaseLinkingObjectsOfClass -RLMObjectBaseObjectSchema -RLMObjectBaseSetObjectSchema -RLMObjectBaseRealm -RLMObjectBaseSetRealm --[RLMObjectBase .cxx_construct] --[RLMObjectBase .cxx_destruct] -+[RLMObjectBase automaticallyNotifiesObserversForKey:] --[RLMObjectBase setObservationInfo:] --[RLMObjectBase observationInfo] --[RLMObjectBase removeObserver:forKeyPath:] --[RLMObjectBase addObserver:forKeyPath:options:context:] --[RLMObjectBase mutableArrayValueForKey:] -+[RLMObjectBase shouldIncludeInDefaultSchema] --[RLMObjectBase hash] --[RLMObjectBase isEqual:] --[RLMObjectBase isInvalidated] --[RLMObjectBase objectSchema] --[RLMObjectBase realm] --[RLMObjectBase descriptionWithMaxDepth:] --[RLMObjectBase description] -+[RLMObjectBase objectUtilClass:] -+[RLMObjectBase sharedSchema] -+[RLMObjectBase className] --[RLMObjectBase setValue:forUndefinedKey:] --[RLMObjectBase valueForUndefinedKey:] --[RLMObjectBase valueForKey:] --[RLMObjectBase initWithRealm:schema:] --[RLMObjectBase initWithValue:schema:] --[RLMObjectBase init] --[RLMObjectSchema initWithClassName:objectClass:properties:] --[RLMObjectSchema objectForKeyedSubscript:] --[RLMObjectSchema setProperties:] --[RLMObjectSchema setPrimaryKeyProperty:] -+[RLMObjectSchema schemaForObjectClass:] -__40+[RLMObjectSchema schemaForObjectClass:]_block_invoke -+[RLMObjectSchema propertiesForClass:isSwift:] -__46+[RLMObjectSchema propertiesForClass:isSwift:]_block_invoke -__copy_helper_block_.136 -__destroy_helper_block_.137 -__46+[RLMObjectSchema propertiesForClass:isSwift:]_block_invoke.150 -__46+[RLMObjectSchema propertiesForClass:isSwift:]_block_invoke_2 -__copy_helper_block_.151 -__destroy_helper_block_.152 -__copy_helper_block_.162 -__destroy_helper_block_.163 --[RLMObjectSchema copyWithZone:] --[RLMObjectSchema shallowCopy] --[RLMObjectSchema isEqualToObjectSchema:] --[RLMObjectSchema description] --[RLMObjectSchema table] --[RLMObjectSchema setTable:] --[RLMObjectSchema objectStoreCopy] -+[RLMObjectSchema objectSchemaForObjectStoreSchema:] --[RLMObjectSchema sortPropertiesByColumn] -__41-[RLMObjectSchema sortPropertiesByColumn]_block_invoke --[RLMObjectSchema propertiesInDeclaredOrder] -__44-[RLMObjectSchema propertiesInDeclaredOrder]_block_invoke --[RLMObjectSchema properties] --[RLMObjectSchema className] --[RLMObjectSchema setClassName:] --[RLMObjectSchema primaryKeyProperty] --[RLMObjectSchema propertiesByName] --[RLMObjectSchema setPropertiesByName:] --[RLMObjectSchema isSwiftClass] --[RLMObjectSchema setIsSwiftClass:] --[RLMObjectSchema objectClass] --[RLMObjectSchema setObjectClass:] --[RLMObjectSchema accessorClass] --[RLMObjectSchema setAccessorClass:] --[RLMObjectSchema standaloneClass] --[RLMObjectSchema setStandaloneClass:] --[RLMObjectSchema realm] --[RLMObjectSchema setRealm:] --[RLMObjectSchema .cxx_destruct] --[RLMObjectSchema .cxx_construct] -OBJC_IVAR_$_RLMObjectSchema._propertiesByName -OBJC_IVAR_$_RLMObjectSchema._properties -OBJC_IVAR_$_RLMObjectSchema._propertiesInDeclaredOrder -OBJC_IVAR_$_RLMObjectSchema._primaryKeyProperty -OBJC_CLASSLIST_REFERENCES_$_.37 -OBJC_CLASSLIST_REFERENCES_$_.42 -OBJC_CLASSLIST_REFERENCES_$_.49 -OBJC_METH_VAR_NAME_.50 -OBJC_SELECTOR_REFERENCES_.51 -OBJC_CLASSLIST_REFERENCES_$_.54 -OBJC_SELECTOR_REFERENCES_.66 -OBJC_SELECTOR_REFERENCES_.68 -OBJC_SELECTOR_REFERENCES_.82 -_unnamed_cfstring_.86 -OBJC_METH_VAR_NAME_.87 -OBJC_SELECTOR_REFERENCES_.88 -_unnamed_cfstring_.90 -OBJC_CLASSLIST_REFERENCES_$_.93 -.str.94 -_unnamed_cfstring_.95 -OBJC_METH_VAR_NAME_.96 -OBJC_SELECTOR_REFERENCES_.97 -_unnamed_cfstring_.99 -.str.102 -_unnamed_cfstring_.103 -OBJC_CLASSLIST_REFERENCES_$_.110 -OBJC_METH_VAR_NAME_.111 -OBJC_SELECTOR_REFERENCES_.112 -OBJC_METH_VAR_NAME_.115 -OBJC_SELECTOR_REFERENCES_.116 -OBJC_SELECTOR_REFERENCES_.118 -OBJC_SELECTOR_REFERENCES_.120 -OBJC_CLASSLIST_REFERENCES_$_.121 -OBJC_METH_VAR_NAME_.122 -OBJC_SELECTOR_REFERENCES_.123 -OBJC_METH_VAR_NAME_.124 -OBJC_SELECTOR_REFERENCES_.125 -OBJC_METH_VAR_NAME_.126 -OBJC_SELECTOR_REFERENCES_.127 -OBJC_METH_VAR_NAME_.128 -OBJC_SELECTOR_REFERENCES_.129 -OBJC_SELECTOR_REFERENCES_.131 -OBJC_METH_VAR_NAME_.132 -OBJC_SELECTOR_REFERENCES_.133 -OBJC_METH_VAR_NAME_.134 -OBJC_SELECTOR_REFERENCES_.135 -.str.138 -OBJC_SELECTOR_REFERENCES_.141 -OBJC_SELECTOR_REFERENCES_.143 -OBJC_SELECTOR_REFERENCES_.145 -OBJC_SELECTOR_REFERENCES_.147 -OBJC_METH_VAR_NAME_.148 -OBJC_SELECTOR_REFERENCES_.149 -__block_descriptor_tmp.153 -OBJC_SELECTOR_REFERENCES_.155 -OBJC_SELECTOR_REFERENCES_.157 -OBJC_METH_VAR_NAME_.158 -OBJC_SELECTOR_REFERENCES_.159 -OBJC_METH_VAR_NAME_.160 -OBJC_SELECTOR_REFERENCES_.161 -__block_descriptor_tmp.165 -OBJC_METH_VAR_NAME_.166 -OBJC_SELECTOR_REFERENCES_.167 -OBJC_METH_VAR_NAME_.168 -OBJC_SELECTOR_REFERENCES_.169 -.str.170 -_unnamed_cfstring_.171 -_unnamed_cfstring_.173 -OBJC_IVAR_$_RLMObjectSchema._objectClass -OBJC_IVAR_$_RLMObjectSchema._className -OBJC_IVAR_$_RLMObjectSchema._accessorClass -OBJC_IVAR_$_RLMObjectSchema._standaloneClass -OBJC_IVAR_$_RLMObjectSchema._isSwiftClass -OBJC_METH_VAR_NAME_.179 -OBJC_SELECTOR_REFERENCES_.180 -OBJC_SELECTOR_REFERENCES_.182 -OBJC_METH_VAR_NAME_.184 -OBJC_SELECTOR_REFERENCES_.185 -.str.186 -_unnamed_cfstring_.187 -.str.190 -_unnamed_cfstring_.191 -.str.192 -_unnamed_cfstring_.193 -OBJC_SELECTOR_REFERENCES_.195 -OBJC_SELECTOR_REFERENCES_.197 -_unnamed_cfstring_.199 -OBJC_IVAR_$_RLMObjectSchema._table -OBJC_IVAR_$_RLMObjectSchema._realm -OBJC_SELECTOR_REFERENCES_.201 -OBJC_METH_VAR_NAME_.203 -OBJC_SELECTOR_REFERENCES_.204 -OBJC_SELECTOR_REFERENCES_.206 -_unnamed_cfstring_.208 -OBJC_CLASSLIST_REFERENCES_$_.209 -__block_descriptor_tmp.211 -OBJC_METH_VAR_NAME_.212 -OBJC_SELECTOR_REFERENCES_.213 -OBJC_METH_VAR_NAME_.214 -OBJC_SELECTOR_REFERENCES_.215 -__block_descriptor_tmp.216 -__block_literal_global.217 -OBJC_CLASS_NAME_.218 -OBJC_METH_VAR_TYPE_.220 -OBJC_METH_VAR_NAME_.221 -OBJC_METH_VAR_TYPE_.222 -l_OBJC_$_CLASS_METHODS_RLMObjectSchema -OBJC_METH_VAR_TYPE_.224 -OBJC_CLASS_NAME_.225 -l_OBJC_$_PROTOCOL_INSTANCE_METHODS_NSCopying -l_OBJC_$_PROTOCOL_METHOD_TYPES_NSCopying -l_OBJC_PROTOCOL_$_NSCopying -l_OBJC_LABEL_PROTOCOL_$_NSCopying -l_OBJC_CLASS_PROTOCOLS_$_RLMObjectSchema -l_OBJC_METACLASS_RO_$_RLMObjectSchema -OBJC_CLASS_NAME_.226 -OBJC_METH_VAR_TYPE_.229 -OBJC_METH_VAR_TYPE_.232 -OBJC_METH_VAR_NAME_.233 -OBJC_METH_VAR_TYPE_.234 -OBJC_METH_VAR_TYPE_.236 -OBJC_METH_VAR_TYPE_.238 -OBJC_METH_VAR_NAME_.239 -OBJC_METH_VAR_TYPE_.240 -OBJC_METH_VAR_NAME_.241 -OBJC_METH_VAR_TYPE_.242 -OBJC_METH_VAR_NAME_.243 -OBJC_METH_VAR_NAME_.247 -OBJC_METH_VAR_NAME_.248 -OBJC_METH_VAR_TYPE_.249 -OBJC_METH_VAR_TYPE_.250 -OBJC_METH_VAR_TYPE_.252 -OBJC_METH_VAR_TYPE_.253 -OBJC_METH_VAR_NAME_.257 -l_OBJC_$_INSTANCE_METHODS_RLMObjectSchema -OBJC_METH_VAR_NAME_.258 -OBJC_METH_VAR_TYPE_.259 -OBJC_METH_VAR_NAME_.260 -OBJC_METH_VAR_TYPE_.261 -OBJC_METH_VAR_NAME_.262 -OBJC_METH_VAR_TYPE_.263 -OBJC_METH_VAR_NAME_.264 -OBJC_METH_VAR_TYPE_.265 -OBJC_METH_VAR_NAME_.266 -OBJC_METH_VAR_NAME_.267 -OBJC_METH_VAR_TYPE_.268 -OBJC_METH_VAR_NAME_.269 -OBJC_METH_VAR_TYPE_.270 -OBJC_METH_VAR_NAME_.271 -OBJC_METH_VAR_TYPE_.272 -OBJC_METH_VAR_TYPE_.274 -OBJC_METH_VAR_NAME_.276 -OBJC_METH_VAR_TYPE_.278 -l_OBJC_$_INSTANCE_VARIABLES_RLMObjectSchema -OBJC_PROP_NAME_ATTR_.279 -OBJC_PROP_NAME_ATTR_.280 -OBJC_PROP_NAME_ATTR_.281 -OBJC_PROP_NAME_ATTR_.282 -OBJC_PROP_NAME_ATTR_.283 -OBJC_PROP_NAME_ATTR_.284 -OBJC_PROP_NAME_ATTR_.285 -OBJC_PROP_NAME_ATTR_.286 -OBJC_PROP_NAME_ATTR_.287 -OBJC_PROP_NAME_ATTR_.288 -OBJC_PROP_NAME_ATTR_.289 -OBJC_PROP_NAME_ATTR_.290 -OBJC_PROP_NAME_ATTR_.291 -OBJC_PROP_NAME_ATTR_.292 -OBJC_PROP_NAME_ATTR_.293 -OBJC_PROP_NAME_ATTR_.294 -OBJC_PROP_NAME_ATTR_.295 -OBJC_PROP_NAME_ATTR_.296 -OBJC_PROP_NAME_ATTR_.297 -OBJC_PROP_NAME_ATTR_.298 -OBJC_PROP_NAME_ATTR_.299 -l_OBJC_$_PROP_LIST_RLMObjectSchema -l_OBJC_CLASS_RO_$_RLMObjectSchema -_unnamed_cfstring_.301 -.str.302 -_unnamed_cfstring_.303 -.str.304 -_unnamed_cfstring_.305 -_unnamed_cfstring_.307 -.str.308 -_unnamed_cfstring_.309 -.str.310 -_unnamed_cfstring_.311 -.str.312 -_unnamed_cfstring_.313 -.str.314 -_unnamed_cfstring_.315 -.str.316 -_unnamed_cfstring_.317 -.str.318 -_unnamed_cfstring_.319 -.str.320 -_unnamed_cfstring_.321 -OBJC_CLASSLIST_REFERENCES_$_.322 -OBJC_METH_VAR_NAME_.323 -OBJC_SELECTOR_REFERENCES_.324 -OBJC_METH_VAR_NAME_.325 -OBJC_SELECTOR_REFERENCES_.326 -OBJC_CLASSLIST_REFERENCES_$_.327 -OBJC_METH_VAR_NAME_.328 -OBJC_SELECTOR_REFERENCES_.329 -forward -RLMCoerceToNil -__to_raw_pointer -__destroy -destroy -RLMTypeToString --[RLMObjectSchema .cxx_construct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectSchema.mm --[RLMObjectSchema .cxx_destruct] --[RLMObjectSchema setRealm:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectSchema_Private.h --[RLMObjectSchema realm] --[RLMObjectSchema setStandaloneClass:] --[RLMObjectSchema standaloneClass] --[RLMObjectSchema setAccessorClass:] --[RLMObjectSchema accessorClass] --[RLMObjectSchema setObjectClass:] --[RLMObjectSchema objectClass] --[RLMObjectSchema setIsSwiftClass:] --[RLMObjectSchema isSwiftClass] --[RLMObjectSchema setPropertiesByName:] --[RLMObjectSchema propertiesByName] --[RLMObjectSchema primaryKeyProperty] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectSchema.h --[RLMObjectSchema setClassName:] --[RLMObjectSchema className] --[RLMObjectSchema properties] --[RLMObjectSchema propertiesInDeclaredOrder] --[RLMObjectSchema sortPropertiesByColumn] -+[RLMObjectSchema objectSchemaForObjectStoreSchema:] --[RLMObjectSchema objectStoreCopy] --[RLMObjectSchema setTable:] --[RLMObjectSchema table] --[RLMObjectSchema description] --[RLMObjectSchema isEqualToObjectSchema:] --[RLMObjectSchema shallowCopy] --[RLMObjectSchema copyWithZone:] -+[RLMObjectSchema propertiesForClass:isSwift:] -+[RLMObjectSchema schemaForObjectClass:] --[RLMObjectSchema setPrimaryKeyProperty:] --[RLMObjectSchema setProperties:] --[RLMObjectSchema objectForKeyedSubscript:] --[RLMObjectSchema initWithClassName:objectClass:properties:] -_ZL27RLMValidateValueForPropertyP11objc_objectP11RLMPropertyP9RLMSchemabb -__RLMDeleteObjectFromRealm_block_invoke -_ZN5realm7ResultsC2Ev -_GLOBAL__sub_I_RLMObjectStore.mm -_ZL16s_accessorSchema -_ZZ34RLMInitializeSwiftAccessorGenericsE18s_swiftObjectClass -_ZGVZ34RLMInitializeSwiftAccessorGenericsE18s_swiftObjectClass -OBJC_METH_VAR_NAME_.36 -OBJC_SELECTOR_REFERENCES_.37 -OBJC_CLASSLIST_REFERENCES_$_.38 -OBJC_SELECTOR_REFERENCES_.70 -OBJC_METH_VAR_NAME_.71 -OBJC_SELECTOR_REFERENCES_.72 -OBJC_CLASSLIST_REFERENCES_$_.99 -.str.106 -OBJC_CLASSLIST_REFERENCES_$_.107 -.str.112 -_unnamed_cfstring_.113 -.str.114 -_unnamed_cfstring_.115 -.str.124 -.str.126 -.str.127 -.str.128 -_unnamed_cfstring_.129 -OBJC_CLASS_NAME_.130 -OBJC_SELECTOR_REFERENCES_.132 -OBJC_CLASSLIST_REFERENCES_$_.135 -_unnamed_cfstring_.139 -.str.142 -.str.143 -.str.144 -.str.146 -.str.148 -.str.150 -.str.151 -.str.152 -.str.154 -.str.155 -.str.159 -.str.160 -.str.161 -.str.162 -.str.166 -OBJC_CLASSLIST_REFERENCES_$_.171 -OBJC_CLASSLIST_REFERENCES_$_.172 -OBJC_CLASSLIST_REFERENCES_$_.173 -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectStore.mm -RLMCreateOrGetRowForObject<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectStore.mm:395:30)> -RLMCreateOrGetRowForObject<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectStore.mm:377:30)> -operator= -RLMCreateOrGetRowForObject<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObjectStore.mm:186:26)> -RLMVerifyRealmRead -_ZZ31RLMCreateObjectInRealmWithValueEN3$_2C2ERKS_ -_ZZ31RLMCreateObjectInRealmWithValueEN3$_2C1ERKS_ -RLMValidateValueForObjectSchema -RLMValidateNestedObject -RLMValidateValueForProperty -_ZZ31RLMCreateObjectInRealmWithValueEN3$_1C2ERKS_ -_ZZ31RLMCreateObjectInRealmWithValueEN3$_1C1ERKS_ -hasObservers -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.hpp -RLMCreateObjectAccessor -RLMGetObject -RLMGetObjects -RLMDeleteAllObjectsFromRealm -RLMDeleteObjectFromRealm -RLMCreateObjectInRealmWithValue -RLMAddObjectToRealm -RLMInitializeSwiftAccessorGenerics -RLMClearAccessorCache -RLMRealmCreateAccessors -___Z13RLMClearTableP15RLMObjectSchema_block_invoke -_ZNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEED1Ev -_ZNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEED0Ev -_ZNKSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEE7__cloneEv -_ZNKSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEE7__cloneEPNS0_6__baseISE_EE -_ZNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEE7destroyEv -_ZNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEE18destroy_deallocateEv -_ZNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEEclESD_ -_ZNKSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEE6targetERKSt9type_info -_ZNKSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEE11target_typeEv -_ZL7convertRKN5realm8IndexSetEP17NSMutableIndexSet -OBJC_CLASSLIST_REFERENCES_$_.23 -_ZZN18RLMObservationInfo11valueForKeyEP8NSStringE16superValueForKey -_ZGVZN18RLMObservationInfo11valueForKeyEP8NSStringE16superValueForKey -OBJC_CLASSLIST_REFERENCES_$_.31 -OBJC_CLASSLIST_REFERENCES_$_.51 -OBJC_CLASSLIST_REFERENCES_$_.66 -OBJC_CLASSLIST_REFERENCES_$_.67 -_ZTVNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEEE -_ZTSNSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEEE -_ZTINSt3__110__function6__funcIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5NS_9allocatorIS6_EEFvRKN5realm5Group19CascadeNotificationEEEE -OBJC_METH_VAR_NAME_.74 -OBJC_SELECTOR_REFERENCES_.75 -OBJC_METH_VAR_NAME_.76 -OBJC_SELECTOR_REFERENCES_.77 -_ZTSZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5 -_ZTIZ17RLMTrackDeletionsP8RLMRealmU13block_pointerFvvEE3$_5 -operator-- -operator!=, std::__1::__wrap_iter > -end > > -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm -begin > > -operator() -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:476:20)> -operator!=, std::__1::__wrap_iter > -end > > -begin > > -operator== *, const std::__1::pair *> -operator!= *> -Realm/ObjectStore/index_set.hpp -convert -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:461:20)> -operator== -operator!= -operator== -operator!= -__insertion_sort_incomplete &, realm::BindingContext::ObserverState *> -__insertion_sort_3 &, realm::BindingContext::ObserverState *> -__sort5 &, realm::BindingContext::ObserverState *> -__sort4 &, realm::BindingContext::ObserverState *> -__sort3 &, realm::BindingContext::ObserverState *> -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/binding_context.hpp -swap -__tuple_leaf -forward -__tuple_impl<0, 1, const unsigned long &, const unsigned long &, const unsigned long &, const unsigned long &> -tie -operator(), std::__1::tuple > -get<1, const unsigned long &, const unsigned long &> -get<0, const unsigned long &, const unsigned long &> -operator< -__sort &, realm::BindingContext::ObserverState *> -sort > -sort -sort -end > > -begin > > -move -swap -move_if_noexcept -__construct_backward -forward &> -__push_back_slow_path -move -forward -forward > -forward -move &> -ObserverState -construct -__construct -operator== -operator!= -operator!=, std::__1::__wrap_iter > -end > > -begin > > -target_type -target -forward -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &> -operator!= -__push_back_slow_path -forward -construct -__construct -operator== -operator!= -__advance > -advance > -prev > -operator== -end > > -begin > > -operator() -find_if, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:342:64)> -move -swap -move_if_noexcept -__construct_backward -forward &> -__push_back_slow_path -move -forward -change -construct -__construct -getObjectSchema -operator== -operator!= -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &, const realm::Group::CascadeNotification &> -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &, const realm::Group::CascadeNotification &> -destroy_deallocate -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &> -forward &> -forward_as_tuple &> -__func -__clone -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &&> -forward &&> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &> -forward -forward_as_tuple -allocator, void (const realm::Group::CascadeNotification &)> > -forward, void (const realm::Group::CascadeNotification &)> > > > -forward, void (const realm::Group::CascadeNotification &)> *> -move, void (const realm::Group::CascadeNotification &)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -~__func -~__base -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&, 0> -move &> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&> -forward_as_tuple<> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51), false> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -__base -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:322:51)> -forward -move > **&> -swap > **> -__construct_backward > *> -__construct_at_end -forward > *> &> -construct > *> -__construct > *> -__append -forward > **> -operator== -operator!= -operator!=, std::__1::__wrap_iter > -end > > -begin > > -move -swap -__construct_backward -forward &> -__push_back_slow_path -construct -__construct -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:124:17)> -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:119:17)> -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:111:17)> -forEach<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMObservation.mm:106:17)> -swap -iter_swap, std::__1::__wrap_iter > -__advance > -advance > -prev > -operator== -operator!= -find, RLMObservationInfo *> -forward -rend -reverse_iterator -rbegin -reverse > > -reverse > > -__to_raw_pointer -__destroy -destroy -__to_raw_pointer -~IndexSet -~ColumnInfo -__destroy -destroy -~ObserverState -getRow -__to_raw_pointer > *> -__destroy > *> -destroy > *> -__to_raw_pointer -~change -__destroy -destroy -reverse > > -move &> -set_cascade_notification_handler -reverse > > -isForRow -RLMDidChange -RLMWillChange -RLMGetObservedRows -RLMTrackDeletions -RLMClearTable -RLMGetObservationInfo -valueForKey -removeObserver -recordObserver -setRow -prepareForInvalidation -didChange -willChange -~RLMObservationInfo -RLMObservationInfo --[RLMOptionalBase init] --[RLMOptionalBase underlyingValue] --[RLMOptionalBase setUnderlyingValue:] --[RLMOptionalBase isKindOfClass:] --[RLMOptionalBase methodSignatureForSelector:] --[RLMOptionalBase forwardInvocation:] --[RLMOptionalBase forwardingTargetForSelector:] --[RLMOptionalBase respondsToSelector:] --[RLMOptionalBase doesNotRecognizeSelector:] --[RLMOptionalBase object] --[RLMOptionalBase setObject:] --[RLMOptionalBase property] --[RLMOptionalBase setProperty:] --[RLMOptionalBase standaloneValue] --[RLMOptionalBase setStandaloneValue:] --[RLMOptionalBase .cxx_destruct] -OBJC_IVAR_$_RLMOptionalBase._object -OBJC_IVAR_$_RLMOptionalBase._property -OBJC_IVAR_$_RLMOptionalBase._standaloneValue -l_OBJC_METACLASS_RO_$_RLMOptionalBase -OBJC_CLASS_NAME_.19 -OBJC_METH_VAR_TYPE_.23 -OBJC_METH_VAR_TYPE_.27 -OBJC_METH_VAR_TYPE_.28 -OBJC_METH_VAR_TYPE_.30 -l_OBJC_$_INSTANCE_METHODS_RLMOptionalBase -OBJC_METH_VAR_TYPE_.38 -OBJC_METH_VAR_TYPE_.40 -OBJC_METH_VAR_TYPE_.42 -l_OBJC_$_INSTANCE_VARIABLES_RLMOptionalBase -OBJC_CLASS_NAME_.43 -OBJC_PROP_NAME_ATTR_.44 -OBJC_PROP_NAME_ATTR_.45 -OBJC_PROP_NAME_ATTR_.46 -OBJC_PROP_NAME_ATTR_.47 -OBJC_PROP_NAME_ATTR_.48 -OBJC_PROP_NAME_ATTR_.49 -OBJC_PROP_NAME_ATTR_.50 -l_OBJC_$_PROP_LIST_RLMOptionalBase -l_OBJC_CLASS_RO_$_RLMOptionalBase --[RLMOptionalBase .cxx_destruct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMOptionalBase.mm --[RLMOptionalBase setStandaloneValue:] --[RLMOptionalBase standaloneValue] --[RLMOptionalBase setProperty:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMOptionalBase.h --[RLMOptionalBase property] --[RLMOptionalBase setObject:] --[RLMOptionalBase object] --[RLMOptionalBase doesNotRecognizeSelector:] --[RLMOptionalBase respondsToSelector:] --[RLMOptionalBase forwardingTargetForSelector:] --[RLMOptionalBase forwardInvocation:] --[RLMOptionalBase methodSignatureForSelector:] --[RLMOptionalBase isKindOfClass:] --[RLMOptionalBase setUnderlyingValue:] --[RLMOptionalBase underlyingValue] --[RLMOptionalBase init] --[RLMProperty initWithName:type:objectClassName:indexed:optional:] --[RLMProperty updateAccessors] --[RLMProperty setObjcCodeFromType] --[RLMProperty setTypeFromRawType] --[RLMProperty parseObjcProperty:] --[RLMProperty initSwiftPropertyWithName:indexed:property:instance:] -__67-[RLMProperty initSwiftPropertyWithName:indexed:property:instance:]_block_invoke --[RLMProperty initWithName:indexed:property:] --[RLMProperty initSwiftListPropertyWithName:ivar:objectClassName:] --[RLMProperty initSwiftOptionalPropertyWithName:indexed:ivar:propertyType:] --[RLMProperty copyWithZone:] --[RLMProperty isEqualToProperty:] --[RLMProperty description] --[RLMProperty name] --[RLMProperty type] --[RLMProperty setType:] --[RLMProperty indexed] --[RLMProperty setIndexed:] --[RLMProperty objectClassName] --[RLMProperty setObjectClassName:] --[RLMProperty optional] --[RLMProperty setOptional:] --[RLMProperty column] --[RLMProperty setColumn:] --[RLMProperty objcType] --[RLMProperty setObjcType:] --[RLMProperty objcRawType] --[RLMProperty setObjcRawType:] --[RLMProperty isPrimary] --[RLMProperty setIsPrimary:] --[RLMProperty swiftIvar] --[RLMProperty setSwiftIvar:] --[RLMProperty declarationIndex] --[RLMProperty setDeclarationIndex:] --[RLMProperty getterName] --[RLMProperty setGetterName:] --[RLMProperty setterName] --[RLMProperty setSetterName:] --[RLMProperty getterSel] --[RLMProperty setGetterSel:] --[RLMProperty setterSel] --[RLMProperty setSetterSel:] --[RLMProperty .cxx_destruct] -OBJC_IVAR_$_RLMProperty._name -OBJC_IVAR_$_RLMProperty._type -OBJC_IVAR_$_RLMProperty._objectClassName -OBJC_IVAR_$_RLMProperty._indexed -OBJC_IVAR_$_RLMProperty._optional -OBJC_IVAR_$_RLMProperty._getterName -OBJC_IVAR_$_RLMProperty._setterName -OBJC_IVAR_$_RLMProperty._getterSel -OBJC_IVAR_$_RLMProperty._setterSel -OBJC_IVAR_$_RLMProperty._objcType -OBJC_IVAR_$_RLMProperty._objcRawType -_ZZ33-[RLMProperty setTypeFromRawType]E11arrayPrefix -_ZZ33-[RLMProperty setTypeFromRawType]E12numberPrefix -_unnamed_cfstring_.30 -_unnamed_cfstring_.34 -_unnamed_cfstring_.40 -_unnamed_cfstring_.47 -OBJC_SELECTOR_REFERENCES_.58 -OBJC_CLASSLIST_REFERENCES_$_.94 -OBJC_CLASSLIST_REFERENCES_$_.95 -OBJC_CLASSLIST_REFERENCES_$_.96 -.str.103 -_unnamed_cfstring_.104 -OBJC_IVAR_$_RLMProperty._swiftIvar -OBJC_CLASSLIST_REFERENCES_$_.105 -OBJC_IVAR_$_RLMProperty._isPrimary -OBJC_IVAR_$_RLMProperty._declarationIndex -.str.108 -_unnamed_cfstring_.109 -_unnamed_cfstring_.117 -OBJC_SELECTOR_REFERENCES_.121 -OBJC_IVAR_$_RLMProperty._column -l_OBJC_METACLASS_RO_$_RLMProperty -OBJC_METH_VAR_TYPE_.125 -OBJC_METH_VAR_TYPE_.130 -OBJC_METH_VAR_TYPE_.142 -OBJC_METH_VAR_TYPE_.144 -OBJC_METH_VAR_TYPE_.146 -OBJC_METH_VAR_NAME_.149 -OBJC_METH_VAR_TYPE_.151 -OBJC_METH_VAR_NAME_.162 -OBJC_METH_VAR_NAME_.175 -l_OBJC_$_INSTANCE_METHODS_RLMProperty -OBJC_METH_VAR_TYPE_.177 -OBJC_METH_VAR_NAME_.178 -OBJC_METH_VAR_TYPE_.183 -OBJC_METH_VAR_TYPE_.185 -OBJC_METH_VAR_TYPE_.188 -OBJC_METH_VAR_TYPE_.191 -OBJC_METH_VAR_NAME_.192 -l_OBJC_$_INSTANCE_VARIABLES_RLMProperty -OBJC_PROP_NAME_ATTR_.198 -OBJC_PROP_NAME_ATTR_.199 -OBJC_PROP_NAME_ATTR_.200 -OBJC_PROP_NAME_ATTR_.201 -OBJC_PROP_NAME_ATTR_.202 -OBJC_PROP_NAME_ATTR_.203 -OBJC_PROP_NAME_ATTR_.204 -OBJC_PROP_NAME_ATTR_.205 -OBJC_PROP_NAME_ATTR_.206 -OBJC_PROP_NAME_ATTR_.207 -OBJC_PROP_NAME_ATTR_.208 -OBJC_PROP_NAME_ATTR_.209 -OBJC_PROP_NAME_ATTR_.210 -OBJC_PROP_NAME_ATTR_.211 -OBJC_PROP_NAME_ATTR_.212 -OBJC_PROP_NAME_ATTR_.213 -OBJC_PROP_NAME_ATTR_.214 -OBJC_PROP_NAME_ATTR_.215 -OBJC_PROP_NAME_ATTR_.219 -OBJC_PROP_NAME_ATTR_.220 -OBJC_PROP_NAME_ATTR_.221 -OBJC_PROP_NAME_ATTR_.222 -OBJC_PROP_NAME_ATTR_.223 -OBJC_PROP_NAME_ATTR_.224 -OBJC_PROP_NAME_ATTR_.225 -OBJC_PROP_NAME_ATTR_.226 -l_OBJC_$_PROP_LIST_RLMProperty -l_OBJC_CLASS_RO_$_RLMProperty -.str.227 -_unnamed_cfstring_.228 -_unnamed_cfstring_.230 -.str.231 -_unnamed_cfstring_.232 -.str.233 -_unnamed_cfstring_.234 -.str.235 -_unnamed_cfstring_.236 -.str.237 -_unnamed_cfstring_.238 -_unnamed_cfstring_.240 -.str.241 -_unnamed_cfstring_.242 -.str.243 -_unnamed_cfstring_.244 -.str.245 -_unnamed_cfstring_.246 --[RLMProperty .cxx_destruct] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMProperty.mm --[RLMProperty setSetterSel:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMProperty_Private.h --[RLMProperty setterSel] --[RLMProperty setGetterSel:] --[RLMProperty getterSel] --[RLMProperty setSetterName:] --[RLMProperty setterName] --[RLMProperty setGetterName:] --[RLMProperty getterName] --[RLMProperty setDeclarationIndex:] --[RLMProperty declarationIndex] --[RLMProperty setSwiftIvar:] --[RLMProperty swiftIvar] --[RLMProperty setIsPrimary:] --[RLMProperty isPrimary] --[RLMProperty setObjcRawType:] --[RLMProperty objcRawType] --[RLMProperty setObjcType:] --[RLMProperty objcType] --[RLMProperty setColumn:] --[RLMProperty column] --[RLMProperty setOptional:] --[RLMProperty optional] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMProperty.h --[RLMProperty setObjectClassName:] --[RLMProperty objectClassName] --[RLMProperty setIndexed:] --[RLMProperty indexed] --[RLMProperty setType:] --[RLMProperty type] --[RLMProperty name] --[RLMProperty description] --[RLMProperty isEqualToProperty:] --[RLMProperty copyWithZone:] --[RLMProperty initSwiftOptionalPropertyWithName:indexed:ivar:propertyType:] --[RLMProperty initSwiftListPropertyWithName:ivar:objectClassName:] --[RLMProperty initWithName:indexed:property:] --[RLMProperty initSwiftPropertyWithName:indexed:property:instance:] --[RLMProperty parseObjcProperty:] --[RLMProperty setTypeFromRawType] --[RLMProperty setObjcCodeFromType] --[RLMProperty updateAccessors] --[RLMProperty initWithName:type:objectClassName:indexed:optional:] -RLMPropertyTypeIsNumeric -RLMPropertyTypeIsNullable -_ZL15RLMPreconditionbP8NSStringS0_z -_ZN12_GLOBAL__N_127update_query_with_predicateEP11NSPredicateP9RLMSchemaP15RLMObjectSchemaRN5realm5QueryE -_ZL21RLMPredicateExceptionP8NSStringS0_z -_ZN12_GLOBAL__N_134update_query_with_value_expressionEP9RLMSchemaP15RLMObjectSchemaRN5realm5QueryEP8NSStringP11objc_objectP21NSComparisonPredicate -_ZN12_GLOBAL__N_114TrueExpressionD1Ev -_ZN12_GLOBAL__N_114TrueExpressionD0Ev -_ZNK12_GLOBAL__N_114TrueExpression10find_firstEmm -_ZN12_GLOBAL__N_114TrueExpression14set_base_tableEPKN5realm5TableE -_ZNK12_GLOBAL__N_114TrueExpression14get_base_tableEv -_ZNK12_GLOBAL__N_114TrueExpression5cloneEPNSt3__16vectorINS1_10unique_ptrIN5realm22QueryNodeHandoverPatchENS1_14default_deleteIS5_EEEENS1_9allocatorIS8_EEEE -_ZN5realm10Expression20apply_handover_patchERNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEERNS_5GroupE -_ZN12_GLOBAL__N_134collection_operation_from_key_pathEP9RLMSchemaP15RLMObjectSchemaP8NSString -_ZN12_GLOBAL__N_130column_reference_from_key_pathEP9RLMSchemaP15RLMObjectSchemaP8NSStringb -_ZNK12_GLOBAL__N_119CollectionOperation19validate_comparisonERKNS_15ColumnReferenceE -_ZN12_GLOBAL__N_144add_collection_operation_constraint_to_queryIJNS_19CollectionOperationENS_15ColumnReferenceEEEEvRN5realm5QueryE23NSPredicateOperatorTypeS1_DpT_ -_ZN12_GLOBAL__N_144add_collection_operation_constraint_to_queryIJNS_15ColumnReferenceENS_19CollectionOperationEEEEvRN5realm5QueryE23NSPredicateOperatorTypeS2_DpT_ -_ZN12_GLOBAL__N_119CollectionOperation13name_for_typeENS0_4TypeE -_ZN5realm4util17BadOptionalAccessD1Ev -_ZN5realm4util17BadOptionalAccessD0Ev -_ZNK5realm4util8OptionalIN12_GLOBAL__N_115ColumnReferenceEEptEv -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIxLNS_19CollectionOperation4TypeE0EEEDaRN5realm5QueryES1_ -_ZN5realm7ColumnsIxED1Ev -_ZN5realm9LinkCountD1Ev -_ZN12_GLOBAL__N_112operatorNameE23NSPredicateOperatorType -_ZN5realm9OverloadsIxxE7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm7CompareINS_4LessExNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_4LessExNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_4LessExNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_4LessExNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_4LessExNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_4LessExNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_4LessExNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm5ValueIxED1Ev -_ZN5realm5ValueIxEC2Ev -_ZNK5realm5ValueIxE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueIxE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueIxE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueIxE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueIxE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueIxE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueIxE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueIxE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueIxE6importERKNS_9ValueBaseE -_ZN5realm5ValueIxE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueIxE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm5ValueIxED0Ev -_ZThn12_N5realm5ValueIxED1Ev -_ZThn12_N5realm5ValueIxED0Ev -_ZThn12_NK5realm5ValueIxE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm7Subexpr20apply_handover_patchERNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEERNS_5GroupE -_ZN5realm7Subexpr14set_base_tableEPKNS_5TableE -_ZNK5realm7Subexpr14get_base_tableEv -_ZThn12_N5realm5ValueIxE8evaluateEmRNS_9ValueBaseE -_ZN5realm14NullableVectorIxLm8EE4initEmx -_ZN5realm14NullableVectorIxLm8EE4initEm -_ZN5realm14NullableVectorIbLm8EE3setEmx -_ZNK5realm14NullableVectorIxLm8EEixEm -_ZN5realm14NullableVectorIbLm8EE4initEm -_ZN5realm14NullableVectorIbLm8EE4fillEb -_ZN5realm14NullableVectorIiLm8EE3setEmx -_ZN5realm14NullableVectorIiLm8EE4initEm -_ZN5realm14NullableVectorIiLm8EE4fillEi -_ZN5realm5ValueIfE4initEbmf -_ZN5realm14NullableVectorIfLm8EE4initEm -_ZN5realm5ValueIdE4initEbmd -_ZN5realm14NullableVectorIdLm8EE4initEm -_ZN5realm14NullableVectorINS_4nullELm8EE4initEm -_ZN5realm14NullableVectorIxLm8EEC2ERKS1_ -_ZN5realm7CompareINS_4LessExNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIxxE7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm7CompareINS_9LessEqualExNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_9LessEqualExNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_9LessEqualExNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_9LessEqualExNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_9LessEqualExNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_9LessEqualExNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_9LessEqualExNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_9LessEqualExNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIxxE7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm7CompareINS_7GreaterExNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_7GreaterExNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_7GreaterExNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_7GreaterExNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_7GreaterExNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_7GreaterExNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_7GreaterExNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_7GreaterExNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIxxE7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_12GreaterEqualExNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIxxE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm7CompareINS_5EqualExNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_5EqualExNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_5EqualExNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_5EqualExNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_5EqualExNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_5EqualExNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_5EqualExNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_5EqualExNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIxxE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm7CompareINS_8NotEqualExNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_8NotEqualExNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_8NotEqualExNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_8NotEqualExNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8NotEqualExNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_8NotEqualExNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_8NotEqualExNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_8NotEqualExNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZNK5realm7ColumnsINS_4LinkEE5countEv -_ZN5realm7ColumnsINS_4LinkEED1Ev -_ZNK12_GLOBAL__N_115ColumnReference15table_for_queryERN5realm5QueryE -_ZN5realm7ColumnsINS_4LinkEED0Ev -_ZNK5realm7ColumnsINS_4LinkEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm7ColumnsINS_4LinkEE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsINS_4LinkEE14get_base_tableEv -_ZN5realm7ColumnsINS_4LinkEE8evaluateEmRNS_9ValueBaseE -_ZN5realm7LinkMapC2EPKNS_5TableERKNSt3__16vectorImNS4_9allocatorImEEEE -_ZN5realm7LinkMap14set_base_tableEPKNS_5TableE -_ZN5realm9LinkCountD0Ev -_ZNK5realm9LinkCount5cloneEPNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEE -_ZN5realm9LinkCount14set_base_tableEPKNS_5TableE -_ZNK5realm9LinkCount14get_base_tableEv -_ZN5realm9LinkCount8evaluateEmRNS_9ValueBaseE -_ZN5realm10CountLinks7consumeEm -_ZN5realm7LinkMap9map_linksEmmRNS_15LinkMapFunctionE -_ZN5realm5ValueIxEC2Ebmx -_ZN12_GLOBAL__N_123value_of_type_for_queryIxEEDaRN5realm5QueryERKNS_15ColumnReferenceE -_ZN5realm7ColumnsIxEC2EmPKNS_5TableERKNSt3__16vectorImNS5_9allocatorImEEEE -_ZN5realm7ColumnsIxED0Ev -_ZNK5realm7ColumnsIxE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm7ColumnsIxE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsIxE14get_base_tableEv -_ZN5realm7ColumnsIxE8evaluateEmRNS_9ValueBaseE -_ZN5realm7ColumnsIxEC2ERKS1_ -_ZN5realm16SequentialGetterINS_6ColumnINS_4util8OptionalIxEEEEE4initEPKS5_ -_ZN5realm16SequentialGetterINS_6ColumnIxEEE4initEPKS2_ -_ZN5realm16SequentialGetterINS_6ColumnINS_4util8OptionalIxEEEEED1Ev -_ZN5realm16SequentialGetterINS_6ColumnINS_4util8OptionalIxEEEEED0Ev -_ZN5realm16SequentialGetterINS_6ColumnIxEEED1Ev -_ZN5realm16SequentialGetterINS_6ColumnIxEEED0Ev -_ZN5realm12ArrayIntNullD1Ev -_ZN5realm12ArrayIntNullD0Ev -_ZN5realm7ColumnsIxE17evaluate_internalINS_6ColumnINS_4util8OptionalIxEEEEEEvmRNS_9ValueBaseE -_ZN5realm7ColumnsIxE17evaluate_internalINS_6ColumnIxEEEEvmRNS_9ValueBaseE -_ZN5realm7LinkMap9get_linksEm -_ZN5realm14MakeLinkVector7consumeEm -_ZN5realm5ValueIxEC2Ebm -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIxLNS_19CollectionOperation4TypeE1EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEED1Ev -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIfLNS_19CollectionOperation4TypeE1EEEDaRN5realm5QueryES1_ -_ZN5realm7ColumnsIfED1Ev -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MinimumIfEEED1Ev -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIdLNS_19CollectionOperation4TypeE1EEEDaRN5realm5QueryES1_ -_ZN5realm7ColumnsIdED1Ev -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MinimumIdEEED1Ev -_ZNK5realm7ColumnsINS_4LinkEE6columnIxEENS_10SubColumnsIT_EEm -_ZNK5realm10SubColumnsIxE3minEv -_ZN5realm10SubColumnsIxED1Ev -_ZN5realm10SubColumnsIxEC2ENS_7ColumnsIxEENS_7LinkMapE -_ZN5realm10SubColumnsIxED0Ev -_ZNK5realm10SubColumnsIxE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm10SubColumnsIxE14set_base_tableEPKNS_5TableE -_ZNK5realm10SubColumnsIxE14get_base_tableEv -_ZN5realm10SubColumnsIxE8evaluateEmRNS_9ValueBaseE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEEC2ENS_7ColumnsIxEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEED0Ev -_ZNK5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MinimumIxEEE8evaluateEmRNS_9ValueBaseE -_ZN5realm5ValueINS_4nullEED1Ev -_ZN5realm5ValueINS_4nullEEC2EbmS1_ -_ZNK5realm5ValueINS_4nullEE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueINS_4nullEE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueINS_4nullEE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueINS_4nullEE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueINS_4nullEE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueINS_4nullEE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueINS_4nullEE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueINS_4nullEE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueINS_4nullEE6importERKNS_9ValueBaseE -_ZN5realm5ValueINS_4nullEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueINS_4nullEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm5ValueINS_4nullEED0Ev -_ZThn12_N5realm5ValueINS_4nullEED1Ev -_ZThn12_N5realm5ValueINS_4nullEED0Ev -_ZThn12_NK5realm5ValueINS_4nullEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZThn12_N5realm5ValueINS_4nullEE8evaluateEmRNS_9ValueBaseE -_ZN5realm14NullableVectorINS_10StringDataELm8EE4initEmS1_ -_ZN5realm14NullableVectorINS_10StringDataELm8EE4initEm -_ZN5realm14NullableVectorINS_4nullELm8EEC2ERKS2_ -_ZN5realm9OverloadsIffE7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm7CompareINS_4LessEfNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_4LessEfNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_4LessEfNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_4LessEfNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_4LessEfNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_4LessEfNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_4LessEfNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm5ValueIfED1Ev -_ZN5realm5ValueIfEC2Ev -_ZNK5realm5ValueIfE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueIfE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueIfE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueIfE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueIfE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueIfE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueIfE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueIfE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueIfE6importERKNS_9ValueBaseE -_ZN5realm5ValueIfE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueIfE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm5ValueIfED0Ev -_ZThn12_N5realm5ValueIfED1Ev -_ZThn12_N5realm5ValueIfED0Ev -_ZThn12_NK5realm5ValueIfE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZThn12_N5realm5ValueIfE8evaluateEmRNS_9ValueBaseE -_ZNK5realm14NullableVectorIfLm8EEixEm -_ZN5realm14NullableVectorIfLm8EEC2ERKS1_ -_ZN5realm7CompareINS_4LessEfNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIffE7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm7CompareINS_9LessEqualEfNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_9LessEqualEfNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_9LessEqualEfNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_9LessEqualEfNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_9LessEqualEfNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_9LessEqualEfNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_9LessEqualEfNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_9LessEqualEfNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIffE7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm7CompareINS_7GreaterEfNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_7GreaterEfNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_7GreaterEfNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_7GreaterEfNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_7GreaterEfNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_7GreaterEfNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_7GreaterEfNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_7GreaterEfNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIffE7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_12GreaterEqualEfNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIffE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm7CompareINS_5EqualEfNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_5EqualEfNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_5EqualEfNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_5EqualEfNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_5EqualEfNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_5EqualEfNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_5EqualEfNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_5EqualEfNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIffE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm7CompareINS_8NotEqualEfNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_8NotEqualEfNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_8NotEqualEfNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_8NotEqualEfNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8NotEqualEfNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_8NotEqualEfNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_8NotEqualEfNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_8NotEqualEfNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZNK5realm7ColumnsINS_4LinkEE6columnIfEENS_10SubColumnsIT_EEm -_ZNK5realm10SubColumnsIfE3minEv -_ZN5realm10SubColumnsIfED1Ev -_ZN5realm7ColumnsIfEC2EmPKNS_5TableERKNSt3__16vectorImNS5_9allocatorImEEEE -_ZN5realm7ColumnsIfED0Ev -_ZNK5realm7ColumnsIfE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm7ColumnsIfE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsIfE14get_base_tableEv -_ZN5realm7ColumnsIfE8evaluateEmRNS_9ValueBaseE -_ZN5realm7ColumnsIfEC2ERKS1_ -_ZN5realm16SequentialGetterINS_6ColumnIfEEE4initEPKS2_ -_ZN5realm16SequentialGetterINS_6ColumnIfEEED1Ev -_ZN5realm16SequentialGetterINS_6ColumnIfEEED0Ev -_ZN5realm10BasicArrayIfED1Ev -_ZN5realm10BasicArrayIfED0Ev -_ZNK5realm10BasicArrayIfE12GetWidthTypeEv -_ZN5realm7ColumnsIfE17evaluate_internalINS_6ColumnIfEEEEvmRNS_9ValueBaseE -_ZN5realm5ValueIfEC2Ebm -_ZN5realm10SubColumnsIfEC2ENS_7ColumnsIfEENS_7LinkMapE -_ZN5realm10SubColumnsIfED0Ev -_ZNK5realm10SubColumnsIfE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm10SubColumnsIfE14set_base_tableEPKNS_5TableE -_ZNK5realm10SubColumnsIfE14get_base_tableEv -_ZN5realm10SubColumnsIfE8evaluateEmRNS_9ValueBaseE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MinimumIfEEEC2ENS_7ColumnsIfEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MinimumIfEEED0Ev -_ZNK5realm18SubColumnAggregateIfNS_20aggregate_operations7MinimumIfEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MinimumIfEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIfNS_20aggregate_operations7MinimumIfEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MinimumIfEEE8evaluateEmRNS_9ValueBaseE -_ZN5realm5ValueIfEC2Ebmf -_ZN12_GLOBAL__N_123value_of_type_for_queryIfEEDaRN5realm5QueryERKNS_15ColumnReferenceE -_ZN5realm9OverloadsIddE7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm7CompareINS_4LessEdNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_4LessEdNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_4LessEdNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_4LessEdNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_4LessEdNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_4LessEdNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_4LessEdNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm5ValueIdED1Ev -_ZN5realm5ValueIdEC2Ev -_ZNK5realm5ValueIdE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueIdE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueIdE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueIdE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueIdE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueIdE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueIdE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueIdE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueIdE6importERKNS_9ValueBaseE -_ZN5realm5ValueIdE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueIdE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm5ValueIdED0Ev -_ZThn12_N5realm5ValueIdED1Ev -_ZThn12_N5realm5ValueIdED0Ev -_ZThn12_NK5realm5ValueIdE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZThn12_N5realm5ValueIdE8evaluateEmRNS_9ValueBaseE -_ZNK5realm14NullableVectorIdLm8EEixEm -_ZN5realm14NullableVectorIdLm8EEC2ERKS1_ -_ZN5realm7CompareINS_4LessEdNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIddE7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm7CompareINS_9LessEqualEdNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_9LessEqualEdNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_9LessEqualEdNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_9LessEqualEdNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_9LessEqualEdNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_9LessEqualEdNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_9LessEqualEdNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_9LessEqualEdNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIddE7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm7CompareINS_7GreaterEdNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_7GreaterEdNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_7GreaterEdNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_7GreaterEdNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_7GreaterEdNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_7GreaterEdNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_7GreaterEdNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_7GreaterEdNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIddE7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_12GreaterEqualEdNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIddE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm7CompareINS_5EqualEdNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_5EqualEdNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_5EqualEdNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_5EqualEdNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_5EqualEdNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_5EqualEdNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_5EqualEdNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_5EqualEdNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm9OverloadsIddE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm7CompareINS_8NotEqualEdNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_8NotEqualEdNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_8NotEqualEdNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_8NotEqualEdNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8NotEqualEdNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_8NotEqualEdNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_8NotEqualEdNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_8NotEqualEdNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZNK5realm7ColumnsINS_4LinkEE6columnIdEENS_10SubColumnsIT_EEm -_ZNK5realm10SubColumnsIdE3minEv -_ZN5realm10SubColumnsIdED1Ev -_ZN5realm7ColumnsIdEC2EmPKNS_5TableERKNSt3__16vectorImNS5_9allocatorImEEEE -_ZN5realm7ColumnsIdED0Ev -_ZNK5realm7ColumnsIdE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm7ColumnsIdE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsIdE14get_base_tableEv -_ZN5realm7ColumnsIdE8evaluateEmRNS_9ValueBaseE -_ZN5realm7ColumnsIdEC2ERKS1_ -_ZN5realm16SequentialGetterINS_6ColumnIdEEE4initEPKS2_ -_ZN5realm16SequentialGetterINS_6ColumnIdEEED1Ev -_ZN5realm16SequentialGetterINS_6ColumnIdEEED0Ev -_ZN5realm10BasicArrayIdED1Ev -_ZN5realm10BasicArrayIdED0Ev -_ZNK5realm10BasicArrayIdE12GetWidthTypeEv -_ZN5realm7ColumnsIdE17evaluate_internalINS_6ColumnIdEEEEvmRNS_9ValueBaseE -_ZN5realm5ValueIdEC2Ebm -_ZN5realm10SubColumnsIdEC2ENS_7ColumnsIdEENS_7LinkMapE -_ZN5realm10SubColumnsIdED0Ev -_ZNK5realm10SubColumnsIdE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm10SubColumnsIdE14set_base_tableEPKNS_5TableE -_ZNK5realm10SubColumnsIdE14get_base_tableEv -_ZN5realm10SubColumnsIdE8evaluateEmRNS_9ValueBaseE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MinimumIdEEEC2ENS_7ColumnsIdEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MinimumIdEEED0Ev -_ZNK5realm18SubColumnAggregateIdNS_20aggregate_operations7MinimumIdEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MinimumIdEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIdNS_20aggregate_operations7MinimumIdEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MinimumIdEEE8evaluateEmRNS_9ValueBaseE -_ZN5realm5ValueIdEC2Ebmd -_ZN12_GLOBAL__N_123value_of_type_for_queryIdEEDaRN5realm5QueryERKNS_15ColumnReferenceE -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIxLNS_19CollectionOperation4TypeE2EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MaximumIxEEED1Ev -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIfLNS_19CollectionOperation4TypeE2EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEED1Ev -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIdLNS_19CollectionOperation4TypeE2EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEED1Ev -_ZNK5realm10SubColumnsIxE3maxEv -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MaximumIxEEEC2ENS_7ColumnsIxEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MaximumIxEEED0Ev -_ZNK5realm18SubColumnAggregateIxNS_20aggregate_operations7MaximumIxEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MaximumIxEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIxNS_20aggregate_operations7MaximumIxEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7MaximumIxEEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm10SubColumnsIfE3maxEv -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEEC2ENS_7ColumnsIfEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEED0Ev -_ZNK5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7MaximumIfEEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm10SubColumnsIdE3maxEv -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEEC2ENS_7ColumnsIdEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEED0Ev -_ZNK5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7MaximumIdEEE8evaluateEmRNS_9ValueBaseE -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIxLNS_19CollectionOperation4TypeE3EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEED1Ev -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIfLNS_19CollectionOperation4TypeE3EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEED1Ev -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIdLNS_19CollectionOperation4TypeE3EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEED1Ev -_ZNK5realm10SubColumnsIxE3sumEv -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEEC2ENS_7ColumnsIxEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEED0Ev -_ZNK5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations3SumIxEEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm10SubColumnsIfE3sumEv -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEEC2ENS_7ColumnsIfEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEED0Ev -_ZNK5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations3SumIfEEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm10SubColumnsIdE3sumEv -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEEC2ENS_7ColumnsIdEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEED0Ev -_ZNK5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations3SumIdEEE8evaluateEmRNS_9ValueBaseE -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIxLNS_19CollectionOperation4TypeE4EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEED1Ev -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIfLNS_19CollectionOperation4TypeE4EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEED1Ev -_ZN12_GLOBAL__N_149value_of_type_for_query_with_collection_operationIdLNS_19CollectionOperation4TypeE4EEEDaRN5realm5QueryES1_ -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEED1Ev -_ZN5realm9OverloadsIdxE7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm9OverloadsIdxE7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm9OverloadsIdxE7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm9OverloadsIdxE7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm9OverloadsIdxE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IxEE -_ZN5realm9OverloadsIdxE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IxEE -_ZNK5realm10SubColumnsIxE7averageEv -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEEC2ENS_7ColumnsIxEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEED0Ev -_ZNK5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIxNS_20aggregate_operations7AverageIxEEE8evaluateEmRNS_9ValueBaseE -_ZN5realm9OverloadsIdfE7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm9OverloadsIdfE7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm9OverloadsIdfE7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm9OverloadsIdfE7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm9OverloadsIdfE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IfEE -_ZN5realm9OverloadsIdfE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IfEE -_ZNK5realm10SubColumnsIfE7averageEv -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEEC2ENS_7ColumnsIfEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEED0Ev -_ZNK5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIfNS_20aggregate_operations7AverageIfEEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm10SubColumnsIdE7averageEv -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEEC2ENS_7ColumnsIdEENS_7LinkMapE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEED0Ev -_ZNK5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEE5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEE14set_base_tableEPKNS_5TableE -_ZNK5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEE14get_base_tableEv -_ZN5realm18SubColumnAggregateIdNS_20aggregate_operations7AverageIdEEE8evaluateEmRNS_9ValueBaseE -_ZN5realm9OverloadsIxdE7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIxdE7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIxdE7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIxdE7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIxdE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIxdE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIfdE7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIfdE7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIfdE7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIfdE7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIfdE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN5realm9OverloadsIfdE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IdEE -_ZN12_GLOBAL__N_126do_add_constraint_to_queryIJNS_15ColumnReferenceES1_EEEvRN5realm5QueryE15RLMPropertyType23NSPredicateOperatorTypejDpT_ -_ZN12_GLOBAL__N_123value_of_type_for_queryIbEEDaRN5realm5QueryERKNS_15ColumnReferenceE -_ZN5realm7ColumnsIbED1Ev -_ZN12_GLOBAL__N_123value_of_type_for_queryIN5realm8DateTimeEEEDaRNS1_5QueryERKNS_15ColumnReferenceE -_ZN5realm7ColumnsINS_8DateTimeEED1Ev -_ZN12_GLOBAL__N_123value_of_type_for_queryIN5realm10StringDataEEEDaRNS1_5QueryERKNS_15ColumnReferenceE -_ZN5realm7ColumnsINS_10StringDataEED1Ev -_ZN5realm7CompareINS_5EqualEbNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_5EqualEbNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_5EqualEbNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_5EqualEbNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_5EqualEbNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_5EqualEbNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_5EqualEbNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm5ValueIbED1Ev -_ZN5realm5ValueIbEC2Ev -_ZNK5realm5ValueIbE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueIbE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueIbE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueIbE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueIbE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueIbE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueIbE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueIbE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueIbE6importERKNS_9ValueBaseE -_ZN5realm5ValueIbE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueIbE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm5ValueIbED0Ev -_ZThn12_N5realm5ValueIbED1Ev -_ZThn12_N5realm5ValueIbED0Ev -_ZThn12_NK5realm5ValueIbE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZThn12_N5realm5ValueIbE8evaluateEmRNS_9ValueBaseE -_ZNK5realm14NullableVectorIbLm8EEixEm -_ZN5realm14NullableVectorIbLm8EEC2ERKS1_ -_ZN5realm7CompareINS_5EqualEbNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm5ValueINS_4nullEEC2ES1_ -_ZN5realm7CompareINS_8NotEqualEbNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_8NotEqualEbNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_8NotEqualEbNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_8NotEqualEbNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8NotEqualEbNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_8NotEqualEbNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_8NotEqualEbNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_8NotEqualEbNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm7ColumnsIbEC2EmPKNS_5TableERKNSt3__16vectorImNS5_9allocatorImEEEE -_ZN5realm7ColumnsIbED0Ev -_ZNK5realm7ColumnsIbE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm7ColumnsIbE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsIbE14get_base_tableEv -_ZN5realm7ColumnsIbE8evaluateEmRNS_9ValueBaseE -_ZN5realm7ColumnsIbEC2ERKS1_ -_ZN5realm7ColumnsIbE17evaluate_internalINS_6ColumnINS_4util8OptionalIxEEEEEEvmRNS_9ValueBaseE -_ZN5realm7ColumnsIbE17evaluate_internalINS_6ColumnIxEEEEvmRNS_9ValueBaseE -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm5ValueINS_8DateTimeEED1Ev -_ZN5realm5ValueINS_8DateTimeEEC2Ev -_ZNK5realm5ValueINS_8DateTimeEE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueINS_8DateTimeEE6importERKNS_9ValueBaseE -_ZN5realm5ValueINS_8DateTimeEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueINS_8DateTimeEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm5ValueINS_8DateTimeEED0Ev -_ZThn12_N5realm5ValueINS_8DateTimeEED1Ev -_ZThn12_N5realm5ValueINS_8DateTimeEED0Ev -_ZThn12_NK5realm5ValueINS_8DateTimeEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZThn12_N5realm5ValueINS_8DateTimeEE8evaluateEmRNS_9ValueBaseE -_ZN5realm14NullableVectorINS_8DateTimeELm8EE4initEmS1_ -_ZN5realm14NullableVectorINS_8DateTimeELm8EE4initEm -_ZNK5realm14NullableVectorINS_8DateTimeELm8EEixEm -_ZN5realm14NullableVectorINS_8DateTimeELm8EEC2ERKS2_ -_ZN5realm7CompareINS_7GreaterENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_12GreaterEqualENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_4LessENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_9LessEqualENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_5EqualENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_8NotEqualENS_8DateTimeENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7ColumnsINS_8DateTimeEEC2EmPKNS_5TableERKNSt3__16vectorImNS6_9allocatorImEEEE -_ZN5realm7ColumnsINS_8DateTimeEED0Ev -_ZNK5realm7ColumnsINS_8DateTimeEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm7ColumnsINS_8DateTimeEE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsINS_8DateTimeEE14get_base_tableEv -_ZN5realm7ColumnsINS_8DateTimeEE8evaluateEmRNS_9ValueBaseE -_ZN5realm7ColumnsINS_8DateTimeEEC2ERKS2_ -_ZN5realm7ColumnsINS_8DateTimeEE17evaluate_internalINS_6ColumnINS_4util8OptionalIxEEEEEEvmRNS_9ValueBaseE -_ZN5realm7ColumnsINS_8DateTimeEE17evaluate_internalINS_6ColumnIxEEEEvmRNS_9ValueBaseE -_ZN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm5ValueINS_10StringDataEED1Ev -_ZN5realm5ValueINS_10StringDataEEC2Ev -_ZNK5realm5ValueINS_10StringDataEE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueINS_10StringDataEE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueINS_10StringDataEE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueINS_10StringDataEE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueINS_10StringDataEE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueINS_10StringDataEE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueINS_10StringDataEE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueINS_10StringDataEE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueINS_10StringDataEE6importERKNS_9ValueBaseE -_ZN5realm5ValueINS_10StringDataEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueINS_10StringDataEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm5ValueINS_10StringDataEED0Ev -_ZThn12_N5realm5ValueINS_10StringDataEED1Ev -_ZThn12_N5realm5ValueINS_10StringDataEED0Ev -_ZThn12_NK5realm5ValueINS_10StringDataEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZThn12_N5realm5ValueINS_10StringDataEE8evaluateEmRNS_9ValueBaseE -_ZNK5realm14NullableVectorINS_10StringDataELm8EEixEm -_ZN5realm14NullableVectorINS_10StringDataELm8EEC2ERKS2_ -_ZN5realm7CompareINS_10BeginsWithENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm19ConstantStringValueC2ERKNS_10StringDataE -_ZNK5realm19ConstantStringValue5cloneEPNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEE -_ZN5realm19ConstantStringValueD1Ev -_ZN5realm19ConstantStringValueD0Ev -_ZThn12_N5realm19ConstantStringValueD1Ev -_ZThn12_N5realm19ConstantStringValueD0Ev -_ZThn12_NK5realm19ConstantStringValue5cloneEPNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEE -_ZNK5realm4util8OptionalINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE5valueEv -_ZN5realm19ConstantStringValueC2ERKS0_ -_ZN5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZNK5realm13BeginsWithInsclENS_10StringDataES1_bb -_ZN5realm7CompareINS_13BeginsWithInsENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZNK5realm8EndsWithclENS_10StringDataES1_bb -_ZN5realm7CompareINS_8EndsWithENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZNK5realm11EndsWithInsclENS_10StringDataES1_bb -_ZN5realm7CompareINS_11EndsWithInsENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZNK5realm8ContainsclENS_10StringDataES1_bb -_ZNSt3__18__searchIRNS_10__equal_toIccEEPKcS5_EET0_S6_S6_T1_S7_T_NS_26random_access_iterator_tagES9_ -_ZN5realm7CompareINS_8ContainsENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZNK5realm11ContainsInsclENS_10StringDataES1_bb -_ZN5realm7CompareINS_11ContainsInsENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZN5realm7CompareINS_5EqualENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZNK5realm8EqualInsclENS_10StringDataES1_bb -_ZN5realm7CompareINS_8EqualInsENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZNK5realm8NotEqualclINS_10StringDataEEEbRKT_S5_bb -_ZN5realm7CompareINS_8NotEqualENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_ED1Ev -_ZN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_ED0Ev -_ZNK5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_E10find_firstEmm -_ZN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_E14get_base_tableEv -_ZNK5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_E5cloneEPNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEE -_ZN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_E20apply_handover_patchERNSt3__16vectorINS5_10unique_ptrINS_22QueryNodeHandoverPatchENS5_14default_deleteIS8_EEEENS5_9allocatorISB_EEEERNS_5GroupE -_ZNK5realm11NotEqualInsclENS_10StringDataES1_bb -_ZN5realm7CompareINS_11NotEqualInsENS_10StringDataENS_7SubexprES3_EC2ERKS4_PNSt3__16vectorINS7_10unique_ptrINS_22QueryNodeHandoverPatchENS7_14default_deleteISA_EEEENS7_9allocatorISD_EEEE -_ZN5realm7ColumnsINS_10StringDataEEC2EmPKNS_5TableERKNSt3__16vectorImNS6_9allocatorImEEEE -_ZN5realm7ColumnsINS_10StringDataEED0Ev -_ZNK5realm7ColumnsINS_10StringDataEE5cloneEPNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm7ColumnsINS_10StringDataEE14set_base_tableEPKNS_5TableE -_ZNK5realm7ColumnsINS_10StringDataEE14get_base_tableEv -_ZN5realm7ColumnsINS_10StringDataEE8evaluateEmRNS_9ValueBaseE -_ZN5realm7ColumnsINS_4LinkEE7is_nullEv -_ZN5realm16UnaryLinkCompareILb0EED1Ev -_ZN5realm16UnaryLinkCompareILb0EED0Ev -_ZNK5realm16UnaryLinkCompareILb0EE10find_firstEmm -_ZN5realm16UnaryLinkCompareILb0EE14set_base_tableEPKNS_5TableE -_ZNK5realm16UnaryLinkCompareILb0EE14get_base_tableEv -_ZNK5realm16UnaryLinkCompareILb0EE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm13FindNullLinks7consumeEm -_ZN5realm9OverloadsIbbE7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IbEE -_ZN5realm9OverloadsIbbE7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IbEE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_4LessEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_9LessEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_7GreaterEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_12GreaterEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_5EqualEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN5realm9OverloadsINS_8DateTimeES1_E7create2INS_8NotEqualEEENS_5QueryERKNS_8Subexpr2IS1_EE -_ZN12_GLOBAL__N_123validate_property_valueERKNS_15ColumnReferenceEP11objc_objectP8NSStringP15RLMObjectSchemaS6_ -_ZN12_GLOBAL__N_123add_constraint_to_queryINS_15ColumnReferenceEU8__strongP11objc_objectEEvRN5realm5QueryE15RLMPropertyType23NSPredicateOperatorTypejT_T0_ -_ZN12_GLOBAL__N_144add_collection_operation_constraint_to_queryIJNS_19CollectionOperationEU8__strongP11objc_objectEEEvRN5realm5QueryE23NSPredicateOperatorTypeS1_DpT_ -_ZN12_GLOBAL__N_144add_collection_operation_constraint_to_queryIJU8__strongP11objc_objectNS_19CollectionOperationEEEEvRN5realm5QueryE23NSPredicateOperatorTypeS4_DpT_ -_ZN5realm5ValueIxEC2Ex -_ZN5realm5ValueIfEC2Ef -_ZN5realm5ValueIdEC2Ed -_ZN5realm5ValueIiEC2Ei -_ZNK5realm5ValueIiE11export_boolERNS_9ValueBaseE -_ZNK5realm5ValueIiE10export_intERNS_9ValueBaseE -_ZNK5realm5ValueIiE12export_floatERNS_9ValueBaseE -_ZNK5realm5ValueIiE14export_int64_tERNS_9ValueBaseE -_ZNK5realm5ValueIiE13export_doubleERNS_9ValueBaseE -_ZNK5realm5ValueIiE17export_StringDataERNS_9ValueBaseE -_ZNK5realm5ValueIiE17export_BinaryDataERNS_9ValueBaseE -_ZNK5realm5ValueIiE11export_nullERNS_9ValueBaseE -_ZN5realm5ValueIiE6importERKNS_9ValueBaseE -_ZN5realm5ValueIiE8evaluateEmRNS_9ValueBaseE -_ZNK5realm5ValueIiE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZN5realm5ValueIiED1Ev -_ZN5realm5ValueIiED0Ev -_ZThn12_N5realm5ValueIiED1Ev -_ZThn12_N5realm5ValueIiED0Ev -_ZThn12_NK5realm5ValueIiE5cloneEPNSt3__16vectorINS2_10unique_ptrINS_22QueryNodeHandoverPatchENS2_14default_deleteIS5_EEEENS2_9allocatorIS8_EEEE -_ZThn12_N5realm5ValueIiE8evaluateEmRNS_9ValueBaseE -_ZNK5realm14NullableVectorIiLm8EEixEm -_ZN5realm14NullableVectorIiLm8EEC2ERKS1_ -_ZN12_GLOBAL__N_139value_from_constant_expression_or_valueEP11objc_object -_ZN12_GLOBAL__N_19is_nsnullEP11objc_object -_ZN12_GLOBAL__N_130add_string_constraint_to_queryIN5realm10StringDataEEEvRNS1_5QueryE23NSPredicateOperatorTypejONS1_7ColumnsIS2_EET_ -_ZN12_GLOBAL__N_123value_of_type_for_queryIN5realm10StringDataEEEDaRNS1_5QueryEP11objc_object -_ZN12_GLOBAL__N_130add_binary_constraint_to_queryERN5realm5QueryE23NSPredicateOperatorTypeRKNS_15ColumnReferenceEP11objc_object -_ZN12_GLOBAL__N_128add_link_constraint_to_queryERN5realm5QueryE23NSPredicateOperatorTypeRKNS_15ColumnReferenceEP9RLMObject -_ZN5realm5ValueIbEC2Eb -_ZN5realm5ValueINS_8DateTimeEEC2ES1_ -_ZN5realm8BasicRowIKNS_5TableEED2Ev -_ZN5realm7CompareINS_5EqualEiNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_5EqualEiNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_5EqualEiNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_5EqualEiNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_5EqualEiNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_5EqualEiNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_5EqualEiNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm5ValueIiEC2Ev -_ZN5realm7CompareINS_5EqualEiNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_ED1Ev -_ZN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_ED0Ev -_ZNK5realm7CompareINS_8NotEqualEiNS_7SubexprES2_E10find_firstEmm -_ZN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_E14set_base_tableEPKNS_5TableE -_ZNK5realm7CompareINS_8NotEqualEiNS_7SubexprES2_E14get_base_tableEv -_ZNK5realm7CompareINS_8NotEqualEiNS_7SubexprES2_E5cloneEPNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEE -_ZN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_E20apply_handover_patchERNSt3__16vectorINS4_10unique_ptrINS_22QueryNodeHandoverPatchENS4_14default_deleteIS7_EEEENS4_9allocatorISA_EEEERNS_5GroupE -_ZN5realm7CompareINS_8NotEqualEiNS_7SubexprES2_EC2ERKS3_PNSt3__16vectorINS6_10unique_ptrINS_22QueryNodeHandoverPatchENS6_14default_deleteIS9_EEEENS6_9allocatorISC_EEEE -_ZN12_GLOBAL__N_146update_query_with_function_subquery_expressionEP9RLMSchemaP15RLMObjectSchemaRN5realm5QueryEP12NSExpression23NSPredicateOperatorTypeS8_ -_ZN12_GLOBAL__N_152simplify_self_value_for_key_path_function_expressionEP12NSExpression -_ZNK5realm8SubQueryINS_4LinkEE5countEv -_ZN5realm13SubQueryCountD1Ev -_ZN5realm8SubQueryINS_4LinkEEC2ENS_7ColumnsIS1_EENS_5QueryE -_ZN5realm13SubQueryCountC2ENS_5QueryENS_7LinkMapE -_ZN5realm13SubQueryCountD0Ev -_ZNK5realm13SubQueryCount5cloneEPNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEE -_ZN5realm13SubQueryCount20apply_handover_patchERNSt3__16vectorINS1_10unique_ptrINS_22QueryNodeHandoverPatchENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEERNS_5GroupE -_ZN5realm13SubQueryCount14set_base_tableEPKNS_5TableE -_ZNK5realm13SubQueryCount14get_base_tableEv -_ZN5realm13SubQueryCount8evaluateEmRNS_9ValueBaseE -_ZN5realm13SubQueryCountC2ERKS0_PNSt3__16vectorINS3_10unique_ptrINS_22QueryNodeHandoverPatchENS3_14default_deleteIS6_EEEENS3_9allocatorIS9_EEEE -_ZN5realm26SubQueryCountHandoverPatchD1Ev -_ZN5realm26SubQueryCountHandoverPatchD0Ev -_ZN12_GLOBAL__N_115FalseExpressionD1Ev -_ZN12_GLOBAL__N_115FalseExpressionD0Ev -_ZNK12_GLOBAL__N_115FalseExpression10find_firstEmm -_ZN12_GLOBAL__N_115FalseExpression14set_base_tableEPKN5realm5TableE -_ZNK12_GLOBAL__N_115FalseExpression14get_base_tableEv -_ZNK12_GLOBAL__N_115FalseExpression5cloneEPNSt3__16vectorINS1_10unique_ptrIN5realm22QueryNodeHandoverPatchENS1_14default_deleteIS5_EEEENS1_9allocatorIS8_EEEE -_unnamed_cfstring_.18 -_unnamed_cfstring_.20 -_unnamed_cfstring_.22 -_unnamed_cfstring_.24 -OBJC_CLASSLIST_REFERENCES_$_.35 -OBJC_CLASSLIST_REFERENCES_$_.40 -_unnamed_cfstring_.53 -_ZTVN12_GLOBAL__N_114TrueExpressionE -_ZTSN12_GLOBAL__N_114TrueExpressionE -_ZTIN12_GLOBAL__N_114TrueExpressionE -.str.99 -_unnamed_cfstring_.100 -_unnamed_cfstring_.102 -_unnamed_cfstring_.106 -.str.109 -_unnamed_cfstring_.110 -_unnamed_cfstring_.114 -.str.115 -_unnamed_cfstring_.116 -.str.117 -_unnamed_cfstring_.118 -_unnamed_cfstring_.120 -OBJC_METH_VAR_NAME_.121 -OBJC_SELECTOR_REFERENCES_.122 -OBJC_SELECTOR_REFERENCES_.124 -_unnamed_cfstring_.126 -OBJC_SELECTOR_REFERENCES_.134 -_unnamed_cfstring_.142 -_unnamed_cfstring_.144 -_unnamed_cfstring_.152 -_unnamed_cfstring_.156 -_unnamed_cfstring_.163 -OBJC_SELECTOR_REFERENCES_.165 -.str.168 -_unnamed_cfstring_.169 -_unnamed_cfstring_.175 -_unnamed_cfstring_.177 -_unnamed_cfstring_.179 -.str.180 -_unnamed_cfstring_.181 -.str.182 -.str.185 -.str.187 -.str.188 -_unnamed_cfstring_.190 -_unnamed_cfstring_.196 -_unnamed_cfstring_.198 -_unnamed_cfstring_.200 -_unnamed_cfstring_.202 -_unnamed_cfstring_.204 -_unnamed_cfstring_.206 -_unnamed_cfstring_.210 -_unnamed_cfstring_.212 -_unnamed_cfstring_.216 -_unnamed_cfstring_.218 -__func__._ZN12_GLOBAL__N_140ValueOfTypeWithCollectionOperationHelperIxLNS_19CollectionOperation4TypeE0EE7convertERN5realm5QueryERKS1_ -.str.223 -.str.226 -.str.228 -.str.230 -.str.232 -.str.234 -.str.240 -_unnamed_cfstring_.241 -.str.244 -_unnamed_cfstring_.245 -.str.246 -_unnamed_cfstring_.247 -.str.248 -_unnamed_cfstring_.249 -.str.250 -_unnamed_cfstring_.251 -.str.252 -_unnamed_cfstring_.253 -.str.254 -_unnamed_cfstring_.255 -.str.256 -_unnamed_cfstring_.257 -.str.258 -_unnamed_cfstring_.259 -.str.260 -_unnamed_cfstring_.261 -.str.262 -_unnamed_cfstring_.263 -.str.264 -_unnamed_cfstring_.265 -_unnamed_cfstring_.267 -.str.268 -_unnamed_cfstring_.269 -.str.270 -_unnamed_cfstring_.271 -.str.272 -_unnamed_cfstring_.273 -.str.274 -_unnamed_cfstring_.275 -.str.276 -.str.277 -_unnamed_cfstring_.278 -.str.279 -_unnamed_cfstring_.280 -.str.281 -_unnamed_cfstring_.282 -.str.285 -.str.286 -_unnamed_cfstring_.287 -_unnamed_cfstring_.289 -.str.290 -_unnamed_cfstring_.291 -OBJC_CLASSLIST_REFERENCES_$_.292 -.str.293 -_unnamed_cfstring_.294 -OBJC_METH_VAR_NAME_.295 -OBJC_SELECTOR_REFERENCES_.296 -OBJC_METH_VAR_NAME_.297 -OBJC_SELECTOR_REFERENCES_.298 -OBJC_METH_VAR_NAME_.299 -OBJC_SELECTOR_REFERENCES_.300 -OBJC_METH_VAR_NAME_.301 -OBJC_SELECTOR_REFERENCES_.302 -.str.303 -_unnamed_cfstring_.304 -.str.305 -_unnamed_cfstring_.306 -.str.307 -_unnamed_cfstring_.308 -OBJC_METH_VAR_NAME_.309 -OBJC_SELECTOR_REFERENCES_.310 -.str.311 -_unnamed_cfstring_.312 -OBJC_CLASSLIST_REFERENCES_$_.313 -OBJC_CLASSLIST_REFERENCES_$_.316 -.str.317 -_unnamed_cfstring_.318 -OBJC_CLASSLIST_REFERENCES_$_.319 -OBJC_CLASSLIST_REFERENCES_$_.320 -OBJC_METH_VAR_NAME_.321 -OBJC_SELECTOR_REFERENCES_.322 -OBJC_METH_VAR_NAME_.327 -OBJC_SELECTOR_REFERENCES_.328 -OBJC_METH_VAR_NAME_.329 -OBJC_SELECTOR_REFERENCES_.330 -.str.331 -_unnamed_cfstring_.332 -.str.333 -_unnamed_cfstring_.334 -.str.335 -_unnamed_cfstring_.336 -.str.337 -_unnamed_cfstring_.338 -.str.341 -_unnamed_cfstring_.342 -OBJC_METH_VAR_NAME_.343 -OBJC_SELECTOR_REFERENCES_.344 -.str.345 -_unnamed_cfstring_.346 -OBJC_METH_VAR_NAME_.347 -OBJC_SELECTOR_REFERENCES_.348 -.str.349 -_unnamed_cfstring_.350 -.str.351 -_unnamed_cfstring_.352 -.str.353 -_unnamed_cfstring_.354 -OBJC_METH_VAR_NAME_.355 -OBJC_SELECTOR_REFERENCES_.356 -OBJC_METH_VAR_NAME_.357 -OBJC_SELECTOR_REFERENCES_.358 -OBJC_METH_VAR_NAME_.359 -OBJC_SELECTOR_REFERENCES_.360 -OBJC_METH_VAR_NAME_.361 -OBJC_SELECTOR_REFERENCES_.362 -OBJC_METH_VAR_NAME_.363 -OBJC_SELECTOR_REFERENCES_.364 -OBJC_CLASSLIST_REFERENCES_$_.365 -OBJC_METH_VAR_NAME_.366 -OBJC_SELECTOR_REFERENCES_.367 -OBJC_METH_VAR_NAME_.368 -OBJC_SELECTOR_REFERENCES_.369 -OBJC_METH_VAR_NAME_.370 -OBJC_SELECTOR_REFERENCES_.371 -OBJC_METH_VAR_NAME_.372 -OBJC_SELECTOR_REFERENCES_.373 -.str.374 -.str.375 -.str.376 -_ZTVN12_GLOBAL__N_115FalseExpressionE -_ZTSN12_GLOBAL__N_115FalseExpressionE -_ZTIN12_GLOBAL__N_115FalseExpressionE -.str.377 -_unnamed_cfstring_.378 -.str.379 -_unnamed_cfstring_.380 -.str.381 -_unnamed_cfstring_.382 -.str.383 -_unnamed_cfstring_.384 -.str.385 -_unnamed_cfstring_.386 -.memset_pattern -.memset_pattern.387 -__bit_reference -__make_ref -__align_it -__swap_allocator > -swap -__copy_unaligned >, false> -__copy_aligned >, false> -copy >, false> -__distance >, false, 0> > -distance >, false, 0> > -__construct_at_end >, false, 0> > -allocator -allocator -__push_back_slow_path -move -construct -__construct -RLMValidatedPropertyForSort -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMQueryUtil.mm -FalseExpression -clone -get_base_table -set_base_table -~FalseExpression -~SubQuery -~SubQueryCount -core/include/realm/query_expression.hpp -accumulate, int, (lambda at core/include/realm/query_expression.hpp:2244:71)> -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/numeric -evaluate -apply_handover_patch -SubQueryCount -forward -make_subexpr -move > *&> -swap > *> -move > &> -move_if_noexcept > > -forward > > -forward > -construct >, std::__1::unique_ptr > > -__construct >, std::__1::unique_ptr > > -__construct_backward > *> -forward > > &> -__emplace_back_slow_path -forward -move -construct >, realm::SubQueryCountHandoverPatch *> -__construct >, realm::SubQueryCountHandoverPatch *> -emplace_back -forward -move -~SubQueryCountHandoverPatch -~QueryNodeHandoverPatch -QueryNodeHandoverPatch -SubQueryCountHandoverPatch -move &> -move &> -LinkMap -move -count -operator== -operator== -link_map -SubQuery -column -resolveWithSubquery -add_numeric_constraint_to_query -is_self_value_for_key_path_function_expression -simplify_self_value_for_key_path_function_expression -update_query_with_subquery_count_expression -update_query_with_function_subquery_expression -update_query_with_function_expression -add_link_constraint_to_query -add_binary_constraint_to_query -move &> -add_string_constraint_to_query -add_numeric_constraint_to_query > -add_numeric_constraint_to_query > -add_numeric_constraint_to_query > -create -operator!= -create -operator== -create -operator>= -create -operator> -create -operator<= -only_numeric -create -operator< -add_numeric_constraint_to_query > -Compare -operator() -core/include/realm/query_conditions.hpp -compare -~Compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -operator!= -compare -Value -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -operator== -add_bool_constraint_to_query > -do_add_constraint_to_query -do_add_constraint_to_query -add_constraint_to_query -BasicRow -add_link_constraint_to_query -add_binary_constraint_to_query -convert -value_of_type_for_query -add_string_constraint_to_query -add_numeric_constraint_to_query, long long> -add_numeric_constraint_to_query, float> -add_numeric_constraint_to_query, double> -convert -value_of_type_for_query -create -create -create -operator>= -create -operator> -create -operator<= -forward -make_subexpr, realm::DateTime &> -unwrap -only_numeric -create -add_numeric_constraint_to_query, realm::DateTime> -convert -value_of_type_for_query -create -make_subexpr, bool &> -create -add_bool_constraint_to_query, bool> -do_add_constraint_to_query<(anonymous namespace)::ColumnReference, id> -is_nsnull -add_constraint_to_query<(anonymous namespace)::ColumnReference, id> -validate_property_value -process_or_group<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMQueryUtil.mm:935:40)> -between_datetime -RLMDynamicCast -value_from_constant_expression_or_value -validate_and_extract_between_range -add_between_constraint_to_query -add_numeric_constraint_to_query > > -operator!= -operator== -operator>= -operator> -operator<= -only_numeric -create -operator< -add_numeric_constraint_to_query > > -add_numeric_constraint_to_query > > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Average, id, (anonymous namespace)::CollectionOperation> -add_numeric_constraint_to_query > > -add_numeric_constraint_to_query > > -add_numeric_constraint_to_query > > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Sum, id, (anonymous namespace)::CollectionOperation> -add_numeric_constraint_to_query > > -add_numeric_constraint_to_query > > -add_numeric_constraint_to_query > > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Maximum, id, (anonymous namespace)::CollectionOperation> -add_numeric_constraint_to_query > > -operator!= -operator== -operator>= -operator> -operator<= -~Value -NullableVector -Subexpr2 -forward &> -make_subexpr, const realm::Value &> -import -export_null -export2 -export_BinaryData -export2 -export_StringData -export2 -export_double -export2 -export_int64_t -export2 -export_float -export2 -export_int -export2 -export_bool -~Subexpr2 -~NullableVector -forward -make_subexpr, int &> -unwrap -only_numeric -create -operator< -add_numeric_constraint_to_query > > -add_numeric_constraint_to_query > > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Minimum, id, (anonymous namespace)::CollectionOperation> -operator!= -operator== -operator>= -operator> -operator<= -operator< -add_numeric_constraint_to_query -add_collection_operation_constraint_to_query -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, double> -value_of_type_for_query_with_collection_operation -create -create -create -create -create -only_numeric -create -add_numeric_constraint_to_query >, float> -value_of_type_for_query_with_collection_operation -create -create -create -create -create -only_numeric -create -add_numeric_constraint_to_query >, long long> -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Average, (anonymous namespace)::CollectionOperation, id> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, double> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, float> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, long long> -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Sum, (anonymous namespace)::CollectionOperation, id> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, double> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, float> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, long long> -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Maximum, (anonymous namespace)::CollectionOperation, id> -convert -value_of_type_for_query -value_of_type_for_query_with_collection_operation -create -create -create -create -create -forward -make_subexpr, double &> -unwrap -only_numeric -create -add_numeric_constraint_to_query >, double> -convert -value_of_type_for_query -value_of_type_for_query_with_collection_operation -create -create -create -create -create -forward -make_subexpr, float &> -unwrap -only_numeric -create -add_numeric_constraint_to_query >, float> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, long long> -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Minimum, (anonymous namespace)::CollectionOperation, id> -forward<__strong id &> -convert -value_of_type_for_query -value_of_type_for_query_with_collection_operation -create -create -create -create -create -make_subexpr, long long &> -unwrap -only_numeric -create -add_numeric_constraint_to_query -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation, id> -property -validate_comparison -update_query_with_collection_operator_expression -update_query_with_value_expression -string_compare -not_equal -string_compare -equal -string_compare -contains -string_compare -ends_with -string_compare -add_string_constraint_to_query > -add_numeric_constraint_to_query, realm::Columns > -add_numeric_constraint_to_query, realm::Columns > -add_numeric_constraint_to_query, realm::Columns > -create2 -create2 -create2 -create2 -create2 -clone_subexpr -create2 -add_numeric_constraint_to_query, realm::Columns > -add_bool_constraint_to_query, realm::Columns > -do_add_constraint_to_query<(anonymous namespace)::ColumnReference, (anonymous namespace)::ColumnReference> -UnaryLinkCompare -consume -FindNullLinks -~UnaryLinkCompare -forward -make_expression, realm::LinkMap &> -has_links -add_binary_constraint_to_query -~Columns -make_value_for_link -Columns -forward &> -make_subexpr, const realm::Columns &> -inspect_all, std::__1::allocator >, realm::DataType> -inspect_value, std::__1::allocator >, realm::DataType> -inspect_all, std::__1::allocator >, realm::DataType, realm::DataType> -terminate -column -resolve -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -operator() -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -string_compare -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -string_compare -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -__search &, const char *, const char *> -search > -search -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -string_compare -suffix -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -string_compare -prefix -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -~ConstantStringValue -ConstantStringValue -~OptionalStorage -~Optional -value -constexpr_move &> -some > -some, std::__1::basic_string > -make_optional > -forward -make_subexpr -compare -__unwrap_iter -__copy -copy -forward &> -make_subexpr, const realm::Value &> -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -only_string -links_exist -create -string_compare -add_string_constraint_to_query -create -create -create -create -create -only_numeric -create -add_numeric_constraint_to_query, realm::null> -create -create -create -create -create -only_numeric -create -add_numeric_constraint_to_query, realm::null> -create -create -create -create -create -only_numeric -create -add_numeric_constraint_to_query, realm::null> -evaluate_internal > -evaluate_internal > > -forward &> -make_subexpr, const realm::Columns &> -column -resolve -operator() -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -compare -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -compare -__unwrap_iter -__copy -copy -forward &> -make_subexpr, const realm::Value &> -dealloc -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -unwrap -only_numeric -create -add_numeric_constraint_to_query, realm::null> -forward &> -make_subexpr, const realm::Columns &> -column -resolve -operator() -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -forward -make_subexpr, realm::null &> -forward &> -make_subexpr, const realm::Value &> -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -create -add_bool_constraint_to_query, realm::null> -do_add_constraint_to_query<(anonymous namespace)::ColumnReference, realm::null> -is_nsnull<(anonymous namespace)::ColumnReference> -add_constraint_to_query<(anonymous namespace)::ColumnReference, (anonymous namespace)::ColumnReference> -type -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Average, (anonymous namespace)::ColumnReference, (anonymous namespace)::CollectionOperation> -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Sum, (anonymous namespace)::ColumnReference, (anonymous namespace)::CollectionOperation> -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Maximum, (anonymous namespace)::ColumnReference, (anonymous namespace)::CollectionOperation> -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_numeric_constraint_to_query, realm::SubColumnAggregate > > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Minimum, (anonymous namespace)::ColumnReference, (anonymous namespace)::CollectionOperation> -add_numeric_constraint_to_query, realm::LinkCount> -add_collection_operation_constraint_to_query<(anonymous namespace)::ColumnReference, (anonymous namespace)::CollectionOperation> -~CollectionOperation -~ColumnReference -ColumnReference -move<(anonymous namespace)::ColumnReference &> -CollectionOperation -~SubColumnAggregate -value_of_type_for_query_with_collection_operation -result -apply -accumulate -initial_value -BaseAggregateOperation -Average -SubColumnAggregate -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -value_of_type_for_query_with_collection_operation -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -value_of_type_for_query_with_collection_operation -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Average, (anonymous namespace)::CollectionOperation, (anonymous namespace)::ColumnReference> -value_of_type_for_query_with_collection_operation -Sum -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -value_of_type_for_query_with_collection_operation -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -value_of_type_for_query_with_collection_operation -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Sum, (anonymous namespace)::CollectionOperation, (anonymous namespace)::ColumnReference> -value_of_type_for_query_with_collection_operation -max > -max -Maximum -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -value_of_type_for_query_with_collection_operation -max > -max -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -value_of_type_for_query_with_collection_operation -max > -max -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Maximum, (anonymous namespace)::CollectionOperation, (anonymous namespace)::ColumnReference> -column_type -column -resolve -value_of_type_for_query_with_collection_operation -~SubColumns -min > -min -Minimum -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -SubColumns -forward &> -make_subexpr, const realm::SubColumns &> -core/include/realm/array_basic_tpl.hpp -get_next -core/include/realm/impl/sequential_getter.hpp -cache_next -make_value_for_link -evaluate_internal > -core/include/realm/array_basic.hpp -calc_item_count -calc_byte_len -~BasicArray -BasicArray -~SequentialGetter -operator() > -forward *> -SequentialGetter -forward &> -make_subexpr, const realm::Columns &> -value_of_type_for_query_with_collection_operation -operator() -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -__unwrap_iter -__copy -copy -forward &> -make_subexpr, const realm::Value &> -is_null_float -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -add_numeric_constraint_to_query >, realm::Columns > -column -resolve -value_of_type_for_query_with_collection_operation -min > -min -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -forward &> -make_subexpr, const realm::SubColumns &> -make_value_for_link -evaluate_internal > -operator() > -forward *> -forward &> -make_subexpr, const realm::Columns &> -value_of_type_for_query_with_collection_operation -operator() -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -__unwrap_iter -__copy -copy -forward &> -make_subexpr, const realm::Value &> -is_null_float -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -add_numeric_constraint_to_query >, realm::Columns > -value_of_type_for_query_with_collection_operation -__unwrap_iter -__copy -copy -forward &> -make_subexpr, const realm::Value &> -min > -min -sort > -sort -sort -forward > &> -make_subexpr >, const realm::SubColumnAggregate > &> -column_index -forward &> -make_subexpr, const realm::SubColumns &> -column -value_of_type_for_query_with_collection_operation -add_numeric_constraint_to_query >, realm::Columns > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation::Type::Minimum, (anonymous namespace)::CollectionOperation, (anonymous namespace)::ColumnReference> -~LinkCount -forward<(anonymous namespace)::ColumnReference &> -get_chunk -forward -OptionalStorage -some -some -null_value -operator!= -find, realm::DataType> -operator== -only_unary_links -make_value_for_link -MakeLinkVector -get_links -~ArrayIntNull -ArrayIntNull -operator() -operator() -forward -~SequentialGetterBase -SequentialGetterBase -operator== > -forward &> -make_subexpr, const realm::Columns &> -target_table -forward -resolve -value_of_type_for_query_with_collection_operation -~LinkMap -BasicRowExpr -bind_ptr -core/include/realm/column_linklist.hpp -map_links -LinkMapFunction -CountLinks -count_links -LinkCount -forward -make_subexpr -index -base_table -__construct_range_forward -__construct_at_end -forward > -__construct_range_forward -__construct_at_end -forward > -forward &> -make_subexpr, const realm::Columns &> -move -swap -__construct_backward -forward &> -__push_back_slow_path -move -forward -construct -__construct -move -swap -__construct_backward -forward &> -__push_back_slow_path -move -forward -construct -__construct -get_real_column_type -operator== -operator!= -__to_raw_pointer -__destroy -destroy -__to_raw_pointer -__destroy -destroy -forward -forward -move -swap -__construct_backward -forward &> -__push_back_slow_path -construct -__construct -link -operator== -operator!= -table_for_query -resolve -link_column -value_of_type_for_query_with_collection_operation -operatorName -operator() -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -minimum -move -__unwrap_iter -__copy -copy -Subexpr -ValueBase -forward &> -make_subexpr, const realm::Value &> -type_punning -get_null_float -type_punning -get_null_float -replace -find -~Subexpr -move > &> -forward -forward > -forward > > -make_expression, std::__1::unique_ptr >, std::__1::unique_ptr > > -add_numeric_constraint_to_query > -add_collection_operation_constraint_to_query<(anonymous namespace)::CollectionOperation, (anonymous namespace)::ColumnReference> -column_reference_from_key_path -core/include/realm/column_fwd.hpp -name_for_type -~BadOptionalAccess -BadOptionalAccess -type_for_name -move &> -forward<(anonymous namespace)::ColumnReference> -operator=<(anonymous namespace)::ColumnReference, void> -get_collection_operation_name_from_key_path -collection_operation_from_key_path -key_path_contains_collection_operator -update_query_with_column_expression -RLMPredicateException -process_or_group<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMQueryUtil.mm:1085:61)> -forward -move -Expression -TrueExpression -~TrueExpression -~Expression -update_query_with_predicate -RLMPrecondition -RLMSortOrderFromDescriptors -RLMUpdateQueryWithPredicate -RLMValidatedProperty --[RLMRealmNotificationToken stop] --[RLMRealmNotificationToken dealloc] --[RLMRealmNotificationToken realm] --[RLMRealmNotificationToken setRealm:] --[RLMRealmNotificationToken block] --[RLMRealmNotificationToken setBlock:] --[RLMRealmNotificationToken .cxx_destruct] -+[RLMRealm isCoreDebug] -+[RLMRealm initialize] --[RLMRealm isEmpty] --[RLMRealm verifyThread] --[RLMRealm inWriteTransaction] --[RLMRealm path] --[RLMRealm group] --[RLMRealm isReadOnly] --[RLMRealm autorefresh] --[RLMRealm setAutorefresh:] -+[RLMRealm writeableTemporaryPathForFile:] -+[RLMRealm defaultRealm] -+[RLMRealm realmWithPath:] -+[RLMRealm realmWithPath:key:readOnly:inMemory:dynamic:schema:error:] -+[RLMRealm realmWithSharedRealm:schema:] -_ZL25RLMRealmSetSchemaAndAlignP8RLMRealmP9RLMSchema -_ZL14RLMAutoreleaseP11objc_object -_ZN5realm4util4File16PermissionDeniedD1Ev -+[RLMRealm openSharedRealm:error:] -+[RLMRealm realmWithConfiguration:error:] -+[RLMRealm resetRealmState] --[RLMRealm verifyNotificationsAreSupported] --[RLMRealm addNotificationBlock:] --[RLMRealm removeNotification:] --[RLMRealm sendNotifications:] --[RLMRealm configuration] --[RLMRealm beginWriteTransaction] --[RLMRealm commitWriteTransaction] --[RLMRealm commitWriteTransaction:] --[RLMRealm transactionWithBlock:] --[RLMRealm transactionWithBlock:error:] --[RLMRealm cancelWriteTransaction] --[RLMRealm invalidate] --[RLMRealm compact] --[RLMRealm dealloc] --[RLMRealm refresh] --[RLMRealm addObject:] --[RLMRealm addObjects:] --[RLMRealm addOrUpdateObject:] --[RLMRealm addOrUpdateObjectsFromArray:] --[RLMRealm deleteObject:] --[RLMRealm deleteObjects:] --[RLMRealm deleteAllObjects] --[RLMRealm allObjects:] --[RLMRealm objects:where:] --[RLMRealm objects:where:args:] --[RLMRealm objects:withPredicate:] --[RLMRealm objectWithClassName:forPrimaryKey:] -+[RLMRealm schemaVersionAtPath:error:] -+[RLMRealm schemaVersionAtPath:encryptionKey:error:] -+[RLMRealm migrateRealm:] --[RLMRealm createObject:withValue:] --[RLMRealm writeCopyToPath:key:error:] --[RLMRealm writeCopyToPath:error:] --[RLMRealm writeCopyToPath:encryptionKey:error:] --[RLMRealm registerEnumerator:] --[RLMRealm unregisterEnumerator:] --[RLMRealm detachAllEnumerators] --[RLMRealm schema] --[RLMRealm setSchema:] --[RLMRealm dynamic] --[RLMRealm .cxx_destruct] --[RLMRealm .cxx_construct] -_ZN5realm4util4File16PermissionDeniedD0Ev -_ZN5realm4util4File11AccessErrorD1Ev -_ZN5realm4util4File11AccessErrorD0Ev -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EED1Ev -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EED0Ev -_ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE7__cloneEv -_ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE7__cloneEPNS0_6__baseIS9_EE -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE7destroyEv -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE18destroy_deallocateEv -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEclEOS8_SB_ -_ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE6targetERKSt9type_info -_ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE11target_typeEv -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EED1Ev -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EED0Ev -_ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE7__cloneEv -_ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE7__cloneEPNS0_6__baseIS9_EE -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE7destroyEv -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE18destroy_deallocateEv -_ZNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEclEOS8_SB_ -_ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE6targetERKSt9type_info -_ZNKSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EE11target_typeEv -OBJC_IVAR_$_RLMRealmNotificationToken._realm -OBJC_IVAR_$_RLMRealmNotificationToken._block -l_OBJC_METACLASS_RO_$_RLMRealmNotificationToken -OBJC_CLASS_NAME_.3 -OBJC_METH_VAR_TYPE_.7 -OBJC_METH_VAR_TYPE_.9 -OBJC_METH_VAR_TYPE_.11 -l_OBJC_$_INSTANCE_METHODS_RLMRealmNotificationToken -l_OBJC_$_INSTANCE_VARIABLES_RLMRealmNotificationToken -OBJC_PROP_NAME_ATTR_.18 -OBJC_PROP_NAME_ATTR_.19 -OBJC_PROP_NAME_ATTR_.20 -l_OBJC_$_PROP_LIST_RLMRealmNotificationToken -l_OBJC_CLASS_RO_$_RLMRealmNotificationToken -_unnamed_cfstring_.26 -_ZZ22+[RLMRealm initialize]E11initialized -OBJC_CLASSLIST_REFERENCES_$_.33 -OBJC_METH_VAR_NAME_.55 -OBJC_SELECTOR_REFERENCES_.56 -OBJC_IVAR_$_RLMRealm._dynamic -_ZZ41+[RLMRealm realmWithConfiguration:error:]E8initLock -_ZGVZ41+[RLMRealm realmWithConfiguration:error:]E8initLock -OBJC_METH_VAR_NAME_.94 -OBJC_SELECTOR_REFERENCES_.95 -OBJC_IVAR_$_RLMRealm._notificationHandlers -OBJC_CLASSLIST_REFERENCES_$_.120 -OBJC_CLASSLIST_REFERENCES_$_.123 -OBJC_IVAR_$_RLMRealm._schema -OBJC_METH_VAR_NAME_.136 -OBJC_SELECTOR_REFERENCES_.137 -_unnamed_cfstring_.147 -OBJC_CLASSLIST_SUP_REFS_$_.148 -OBJC_SELECTOR_REFERENCES_.153 -_unnamed_cfstring_.155 -_unnamed_cfstring_.159 -OBJC_SELECTOR_REFERENCES_.163 -OBJC_CLASS_NAME_.172 -OBJC_METH_VAR_NAME_.173 -OBJC_SELECTOR_REFERENCES_.174 -OBJC_CLASSLIST_REFERENCES_$_.175 -OBJC_SELECTOR_REFERENCES_.179 -OBJC_CLASSLIST_REFERENCES_$_.180 -OBJC_SELECTOR_REFERENCES_.184 -OBJC_METH_VAR_NAME_.185 -OBJC_SELECTOR_REFERENCES_.186 -OBJC_CLASSLIST_REFERENCES_$_.187 -_unnamed_cfstring_.189 -OBJC_CLASSLIST_REFERENCES_$_.190 -OBJC_METH_VAR_NAME_.191 -OBJC_SELECTOR_REFERENCES_.192 -OBJC_SELECTOR_REFERENCES_.194 -OBJC_SELECTOR_REFERENCES_.198 -OBJC_SELECTOR_REFERENCES_.200 -OBJC_IVAR_$_RLMRealm._collectionEnumerators -OBJC_CLASS_NAME_.205 -OBJC_METH_VAR_NAME_.209 -OBJC_METH_VAR_TYPE_.210 -OBJC_METH_VAR_NAME_.215 -OBJC_METH_VAR_TYPE_.216 -OBJC_METH_VAR_TYPE_.217 -OBJC_METH_VAR_TYPE_.218 -OBJC_METH_VAR_NAME_.220 -OBJC_METH_VAR_TYPE_.221 -l_OBJC_$_CLASS_METHODS_RLMRealm -l_OBJC_METACLASS_RO_$_RLMRealm -OBJC_CLASS_NAME_.224 -OBJC_METH_VAR_NAME_.230 -OBJC_METH_VAR_NAME_.236 -OBJC_METH_VAR_NAME_.242 -OBJC_METH_VAR_TYPE_.251 -OBJC_METH_VAR_NAME_.252 -OBJC_METH_VAR_NAME_.253 -OBJC_METH_VAR_TYPE_.254 -OBJC_METH_VAR_TYPE_.256 -OBJC_METH_VAR_NAME_.259 -l_OBJC_$_INSTANCE_METHODS_RLMRealm -OBJC_METH_VAR_NAME_.265 -OBJC_METH_VAR_TYPE_.266 -l_OBJC_$_INSTANCE_VARIABLES_RLMRealm -OBJC_PROP_NAME_ATTR_.269 -OBJC_PROP_NAME_ATTR_.270 -OBJC_PROP_NAME_ATTR_.271 -OBJC_PROP_NAME_ATTR_.272 -OBJC_PROP_NAME_ATTR_.273 -OBJC_PROP_NAME_ATTR_.274 -OBJC_PROP_NAME_ATTR_.275 -OBJC_PROP_NAME_ATTR_.276 -OBJC_PROP_NAME_ATTR_.277 -OBJC_PROP_NAME_ATTR_.278 -l_OBJC_$_PROP_LIST_RLMRealm -l_OBJC_CLASS_RO_$_RLMRealm -_ZZL31shouldForciblyDisableEncryptionvE17disableEncryption -_ZGVZL31shouldForciblyDisableEncryptionvE17disableEncryption -OBJC_METH_VAR_NAME_.287 -OBJC_SELECTOR_REFERENCES_.288 -OBJC_METH_VAR_NAME_.289 -OBJC_SELECTOR_REFERENCES_.290 -OBJC_METH_VAR_NAME_.291 -OBJC_SELECTOR_REFERENCES_.292 -OBJC_METH_VAR_NAME_.293 -OBJC_SELECTOR_REFERENCES_.294 -OBJC_SELECTOR_REFERENCES_.295 -.str.296 -_unnamed_cfstring_.297 -_ZTVNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE -_ZTSNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE -_ZTINSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE -OBJC_CLASSLIST_REFERENCES_$_.299 -OBJC_METH_VAR_NAME_.300 -OBJC_SELECTOR_REFERENCES_.301 -OBJC_METH_VAR_NAME_.302 -OBJC_SELECTOR_REFERENCES_.303 -_ZTSZ41+[RLMRealm realmWithConfiguration:error:]E3$_0 -_ZTIZ41+[RLMRealm realmWithConfiguration:error:]E3$_0 -_ZTVNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE -_ZTSNSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE -_ZTINSt3__110__function6__funcIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1NS_9allocatorIS2_EEFvNS_10shared_ptrIN5realm5RealmEEES8_EEE -_ZTSZ41+[RLMRealm realmWithConfiguration:error:]E3$_1 -_ZTIZ41+[RLMRealm realmWithConfiguration:error:]E3$_1 -RLMDynamicCast -forward > -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &> -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &, std::__1::shared_ptr, std::__1::shared_ptr > -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &, std::__1::shared_ptr, std::__1::shared_ptr > -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &> -forward &> -forward_as_tuple &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &&> -forward &&> -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &> -forward -forward_as_tuple -allocator, void (std::__1::shared_ptr, std::__1::shared_ptr)> > -forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > > -forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> *> -move, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&, 0> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37), false> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -operator=<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:342:37)> -move, std::__1::shared_ptr)> *&> -swap, std::__1::shared_ptr)> *> -forward > -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &> -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &, std::__1::shared_ptr, std::__1::shared_ptr > -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &, std::__1::shared_ptr, std::__1::shared_ptr > -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &> -forward &> -forward_as_tuple &> -_ZZ41+[RLMRealm realmWithConfiguration:error:]EN3$_0C2ERKS_ -_ZZ41+[RLMRealm realmWithConfiguration:error:]EN3$_0C1ERKS_ -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &&> -forward &&> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &> -forward -forward_as_tuple -allocator, void (std::__1::shared_ptr, std::__1::shared_ptr)> > -forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > > -forward, void (std::__1::shared_ptr, std::__1::shared_ptr)> *> -move, void (std::__1::shared_ptr, std::__1::shared_ptr)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&, 0> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37), false> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -_ZZ41+[RLMRealm realmWithConfiguration:error:]EN3$_0C2EOS_ -_ZZ41+[RLMRealm realmWithConfiguration:error:]EN3$_0C1EOS_ -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -operator=<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.mm:324:37)> -CheckReadWrite -is_in_read_transaction -~PermissionDenied -core/include/realm/util/file.hpp -~AccessError -AccessError -PermissionDenied -path -kind -RLMAutorelease -RLMCopyColumnMapping -RLMRealmSetSchemaAndAlign -set_auto_refresh -auto_refresh -shouldForciblyDisableEncryption --[RLMRealm .cxx_construct] --[RLMRealm .cxx_destruct] --[RLMRealm dynamic] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm_Private.h --[RLMRealm setSchema:] --[RLMRealm schema] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealm.h --[RLMRealm detachAllEnumerators] --[RLMRealm unregisterEnumerator:] --[RLMRealm registerEnumerator:] --[RLMRealm writeCopyToPath:encryptionKey:error:] --[RLMRealm writeCopyToPath:error:] --[RLMRealm writeCopyToPath:key:error:] --[RLMRealm createObject:withValue:] -+[RLMRealm migrateRealm:] -+[RLMRealm schemaVersionAtPath:encryptionKey:error:] -+[RLMRealm schemaVersionAtPath:error:] --[RLMRealm objectWithClassName:forPrimaryKey:] --[RLMRealm objects:withPredicate:] --[RLMRealm objects:where:args:] --[RLMRealm objects:where:] --[RLMRealm allObjects:] --[RLMRealm deleteAllObjects] --[RLMRealm deleteObjects:] --[RLMRealm deleteObject:] --[RLMRealm addOrUpdateObjectsFromArray:] --[RLMRealm addOrUpdateObject:] --[RLMRealm addObjects:] --[RLMRealm addObject:] --[RLMRealm refresh] --[RLMRealm dealloc] --[RLMRealm compact] --[RLMRealm invalidate] --[RLMRealm cancelWriteTransaction] --[RLMRealm transactionWithBlock:error:] --[RLMRealm transactionWithBlock:] --[RLMRealm commitWriteTransaction:] --[RLMRealm commitWriteTransaction] --[RLMRealm beginWriteTransaction] --[RLMRealm configuration] --[RLMRealm sendNotifications:] --[RLMRealm removeNotification:] --[RLMRealm addNotificationBlock:] --[RLMRealm verifyNotificationsAreSupported] -+[RLMRealm resetRealmState] -+[RLMRealm realmWithConfiguration:error:] -+[RLMRealm openSharedRealm:error:] -RLMRealmTranslateException -+[RLMRealm realmWithSharedRealm:schema:] -+[RLMRealm realmWithPath:key:readOnly:inMemory:dynamic:schema:error:] -+[RLMRealm realmWithPath:] -+[RLMRealm defaultRealm] -+[RLMRealm writeableTemporaryPathForFile:] --[RLMRealm setAutorefresh:] --[RLMRealm autorefresh] --[RLMRealm isReadOnly] --[RLMRealm group] --[RLMRealm path] --[RLMRealm inWriteTransaction] --[RLMRealm verifyThread] --[RLMRealm isEmpty] -+[RLMRealm initialize] -+[RLMRealm isCoreDebug] -RLMRealmValidatedEncryptionKey --[RLMRealmNotificationToken .cxx_destruct] --[RLMRealmNotificationToken setBlock:] --[RLMRealmNotificationToken block] --[RLMRealmNotificationToken setRealm:] --[RLMRealmNotificationToken realm] --[RLMRealmNotificationToken dealloc] --[RLMRealmNotificationToken stop] -RLMDisableSyncToDisk -_ZNK12_GLOBAL__N_130PredicateExpressionTransformer5visitEP11NSPredicate -_ZNK12_GLOBAL__N_130PredicateExpressionTransformer5visitEP12NSExpression -OBJC_CLASSLIST_REFERENCES_$_.3 -OBJC_CLASSLIST_REFERENCES_$_.18 -OBJC_SELECTOR_REFERENCES_.43 -OBJC_SELECTOR_REFERENCES_.55 -visit -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMPredicateUtil.mm -PredicateExpressionTransformer -transformPredicate --[RLMRealmConfiguration config] -+[RLMRealmConfiguration defaultConfiguration] -+[RLMRealmConfiguration setDefaultConfiguration:] -+[RLMRealmConfiguration rawDefaultConfiguration] -+[RLMRealmConfiguration resetRealmConfigurationState] --[RLMRealmConfiguration init] --[RLMRealmConfiguration copyWithZone:] --[RLMRealmConfiguration description] --[RLMRealmConfiguration path] --[RLMRealmConfiguration setPath:] -_ZL22RLMNSStringToStdStringRNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEP8NSString --[RLMRealmConfiguration inMemoryIdentifier] --[RLMRealmConfiguration setInMemoryIdentifier:] --[RLMRealmConfiguration encryptionKey] --[RLMRealmConfiguration setEncryptionKey:] --[RLMRealmConfiguration readOnly] --[RLMRealmConfiguration setReadOnly:] --[RLMRealmConfiguration schemaVersion] --[RLMRealmConfiguration setSchemaVersion:] --[RLMRealmConfiguration objectClasses] --[RLMRealmConfiguration setObjectClasses:] --[RLMRealmConfiguration setDynamic:] --[RLMRealmConfiguration cache] --[RLMRealmConfiguration setCache:] --[RLMRealmConfiguration setCustomSchema:] --[RLMRealmConfiguration setDisableFormatUpgrade:] --[RLMRealmConfiguration disableFormatUpgrade] --[RLMRealmConfiguration migrationBlock] --[RLMRealmConfiguration setMigrationBlock:] --[RLMRealmConfiguration dynamic] --[RLMRealmConfiguration customSchema] --[RLMRealmConfiguration .cxx_destruct] --[RLMRealmConfiguration .cxx_construct] -_unnamed_cfstring_.14 -_ZL33c_RLMRealmConfigurationProperties -_unnamed_cfstring_.16 -OBJC_IVAR_$_RLMRealmConfiguration._config -_ZZ29-[RLMRealmConfiguration init]E16defaultRealmPath -_ZGVZ29-[RLMRealmConfiguration init]E16defaultRealmPath -OBJC_IVAR_$_RLMRealmConfiguration._dynamic -OBJC_IVAR_$_RLMRealmConfiguration._migrationBlock -OBJC_IVAR_$_RLMRealmConfiguration._customSchema -_unnamed_cfstring_.39 -_unnamed_cfstring_.49 -_unnamed_cfstring_.57 -OBJC_CLASSLIST_REFERENCES_$_.60 -OBJC_CLASSLIST_REFERENCES_$_.71 -_unnamed_cfstring_.77 -_unnamed_cfstring_.81 -OBJC_METH_VAR_NAME_.82 -OBJC_SELECTOR_REFERENCES_.83 -OBJC_CLASSLIST_REFERENCES_$_.84 -OBJC_METH_VAR_TYPE_.93 -OBJC_METH_VAR_TYPE_.95 -l_OBJC_$_CLASS_METHODS_RLMRealmConfiguration -OBJC_METH_VAR_TYPE_.97 -OBJC_CLASS_NAME_.98 -l_OBJC_CLASS_PROTOCOLS_$_RLMRealmConfiguration -l_OBJC_METACLASS_RO_$_RLMRealmConfiguration -OBJC_METH_VAR_NAME_.105 -OBJC_METH_VAR_TYPE_.108 -OBJC_METH_VAR_NAME_.109 -OBJC_METH_VAR_TYPE_.110 -OBJC_METH_VAR_TYPE_.112 -OBJC_METH_VAR_TYPE_.113 -l_OBJC_$_INSTANCE_METHODS_RLMRealmConfiguration -l_OBJC_$_INSTANCE_VARIABLES_RLMRealmConfiguration -OBJC_PROP_NAME_ATTR_.137 -OBJC_PROP_NAME_ATTR_.138 -OBJC_PROP_NAME_ATTR_.139 -OBJC_PROP_NAME_ATTR_.140 -OBJC_PROP_NAME_ATTR_.141 -OBJC_PROP_NAME_ATTR_.142 -OBJC_PROP_NAME_ATTR_.143 -OBJC_PROP_NAME_ATTR_.144 -OBJC_PROP_NAME_ATTR_.145 -OBJC_PROP_NAME_ATTR_.146 -OBJC_PROP_NAME_ATTR_.147 -OBJC_PROP_NAME_ATTR_.149 -OBJC_PROP_NAME_ATTR_.150 -OBJC_PROP_NAME_ATTR_.151 -OBJC_PROP_NAME_ATTR_.152 -OBJC_PROP_NAME_ATTR_.153 -OBJC_PROP_NAME_ATTR_.154 -l_OBJC_$_PROP_LIST_RLMRealmConfiguration -l_OBJC_CLASS_RO_$_RLMRealmConfiguration -OBJC_SELECTOR_REFERENCES_.158 -__destroy -destroy -forward -construct -__construct -__construct_range_forward -__construct_at_end -__advance -advance -__distance -distance -assign -__to_raw_pointer -RLMNSStringToStdString -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealmConfiguration.mm --[RLMRealmConfiguration .cxx_construct] --[RLMRealmConfiguration .cxx_destruct] --[RLMRealmConfiguration customSchema] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealmConfiguration_Private.h --[RLMRealmConfiguration dynamic] --[RLMRealmConfiguration setMigrationBlock:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealmConfiguration.h --[RLMRealmConfiguration migrationBlock] --[RLMRealmConfiguration disableFormatUpgrade] --[RLMRealmConfiguration setDisableFormatUpgrade:] --[RLMRealmConfiguration setCustomSchema:] --[RLMRealmConfiguration setCache:] --[RLMRealmConfiguration cache] --[RLMRealmConfiguration setDynamic:] --[RLMRealmConfiguration setObjectClasses:] --[RLMRealmConfiguration objectClasses] --[RLMRealmConfiguration setSchemaVersion:] --[RLMRealmConfiguration schemaVersion] --[RLMRealmConfiguration setReadOnly:] --[RLMRealmConfiguration readOnly] --[RLMRealmConfiguration setEncryptionKey:] --[RLMRealmConfiguration encryptionKey] --[RLMRealmConfiguration setInMemoryIdentifier:] --[RLMRealmConfiguration inMemoryIdentifier] --[RLMRealmConfiguration setPath:] --[RLMRealmConfiguration path] --[RLMRealmConfiguration description] --[RLMRealmConfiguration copyWithZone:] --[RLMRealmConfiguration init] -+[RLMRealmConfiguration resetRealmConfigurationState] -+[RLMRealmConfiguration rawDefaultConfiguration] -+[RLMRealmConfiguration setDefaultConfiguration:] -+[RLMRealmConfiguration defaultConfiguration] --[RLMRealmConfiguration config] -RLMRealmPathForFile -RLMRealmPathForFileAndBundleIdentifier -_ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEU8__strongP10NSMapTableNS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEED1Ev -_ZZ34RLMInstallUncaughtExceptionHandlervEN3$_08__invokeEP11NSException -_ZN12_GLOBAL__N_121RLMNotificationHelperD1Ev -_ZN12_GLOBAL__N_121RLMNotificationHelperD0Ev -_ZNK12_GLOBAL__N_121RLMNotificationHelper25can_deliver_notificationsEv -_ZN12_GLOBAL__N_121RLMNotificationHelper17changes_availableEv -_ZN12_GLOBAL__N_121RLMNotificationHelper17get_observed_rowsEv -_ZN12_GLOBAL__N_121RLMNotificationHelper11will_changeERKNSt3__16vectorIN5realm14BindingContext13ObserverStateENS1_9allocatorIS5_EEEERKNS2_IPvNS6_ISB_EEEE -_ZN12_GLOBAL__N_121RLMNotificationHelper10did_changeERKNSt3__16vectorIN5realm14BindingContext13ObserverStateENS1_9allocatorIS5_EEEERKNS2_IPvNS6_ISB_EEEE -_GLOBAL__sub_I_RLMRealmUtil.mm -_ZL17s_realmCacheMutex -_ZL15s_realmsPerPath -OBJC_CLASSLIST_REFERENCES_$_.2 -_ZZ34RLMInstallUncaughtExceptionHandlervE15previousHandler -_ZGVZ34RLMInstallUncaughtExceptionHandlervE15previousHandler -_ZTVN12_GLOBAL__N_121RLMNotificationHelperE -_ZTSN12_GLOBAL__N_121RLMNotificationHelperE -_ZTIN12_GLOBAL__N_121RLMNotificationHelperE -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMRealmUtil.mm -forward -move -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__tree -/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/map -__destroy -destroy -__tree_right_rotate *> -__tree_left_rotate *> -__tree_balance_after_insert *> -__insert_node_at -move, NSMapTable *>, void *>, std::__1::__map_node_destructor, NSMapTable *>, void *> > > > &> -addressof -construct -__construct -forward &> -construct, const std::__1::basic_string &> -__construct, const std::__1::basic_string &> -forward, NSMapTable *>, void *> > > > -forward, NSMapTable *>, void *> *> -move, NSMapTable *>, void *> > > &> -__map_node_destructor -operator<, std::__1::allocator > -key_comp -value_comp -__find_equal_key -forward, std::__1::__value_type, NSMapTable *>, std::__1::less >, true> > -__tree_end_node -__tree -__map_value_compare -map -did_change -will_change -get_observed_rows -changes_available -can_deliver_notifications -~RLMNotificationHelper -~BindingContext -BindingContext -RLMNotificationHelper -__tree_is_left_child *> -__tree_min *> -__tree_next *> -__map_iterator -__tree_iterator -__begin_node -operator void (*)(NSException *) -addressof *> > -__end_node -__root -addressof, NSMapTable *> > -~__value_type -__destroy, NSMapTable *> > -destroy, NSMapTable *> > -~__tree -~map -RLMCreateBindingContext -RLMInstallUncaughtExceptionHandler -RLMClearRealmCache -RLMGetThreadLocalCachedRealmForPath -RLMGetAnyCachedRealmForPath -RLMCacheRealm --[RLMCancellationToken initWithToken:] --[RLMCancellationToken stop] --[RLMCancellationToken .cxx_destruct] --[RLMCancellationToken .cxx_construct] --[RLMFastEnumerator initWithCollection:objectSchema:] --[RLMFastEnumerator dealloc] --[RLMFastEnumerator detach] --[RLMFastEnumerator countByEnumeratingWithState:count:] --[RLMFastEnumerator .cxx_destruct] --[RLMFastEnumerator .cxx_construct] --[RLMResults initPrivate] -+[RLMResults resultsWithObjectSchema:results:] -_ZN5realm7ResultsaSEOS0_ --[RLMResults count] --[RLMResults objectClassName] --[RLMResults countByEnumeratingWithState:objects:count:] --[RLMResults indexOfObjectWhere:] --[RLMResults indexOfObjectWhere:args:] --[RLMResults indexOfObjectWithPredicate:] --[RLMResults objectAtIndex:] --[RLMResults firstObject] --[RLMResults lastObject] --[RLMResults indexOfObject:] --[RLMResults valueForKeyPath:] --[RLMResults valueForKey:] --[RLMResults setValue:forKey:] --[RLMResults _aggregateForKeyPath:method:methodName:] -_ZL24assertKeyPathIsNotNestedP8NSString --[RLMResults _minForKeyPath:] --[RLMResults _maxForKeyPath:] --[RLMResults _sumForKeyPath:] --[RLMResults _avgForKeyPath:] --[RLMResults _unionOfObjectsForKeyPath:] --[RLMResults _distinctUnionOfObjectsForKeyPath:] --[RLMResults _unionOfArraysForKeyPath:] --[RLMResults _distinctUnionOfArraysForKeyPath:] --[RLMResults objectsWhere:] --[RLMResults objectsWhere:args:] --[RLMResults objectsWithPredicate:] --[RLMResults sortedResultsUsingProperty:ascending:] --[RLMResults sortedResultsUsingDescriptors:] --[RLMResults objectAtIndexedSubscript:] --[RLMResults aggregate:method:methodName:] --[RLMResults minOfProperty:] --[RLMResults maxOfProperty:] --[RLMResults sumOfProperty:] --[RLMResults averageOfProperty:] --[RLMResults deleteObjectsFromRealm] --[RLMResults description] --[RLMResults indexInSource:] --[RLMResults tableView] --[RLMResults addNotificationBlock:] --[RLMResults realm] --[RLMResults objectSchema] --[RLMResults setObjectSchema:] --[RLMResults .cxx_destruct] --[RLMResults .cxx_construct] -_ZL10throwErrorP8NSString -___ZZ36-[RLMResults deleteObjectsFromRealm]ENK4$_13clEv_block_invoke -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEED1Ev -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEED0Ev -_ZNKSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE7__cloneEv -_ZNKSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE7__cloneEPNS0_6__baseIS6_EE -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE7destroyEv -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE18destroy_deallocateEv -_ZNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEEclEOS5_ -_ZNKSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE6targetERKSt9type_info -_ZNKSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEE11target_typeEv -l_OBJC_METACLASS_RO_$_RLMNotificationToken -l_OBJC_CLASS_RO_$_RLMNotificationToken -OBJC_IVAR_$_RLMCancellationToken._token -OBJC_CLASS_NAME_.1 -l_OBJC_METACLASS_RO_$_RLMCancellationToken -l_OBJC_$_INSTANCE_METHODS_RLMCancellationToken -l_OBJC_$_INSTANCE_VARIABLES_RLMCancellationToken -l_OBJC_CLASS_RO_$_RLMCancellationToken -OBJC_CLASSLIST_SUP_REFS_$_.10 -OBJC_IVAR_$_RLMFastEnumerator._realm -OBJC_IVAR_$_RLMFastEnumerator._objectSchema -OBJC_IVAR_$_RLMFastEnumerator._tableView -OBJC_IVAR_$_RLMFastEnumerator._collection -OBJC_IVAR_$_RLMFastEnumerator._strongBuffer -OBJC_CLASS_NAME_.35 -l_OBJC_METACLASS_RO_$_RLMFastEnumerator -l_OBJC_$_INSTANCE_METHODS_RLMFastEnumerator -OBJC_METH_VAR_TYPE_.43 -OBJC_METH_VAR_TYPE_.45 -OBJC_METH_VAR_TYPE_.47 -OBJC_METH_VAR_TYPE_.49 -OBJC_METH_VAR_TYPE_.51 -l_OBJC_$_INSTANCE_VARIABLES_RLMFastEnumerator -l_OBJC_CLASS_RO_$_RLMFastEnumerator -OBJC_CLASSLIST_SUP_REFS_$_.52 -OBJC_IVAR_$_RLMResults._results -OBJC_IVAR_$_RLMResults._realm -OBJC_IVAR_$_RLMResults._objectSchema -OBJC_CLASSLIST_REFERENCES_$_.61 -_unnamed_cfstring_.73 -OBJC_CLASSLIST_REFERENCES_$_.76 -OBJC_CLASSLIST_REFERENCES_$_.87 -_unnamed_cfstring_.89 -_unnamed_cfstring_.97 -_unnamed_cfstring_.111 -OBJC_CLASSLIST_REFERENCES_$_.114 -.str.121 -_unnamed_cfstring_.122 -OBJC_CLASSLIST_REFERENCES_$_.131 -OBJC_CLASSLIST_REFERENCES_$_.134 -OBJC_SELECTOR_REFERENCES_.138 -OBJC_CLASSLIST_REFERENCES_$_.151 -_unnamed_cfstring_.153 -_unnamed_cfstring_.161 -_unnamed_cfstring_.167 -OBJC_SELECTOR_REFERENCES_.181 -OBJC_CLASS_NAME_.182 -l_OBJC_$_CLASS_METHODS_RLMResults -OBJC_METH_VAR_TYPE_.187 -OBJC_METH_VAR_TYPE_.189 -OBJC_METH_VAR_TYPE_.190 -OBJC_CLASS_NAME_.191 -OBJC_PROP_NAME_ATTR_.193 -OBJC_PROP_NAME_ATTR_.194 -OBJC_PROP_NAME_ATTR_.195 -OBJC_PROP_NAME_ATTR_.196 -OBJC_METH_VAR_TYPE_.197 -OBJC_METH_VAR_TYPE_.202 -OBJC_METH_VAR_TYPE_.205 -OBJC_METH_VAR_TYPE_.211 -OBJC_METH_VAR_TYPE_.213 -OBJC_METH_VAR_TYPE_.215 -OBJC_METH_VAR_NAME_.218 -OBJC_METH_VAR_TYPE_.223 -OBJC_METH_VAR_TYPE_.225 -OBJC_METH_VAR_TYPE_.226 -OBJC_CLASS_NAME_.229 -OBJC_CLASS_NAME_.231 -l_OBJC_CLASS_PROTOCOLS_$_RLMResults -l_OBJC_METACLASS_RO_$_RLMResults -OBJC_CLASS_NAME_.234 -OBJC_METH_VAR_TYPE_.235 -OBJC_METH_VAR_NAME_.238 -OBJC_METH_VAR_TYPE_.248 -l_OBJC_$_INSTANCE_METHODS_RLMResults -l_OBJC_$_INSTANCE_VARIABLES_RLMResults -OBJC_PROP_NAME_ATTR_.251 -OBJC_PROP_NAME_ATTR_.252 -l_OBJC_$_PROP_LIST_RLMResults -l_OBJC_CLASS_RO_$_RLMResults -.str.255 -.str.259 -.str.261 -.str.263 -.str.269 -.str.271 -.str.273 -.str.275 -.str.280 -.str.282 -.str.284 -_unnamed_cfstring_.285 -.str.292 -_unnamed_cfstring_.293 -_unnamed_cfstring_.295 -.str.298 -_unnamed_cfstring_.299 -.str.324 -_unnamed_cfstring_.325 -OBJC_CLASSLIST_REFERENCES_$_.326 -OBJC_CLASSLIST_REFERENCES_$_.331 -OBJC_SELECTOR_REFERENCES_.332 -.str.334 -_ZTVNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEEE -_ZTSNSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEEE -_ZTINSt3__110__function6__funcIZ35-[RLMResults addNotificationBlock:]E4$_16NS_9allocatorIS2_EEFvSt13exception_ptrEEE -_ZTSZ35-[RLMResults addNotificationBlock:]E4$_16 -_ZTIZ35-[RLMResults addNotificationBlock:]E4$_16 -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &> -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &, std::exception_ptr> -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &, std::exception_ptr> -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &> -forward &> -forward_as_tuple &> -_ZZ35-[RLMResults addNotificationBlock:]EN4$_16C2ERKS_ -_ZZ35-[RLMResults addNotificationBlock:]EN4$_16C1ERKS_ -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &&> -forward &&> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &> -forward -forward_as_tuple -allocator, void (std::exception_ptr)> > -forward, void (std::exception_ptr)> > > > -forward, void (std::exception_ptr)> *> -move, void (std::exception_ptr)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -_ZZ35-[RLMResults addNotificationBlock:]EN4$_16C2EOS_ -_ZZ35-[RLMResults addNotificationBlock:]EN4$_16C1EOS_ -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&, 0> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33), false> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:539:33)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:528:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:524:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:480:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:456:34)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:440:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:424:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:396:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:381:28)> -assertKeyPathIsNotNested -RLMResultsValidateInWriteTransaction -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:354:21)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:348:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:317:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:308:32)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:303:32)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:297:28)> -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:287:35)> -get_mode -throwError -translateErrors<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.mm:246:28)> -get_source_ndx -is_row_attached -move --[RLMResults .cxx_construct] --[RLMResults .cxx_destruct] --[RLMResults setObjectSchema:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults_Private.h --[RLMResults objectSchema] --[RLMResults realm] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMResults.h --[RLMResults addNotificationBlock:] --[RLMResults tableView] --[RLMResults indexInSource:] --[RLMResults description] --[RLMResults deleteObjectsFromRealm] --[RLMResults averageOfProperty:] --[RLMResults sumOfProperty:] --[RLMResults maxOfProperty:] --[RLMResults minOfProperty:] --[RLMResults aggregate:method:methodName:] --[RLMResults objectAtIndexedSubscript:] --[RLMResults sortedResultsUsingDescriptors:] --[RLMResults sortedResultsUsingProperty:ascending:] --[RLMResults objectsWithPredicate:] --[RLMResults objectsWhere:args:] --[RLMResults objectsWhere:] --[RLMResults _distinctUnionOfArraysForKeyPath:] --[RLMResults _unionOfArraysForKeyPath:] --[RLMResults _distinctUnionOfObjectsForKeyPath:] --[RLMResults _unionOfObjectsForKeyPath:] --[RLMResults _avgForKeyPath:] --[RLMResults _sumForKeyPath:] --[RLMResults _maxForKeyPath:] --[RLMResults _minForKeyPath:] --[RLMResults _aggregateForKeyPath:method:methodName:] --[RLMResults setValue:forKey:] --[RLMResults valueForKey:] --[RLMResults valueForKeyPath:] --[RLMResults indexOfObject:] --[RLMResults lastObject] --[RLMResults firstObject] --[RLMResults objectAtIndex:] --[RLMResults indexOfObjectWithPredicate:] --[RLMResults indexOfObjectWhere:args:] --[RLMResults indexOfObjectWhere:] --[RLMResults countByEnumeratingWithState:objects:count:] --[RLMResults objectClassName] --[RLMResults count] -+[RLMResults resultsWithObjectSchema:results:] --[RLMResults initPrivate] --[RLMFastEnumerator .cxx_construct] --[RLMFastEnumerator .cxx_destruct] --[RLMFastEnumerator countByEnumeratingWithState:count:] --[RLMFastEnumerator detach] --[RLMFastEnumerator dealloc] --[RLMFastEnumerator initWithCollection:objectSchema:] --[RLMCancellationToken .cxx_construct] --[RLMCancellationToken .cxx_destruct] --[RLMCancellationToken stop] --[RLMCancellationToken initWithToken:] --[RLMSchema init] --[RLMSchema objectSchema] --[RLMSchema setObjectSchema:] --[RLMSchema schemaForClassName:] --[RLMSchema objectForKeyedSubscript:] -+[RLMSchema schemaWithObjectClasses:] -_ZL26RLMRegisterClassLocalNamesPP10objc_classj -_ZL16RLMRegisterClassP10objc_class -__37+[RLMSchema schemaWithObjectClasses:]_block_invoke -+[RLMSchema sharedSchemaForClass:] -+[RLMSchema partialSharedSchema] -+[RLMSchema sharedSchema] -__25+[RLMSchema sharedSchema]_block_invoke -__25+[RLMSchema sharedSchema]_block_invoke_2 -+[RLMSchema dynamicSchemaFromObjectStoreSchema:] -+[RLMSchema classForString:] --[RLMSchema copyWithZone:] --[RLMSchema shallowCopy] -__24-[RLMSchema shallowCopy]_block_invoke -__copy_helper_block_.79 -__destroy_helper_block_.80 --[RLMSchema isEqualToSchema:] -__29-[RLMSchema isEqualToSchema:]_block_invoke -__copy_helper_block_.85 -__destroy_helper_block_.86 --[RLMSchema description] --[RLMSchema objectStoreCopy] -__28-[RLMSchema objectStoreCopy]_block_invoke -__copy_helper_block_.115 -__destroy_helper_block_.116 --[RLMSchema objectSchemaByName] --[RLMSchema setObjectSchemaByName:] --[RLMSchema .cxx_destruct] -_GLOBAL__sub_I_RLMSchema.mm -_ZL14s_sharedSchema -_ZL18s_localNameToClass -OBJC_CLASSLIST_REFERENCES_$_.5 -_ZL25s_privateObjectSubclasses -OBJC_IVAR_$_RLMSchema._objectSchemaByName -OBJC_IVAR_$_RLMSchema._objectSchema -OBJC_CLASSLIST_REFERENCES_$_.27 -_ZL19s_sharedSchemaState -__block_descriptor_tmp.59 -__block_literal_global.60 -__block_descriptor_tmp.87 -OBJC_CLASSLIST_REFERENCES_$_.88 -OBJC_CLASSLIST_REFERENCES_$_.91 -_unnamed_cfstring_.93 -OBJC_SELECTOR_REFERENCES_.106 -_unnamed_cfstring_.108 -OBJC_SELECTOR_REFERENCES_.110 -__block_descriptor_tmp.117 -OBJC_CLASS_NAME_.118 -OBJC_METH_VAR_TYPE_.123 -l_OBJC_$_CLASS_METHODS_RLMSchema -OBJC_METH_VAR_TYPE_.129 -l_OBJC_CLASS_PROTOCOLS_$_RLMSchema -l_OBJC_METACLASS_RO_$_RLMSchema -OBJC_CLASS_NAME_.131 -OBJC_METH_VAR_TYPE_.135 -OBJC_METH_VAR_TYPE_.137 -l_OBJC_$_INSTANCE_METHODS_RLMSchema -l_OBJC_$_INSTANCE_VARIABLES_RLMSchema -l_OBJC_$_PROP_LIST_RLMSchema -l_OBJC_CLASS_RO_$_RLMSchema -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMSchema.mm -move &> -forward > > -make_unique > > -unique_ptr<__unsafe_unretained Class *> -operator()<__unsafe_unretained Class> -forward<__unsafe_unretained Class *> -make_unique -move > &> -__push_back_slow_path -forward -construct -__construct -RLMRegisterClass -RLMRegisterClassLocalNames --[RLMSchema .cxx_destruct] --[RLMSchema setObjectSchemaByName:] --[RLMSchema objectSchemaByName] --[RLMSchema objectStoreCopy] --[RLMSchema description] --[RLMSchema isEqualToSchema:] --[RLMSchema shallowCopy] --[RLMSchema copyWithZone:] -+[RLMSchema classForString:] -+[RLMSchema dynamicSchemaFromObjectStoreSchema:] -+[RLMSchema sharedSchema] -+[RLMSchema partialSharedSchema] -+[RLMSchema sharedSchemaForClass:] -+[RLMSchema schemaWithObjectClasses:] --[RLMSchema objectForKeyedSubscript:] --[RLMSchema schemaForClassName:] --[RLMSchema setObjectSchema:] --[RLMSchema objectSchema] --[RLMSchema init] -__cxx_global_var_init.6 -__cxx_global_var_init.4 -+[RLMSwiftSupport isSwiftClassName:] -+[RLMSwiftSupport demangleClassName:] -OBJC_METH_VAR_TYPE_.5 -l_OBJC_$_CLASS_METHODS_RLMSwiftSupport -l_OBJC_METACLASS_RO_$_RLMSwiftSupport -l_OBJC_CLASS_RO_$_RLMSwiftSupport -+[RLMSwiftSupport demangleClassName:] -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMSwiftSupport.m -+[RLMSwiftSupport isSwiftClassName:] -RLMCheckForUpdates -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMUpdateChecker.mm -_ZL12RLMExceptionP8NSStringP12NSDictionary -OBJC_CLASSLIST_REFERENCES_$_.8 -OBJC_CLASSLIST_REFERENCES_$_.9 -OBJC_CLASSLIST_REFERENCES_$_.57 -_unnamed_cfstring_.61 -OBJC_CLASSLIST_REFERENCES_$_.89 -.str.139 -.str.140 -OBJC_CLASSLIST_REFERENCES_$_.199 -OBJC_CLASSLIST_REFERENCES_$_.200 -OBJC_CLASSLIST_REFERENCES_$_.201 -RLMDynamicCast -RLMDynamicCast -RLMIsSubclass -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/RLMUtil.mm -RLMException -object_has_valid_type -nsnumber_is_like_double -nsnumber_is_like_float -nsnumber_is_like_integer -nsnumber_is_like_bool -RLMMixedToObjc -RLMIsDebuggerAttached -RLMIsObjectSubclass -RLMSetErrorOrThrow -RLMMakeError -RLMCollectionSetValueForKey -RLMCollectionValueForKey -RLMDefaultValuesForObjectSchema -RLMIsObjectValidForProperty -_ZL15compare_by_nameRKN5realm12ObjectSchemaES2_ -__emplace_back_slow_path -forward -construct -__construct -emplace_back -__emplace_back_slow_path -forward -construct -__construct -emplace_back -__emplace_back_slow_path -forward -construct -__construct -emplace_back -__emplace_back_slow_path -forward -construct -__construct -emplace_back -__advance > -advance > -operator- -__distance > -distance > -__lower_bound, realm::ObjectSchema> -lower_bound, realm::ObjectSchema, bool (*)(const realm::ObjectSchema &, const realm::ObjectSchema &)> -__wrap_iter -__insertion_sort_incomplete -__insertion_sort_3 -__sort5 -__sort4 -__sort3 -__unwrap_iter -__copy -copy -__advance -advance -__distance -distance -assign -swap -__sort -sort -sort -is_indexable -compare_by_name -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/schema.cpp -validate -Realm/ObjectStore/schema.cpp -_ZN5realm5Realm6ConfigaSEOS1_ -_ZN5realm25UnitializedRealmExceptionD1Ev -_ZZN5realm5Realm13update_schemaENSt3__110unique_ptrINS_6SchemaENS1_14default_deleteIS3_EEEEyEN21WriteTransactionGuardD1Ev -_ZN5realm24IncorrectThreadExceptionD1Ev -_ZL16check_read_writePN5realm5RealmE -_ZN5realm25UnitializedRealmExceptionD0Ev -_ZN5realm24IncorrectThreadExceptionD0Ev -_ZN5realm11SharedGroupC2ERNS_11ReplicationENS0_15DurabilityLevelEPKcb -_ZNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EED1Ev -_ZNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EED0Ev -_ZNKSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EE7__cloneEv -_ZNKSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EE7__cloneEPNS0_6__baseISF_EE -_ZNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EE7destroyEv -_ZNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EE18destroy_deallocateEv -_ZNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EEclEOSD_SE_ -_ZNKSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EE6targetERKSt9type_info -_ZNKSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EE11target_typeEv -_ZNSt3__120__shared_ptr_pointerIPN5realm5RealmENS_14default_deleteIS2_EENS_9allocatorIS2_EEED1Ev -_ZNSt3__120__shared_ptr_pointerIPN5realm5RealmENS_14default_deleteIS2_EENS_9allocatorIS2_EEED0Ev -_ZTVNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EEE -_ZTSNSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EEE -_ZTINSt3__110__function6__funcIZN5realm5Realm13update_schemaENS_10unique_ptrINS2_6SchemaENS_14default_deleteIS5_EEEEyE3$_0NS_9allocatorIS9_EEFvPNS2_5GroupERS5_EEE -_ZTSZN5realm5Realm13update_schemaENSt3__110unique_ptrINS_6SchemaENS1_14default_deleteIS3_EEEEyE3$_0 -_ZTIZN5realm5Realm13update_schemaENSt3__110unique_ptrINS_6SchemaENS1_14default_deleteIS3_EEEEyE3$_0 -forward -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &> -addressof, std::__1::allocator > > -addressof > -__get_deleter -~__shared_ptr_pointer -forward > -forward > > -move &> -forward > -move &> -__shared_ptr_pointer -forward -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp -__invoke<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &, realm::Group *, realm::Schema &> -__call<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &, realm::Group *, realm::Schema &> -get<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &> -__libcpp_compressed_pair_imp &, 0, 0> -move &> &> -__compressed_pair &> -__tuple_leaf &, void> -__tuple_impl<0, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &, const std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &> -forward &> -forward_as_tuple &> -get<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &> -get<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &&> -forward &&> -__libcpp_compressed_pair_imp &&, 0, 0> -move &&> &> -move &> -__compressed_pair &&> -move &> -__tuple_leaf, void> -__tuple_impl<0, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> &&, std::__1::allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> > -tuple , false> -forward > -forward_as_tuple > -__tuple_leaf -__tuple_impl<0, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &, const (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &> -forward -forward_as_tuple -allocator, void (realm::Group *, realm::Schema &)> > -forward, void (realm::Group *, realm::Schema &)> > > > -forward, void (realm::Group *, realm::Schema &)> *> -move, void (realm::Group *, realm::Schema &)> > > &> -allocator<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -get<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&> -__libcpp_compressed_pair_imp<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&, 0> -move &> -__compressed_pair<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&> -__tuple_leaf<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31), void> -__tuple_impl<0, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &&, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31), false> -forward<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -forward_as_tuple<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -move<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31) &> -__not_null<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -function<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/shared_realm.cpp:236:31)> -Realm/ObjectStore/schema.hpp -forward -make_unique -forward > -move -operator() -~File -unmap -~MapBase -~Map -~Mutex -set_replication -open -init_as_regular -Mutex -MapBase -Map -File -Group -SharedGroup -forward -forward -make_unique -forward > -forward > -move -record_subtable_path -child_accessor_destroyed -get_parent_group -get_child_name -~Parent -~ArrayString -__to_raw_pointer -__destroy -destroy -init_array_parents -forward -ArrayString -Parent -forward -forward -make_unique &, const char *, realm::Group::OpenMode> -make_unique -__construct_range_forward -__construct_at_end -Realm/ObjectStore/binding_context.hpp -__to_raw_pointer -__destroy -destroy -check_read_write -get_transact_stage -~IncorrectThreadException -IncorrectThreadException -~WriteTransactionGuard -~UnitializedRealmException -UnitializedRealmException -move > &> -move &> -refresh -compact -invalidate -cancel_transaction -commit_transaction -begin_transaction -is_in_transaction -verify_in_write -verify_thread -get_shared_realm -read_group -~Realm -open_with_config -Realm -~Config -Config -Realm/ObjectStore/shared_realm.cpp -_ZN5realm11SharedGroup15do_advance_readIN12_GLOBAL__N_120TransactLogValidatorEEEbPT_NS0_9VersionIDERNS_5_impl7HistoryE -_ZN12_GLOBAL__N_120TransactLogValidator12erase_columnEm -_ZN12_GLOBAL__N_120TransactLogValidator17erase_link_columnEmmm -_ZN12_GLOBAL__N_120TransactLogValidator13rename_columnEmN5realm10StringDataE -_ZN12_GLOBAL__N_120TransactLogValidator11move_columnEmm -_ZN12_GLOBAL__N_120TransactLogValidator24insert_group_level_tableEmmN5realm10StringDataE -_ZN12_GLOBAL__N_120TransactLogValidator23erase_group_level_tableEmm -_ZN12_GLOBAL__N_120TransactLogValidator24rename_group_level_tableEmN5realm10StringDataE -_ZN12_GLOBAL__N_120TransactLogValidator22move_group_level_tableEmm -_ZN12_GLOBAL__N_120TransactLogValidator29schema_error_unless_new_tableEv -_ZN12_GLOBAL__N_120TransactLogValidator12schema_errorEv -_ZN5realm11SharedGroup15do_advance_readIN12_GLOBAL__N_119TransactLogObserverEEEbPT_NS0_9VersionIDERNS_5_impl7HistoryE -_ZN5realm5_impl17TransactLogParser5parseIN12_GLOBAL__N_119TransactLogObserverEEEvRNS0_17NoCopyInputStreamERT_ -_ZN12_GLOBAL__N_119TransactLogObserver10mark_dirtyEmm -_ZN12_GLOBAL__N_119TransactLogObserver10get_changeERN5realm14BindingContext13ObserverStateEm -_ZN12_GLOBAL__N_119TransactLogObserver10invalidateEPN5realm14BindingContext13ObserverStateE -_ZN12_GLOBAL__N_119TransactLogObserver23append_link_list_changeEN5realm14BindingContext10ColumnInfo4KindEm -_ZZN5realm5_impl11transaction5beginERNS_11SharedGroupEPNS_14BindingContextEbENK3$_1clIJRN12_GLOBAL__N_120TransactLogValidatorEEEEDaDpOT_ -_ZN5realm11SharedGroup16promote_to_writeINS_5_impl23NullInstructionObserverEEEvPT_ -_ZN5realm5_impl25ReversedNoCopyInputStreamD1Ev -_ZN5realm5_impl17SimpleInputStreamD1Ev -_ZN5realm5_impl17SimpleInputStream4readEPcm -_ZN5realm5_impl17SimpleInputStreamD0Ev -_ZN5realm5_impl23TransactLogBufferStream20transact_log_reserveEmPPcS3_ -_ZN5realm5_impl23TransactLogBufferStream19transact_log_appendEPKcmPPcS5_ -_ZN5realm4util6BufferIcE13reserve_extraEmm -_ZN5realm4util18BufferSizeOverflowD1Ev -_ZN5realm4util6BufferIcE7reserveEmm -_ZN5realm4util18BufferSizeOverflowD0Ev -_ZNK5realm4util18BufferSizeOverflow4whatEv -_ZN5realm4util6BufferIcE6resizeEmmmm -_ZN5realm5_impl24NoCopyInputStreamAdaptorD1Ev -_ZN5realm5_impl24NoCopyInputStreamAdaptor10next_blockERPKcS4_ -_ZN5realm5_impl24NoCopyInputStreamAdaptorD0Ev -_ZN5realm5_impl16TransactReverser12select_tableEmmPKm -_ZN5realm5_impl16TransactReverser15link_list_clearEm -_ZN5realm5_impl16TransactReverser16select_link_listEmmm -_ZN5realm5_impl16TransactReverser17select_descriptorEmPKm -_ZN5realm5_impl16TransactReverser24insert_group_level_tableEmmNS_10StringDataE -_ZN5realm5_impl16TransactReverser23erase_group_level_tableEmm -_ZN5realm5_impl16TransactReverser18append_instructionEv -_ZNK5realm5_impl16TransactReverser17transact_log_sizeEv -_ZN5realm5_impl16TransactReverser10sync_tableEv -_ZN5realm5_impl16TransactReverser15sync_descriptorEv -_ZN5realm5_impl16TransactReverser13sync_linkviewEv -_ZN5realm5_impl16TransactReverser18append_instructionENS1_5InstrE -_ZN5realm5_impl25ReversedNoCopyInputStream10next_blockERPKcS4_ -_ZN5realm5_impl25ReversedNoCopyInputStreamD0Ev -_ZN5realm11SharedGroup29rollback_and_continue_as_readINS_5_impl23NullInstructionObserverEEEvPT_ -rollback_and_continue_as_read<(anonymous namespace)::TransactLogObserver> -operator()<(anonymous namespace)::TransactLogObserver &> -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/transact_log_handler.cpp -rollback_and_continue_as_read -rollback_and_continue_as_read -operator()<> -~SimpleInputStream -~TransactReverser -abort_transact -core/include/realm/replication.hpp -advance_transact -~ReversedNoCopyInputStream -ReversedNoCopyInputStream -~NoCopyInputStreamAdaptor -Tuple -core/include/realm/util/tuple.hpp -cons > > -tuple -cons > > > -tuple -cons > > > -append > >, unsigned long> -cons > > > > -append > > >, unsigned long> -for_each > > >, char **> -for_each > > > >, char **> -append_string_instr > > > > -is_link_type -tuple -append_string_instr > > -append_simple_instr > > > -append_simple_instr > -__push_back_slow_path -forward -construct -__construct -append_instruction -sync_select -sync_linkview -sync_descriptor -sync_table -cons > > > -tuple -for_each > > >, char **> -append_simple_instr > > > > -tuple -append_simple_instr > > > > -for_each, char **> -for_each >, char **> -for_each > >, char **> -append_simple_instr > > > -cons > -append, unsigned long> -cons > > -append >, unsigned long> -cons > > > -append > >, unsigned long> -for_each >, char **> -for_each > >, char **> -for_each > > >, char **> -append_string_instr > > > -append -cons > -append, double> -cons > > -append >, double> -cons > > > -append > >, double> -for_each >, char **> -for_each > >, char **> -for_each > > >, char **> -append_simple_instr > > > > -append -cons > -append, float> -cons > > -append >, float> -cons > > > -append > >, float> -for_each >, char **> -for_each > >, char **> -for_each > > >, char **> -append_simple_instr > > > > -append -cons > -append, bool> -cons > > -append >, bool> -cons > > > -append > >, bool> -for_each >, char **> -for_each > >, char **> -for_each > > >, char **> -append_simple_instr > > > > -append -cons > -append, long long> -cons > > -append >, long long> -cons > > > -append > >, long long> -for_each >, char **> -for_each > >, char **> -for_each > > >, char **> -append_simple_instr > > > > -cons -tuple -append -cons > -append, realm::DataType> -cons > > -append >, realm::DataType> -append_mixed_instr > > -tuple -cons > > > -append > >, unsigned long> -for_each > > >, char **> -append_string_instr > > > -tuple -cons -tuple -append -cons > -append, unsigned long> -cons > > -append >, unsigned long> -for_each > >, char **> -append_string_instr > > -for_each, char **> -for_each >, char **> -append_simple_instr > > -cons -tuple -cons > -tuple -cons > > -tuple -encode_double -for_each, char **> -for_each >, char **> -for_each > >, char **> -append_simple_instr > > > -cons -tuple -cons > -tuple -cons > > -tuple -encode_float -for_each, char **> -for_each >, char **> -for_each > >, char **> -append_simple_instr > > > -cons -tuple -cons > -tuple -cons > > -tuple -test -is_negative -encode_int -for_each, char **> -for_each >, char **> -for_each > >, char **> -append_simple_instr > > > -cons > > > -tuple -for_each > > >, char **> -append_simple_instr > > > > -inspect_value, std::__1::allocator > > -inspect_all, std::__1::allocator >, const char *> -inspect_value, std::__1::allocator >, char *> -inspect_all, std::__1::allocator >, char *, const char *> -terminate -transact_log_data -write_position -transact_log_size -get_inst -__destroy -destroy -move -swap -__construct_backward -forward &> -__push_back_slow_path -move -__to_raw_pointer -forward -construct -__construct -cons -tuple -cons > -tuple -cons > > -tuple -advance -for_each -is_negative -encode_int -for_each, char **> -for_each >, char **> -is_negative -encode_int -for_each > >, char **> -append_simple_instr > > > -parse_one -parse -NoCopyInputStreamAdaptor -~TransactLogBufferStream -forward -TransactLogEncoder -transact_log_append -reset -__copy -copy -~BufferSizeOverflow -BufferSizeOverflow -cast -cast_to_unsigned -int_add_with_overflow_detect -reserve_extra -transact_log_reserve -TransactLogStream -TransactLogBufferStream -TransactReverser -read -~InputStream -InputStream -SimpleInputStream -reset_free_space_tracking -rollback_and_continue_as_read<(anonymous namespace)::TransactLogValidator> -operator()<(anonymous namespace)::TransactLogValidator &> -TransactLogObserver<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/transact_log_handler.cpp:460:38)> -promote_to_write<(anonymous namespace)::TransactLogObserver> -promote_to_write -promote_to_write -create_empty_group_when_missing -unselect_all -reset_selection_caches -initiate_transact -promote_to_write<(anonymous namespace)::TransactLogValidator> -TransactLogObserver<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/transact_log_handler.cpp:444:38)> -move<(anonymous namespace)::TransactLogObserver &> -append_link_list_change -__wrap_iter -__unwrap_iter -__move -move -operator- -move -swap -__construct_backward -forward &> -__push_back_slow_path -forward -construct -__construct -move -swap -move -move_if_noexcept -forward -forward > > -move > &> -IndexSet -ColumnInfo -construct -__construct -__construct_backward -forward &> -construct -__construct -get_change -operator== -operator!= -current_table -__advance > -advance > -operator- -__distance > -distance > -__lower_bound &, std::__1::__wrap_iter, realm::BindingContext::ObserverState> -lower_bound, realm::BindingContext::ObserverState, std::__1::__less > -lower_bound, realm::BindingContext::ObserverState> -mark_dirty -parse_one<(anonymous namespace)::TransactLogObserver> -parse<(anonymous namespace)::TransactLogObserver> -do_advance_read<(anonymous namespace)::TransactLogObserver> -advance_read<(anonymous namespace)::TransactLogObserver> -move &> -move<(anonymous namespace)::TransactLogValidator &> -schema_error -end > > -begin > > -find, unsigned long> -schema_error_unless_new_table -parse_one<(anonymous namespace)::TransactLogValidator> -parse<(anonymous namespace)::TransactLogValidator> -do_advance_read<(anonymous namespace)::TransactLogValidator> -advance_read<(anonymous namespace)::TransactLogValidator> -TransactLogValidator -TransactLogObserver<(lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/transact_log_handler.cpp:437:38)> -commit_and_continue_as_read -~TransactLogValidator -~TransactLogObserver -cancel -commit -_ZN12_GLOBAL__N_115system_categoryD1Ev -_ZN12_GLOBAL__N_115system_categoryD0Ev -_ZNK12_GLOBAL__N_115system_category4nameEv -_ZNK12_GLOBAL__N_115system_category7messageEi -_GLOBAL__sub_I_basic_system_errors.cpp -_ZN12_GLOBAL__N_117g_system_categoryE -_ZTVN12_GLOBAL__N_115system_categoryE -_ZTSN12_GLOBAL__N_115system_categoryE -_ZTIN12_GLOBAL__N_115system_categoryE -.str1 -.str2 -.str3 -_ZZN5realm4util9page_sizeEvE16cached_page_size -_ZGVZN5realm4util9page_sizeEvE16cached_page_size -.str4 -.str5 -.str6 -.str7 -.str8 -.str9 -.str10 -.str11 -.str12 -.str13 -.str14 -.str15 -.str18 -.str19 -.str20 -.str21 -.str22 -.str23 -.str24 -.str25 -.str26 -.str27 -.str28 -.str29 -.str30 -.str31 -.str32 -.str33 -.str34 -.str35 -.str36 -_ZN12_GLOBAL__N_15nslogEPKc -_ZN12_GLOBAL__N_133termination_notification_callbackE -.str16 -.str17 -_GLOBAL__sub_I_platform_specific_condvar.cpp -_ZN12_GLOBAL__N_116DefaultAllocatorD1Ev -_ZN12_GLOBAL__N_116DefaultAllocatorD0Ev -_ZN12_GLOBAL__N_116DefaultAllocator8do_allocEm -_ZN12_GLOBAL__N_116DefaultAllocator10do_reallocEmPKcmm -_ZN12_GLOBAL__N_116DefaultAllocator7do_freeEmPKc -_ZNK12_GLOBAL__N_116DefaultAllocator12do_translateEm -_ZZN5realm9Allocator11get_defaultEvE13default_alloc -_ZGVZN5realm9Allocator11get_defaultEvE13default_alloc -_ZTVN12_GLOBAL__N_116DefaultAllocatorE -_ZTSN12_GLOBAL__N_116DefaultAllocatorE -_ZTIN12_GLOBAL__N_116DefaultAllocatorE -_ZN12_GLOBAL__N_116InvalidFreeSpaceD1Ev -_ZN12_GLOBAL__N_116InvalidFreeSpaceD0Ev -_ZNK12_GLOBAL__N_116InvalidFreeSpace4whatEv -_ZTSN12_GLOBAL__N_116InvalidFreeSpaceE -_ZTIN12_GLOBAL__N_116InvalidFreeSpaceE -_ZTVN12_GLOBAL__N_116InvalidFreeSpaceE -_ZN12_GLOBAL__N_119foreach_bptree_leafINS_12VisitAdapterEEEbRN5realm5ArrayEmmT_m -_ZN12_GLOBAL__N_130simplified_foreach_bptree_leafINS_13UpdateAdapterEEEvRN5realm5ArrayET_ -_ZN12_GLOBAL__N_129destroy_singlet_bptree_branchEN5realm6MemRefERNS0_9AllocatorERNS0_5Array12EraseHandlerE -_ZN12_GLOBAL__N_128elim_superfluous_bptree_rootEPN5realm5ArrayENS0_6MemRefExmRNS1_12EraseHandlerE -__cxx_global_var_init36 -__cxx_global_var_init37 -__cxx_global_var_init38 -__cxx_global_var_init39 -__cxx_global_var_init40 -__cxx_global_var_init41 -__cxx_global_var_init42 -_ZN12_GLOBAL__N_117find_bptree_childExmRKN5realm9AllocatorE -_ZZN5realm5Array9bit_widthExE4bits -_ZZNK5realm5Array13first_set_bitEjE27MultiplyDeBruijnBitPosition -.str43 -.str44 -.str45 -.str46 -.str47 -.str48 -.str49 -.str50 -.str51 -.str52 -.str53 -.str54 -.str55 -.str56 -.str57 -.str58 -.str59 -.str60 -.str61 -.str62 -.str64 -.str65 -.str66 -.str67 -.str68 -.str69 -.str70 -.str71 -.str72 -.str73 -.str74 -.str75 -.str76 -.str77 -.str78 -.str80 -.str81 -.str83 -.str84 -.str85 -_ZN12_GLOBAL__N_110TreeWriter11ParentLevel13add_child_refEmmbPm -_ZN12_GLOBAL__N_110TreeWriter11ParentLevelD2Ev -.str37 -.str38 -.str39 -_ZN12_GLOBAL__N_111SetLeafElemD1Ev -_ZN12_GLOBAL__N_111SetLeafElem6updateEN5realm6MemRefEPNS1_11ArrayParentEmm -_ZN12_GLOBAL__N_111SetLeafElemD0Ev -_ZTVN12_GLOBAL__N_111SetLeafElemE -_ZTSN12_GLOBAL__N_111SetLeafElemE -_ZTIN12_GLOBAL__N_111SetLeafElemE -.str40 -.str41 -.str42 -_ZN12_GLOBAL__N_119InsertColumnUpdaterD1Ev -_ZN12_GLOBAL__N_119InsertColumnUpdater6updateERN5realm5TableE -_ZN12_GLOBAL__N_119InsertColumnUpdater13update_parentERN5realm5TableE -_ZN12_GLOBAL__N_119InsertColumnUpdaterD0Ev -_ZN12_GLOBAL__N_118EraseColumnUpdaterD1Ev -_ZN12_GLOBAL__N_118EraseColumnUpdater6updateERN5realm5TableE -_ZN12_GLOBAL__N_118EraseColumnUpdater13update_parentERN5realm5TableE -_ZN12_GLOBAL__N_118EraseColumnUpdaterD0Ev -_ZN12_GLOBAL__N_117MoveColumnUpdaterD1Ev -_ZN12_GLOBAL__N_117MoveColumnUpdater6updateERN5realm5TableE -_ZN12_GLOBAL__N_117MoveColumnUpdater13update_parentERN5realm5TableE -_ZN12_GLOBAL__N_117MoveColumnUpdaterD0Ev -_ZN12_GLOBAL__N_116MarkDirtyUpdaterD1Ev -_ZN12_GLOBAL__N_116MarkDirtyUpdater6updateERN5realm5TableE -_ZN12_GLOBAL__N_116MarkDirtyUpdater13update_parentERN5realm5TableE -_ZN12_GLOBAL__N_116MarkDirtyUpdaterD0Ev -_GLOBAL__sub_I_group.cpp -_ZTVN12_GLOBAL__N_119InsertColumnUpdaterE -_ZTSN12_GLOBAL__N_119InsertColumnUpdaterE -_ZTIN12_GLOBAL__N_119InsertColumnUpdaterE -_ZTVN12_GLOBAL__N_118EraseColumnUpdaterE -_ZTSN12_GLOBAL__N_118EraseColumnUpdaterE -_ZTIN12_GLOBAL__N_118EraseColumnUpdaterE -_ZTVN12_GLOBAL__N_117MoveColumnUpdaterE -_ZTSN12_GLOBAL__N_117MoveColumnUpdaterE -_ZTIN12_GLOBAL__N_117MoveColumnUpdaterE -.str63 -_ZTVN12_GLOBAL__N_116MarkDirtyUpdaterE -_ZTSN12_GLOBAL__N_116MarkDirtyUpdaterE -_ZTIN12_GLOBAL__N_116MarkDirtyUpdaterE -_ZN12_GLOBAL__N_120has_duplicate_valuesERKN5realm5ArrayE -.str79 -.str82 -_ZN12_GLOBAL__N_121get_group_ndx_blockedEmRNS_9AggrStateERN5realm5TableE -_ZN12_GLOBAL__N_113get_group_ndxEmRNS_9AggrStateERN5realm5TableE -.str86 -.str87 -.str88 -.str89 -.str90 -.str91 -.str92 -.str93 -.str94 -.str95 -.str96 -.str97 -.str98 -.str99 -.str100 -.str101 -.str102 -.str104 -.str105 -.str106 -.str107 -.str108 -.str109 -.str110 -.str111 -.str112 -.str113 -.str114 -.str115 -.str116 -.str117 -.str118 -.str119 -.str120 -.str121 -.str122 -.str123 -.str124 -.str125 -.str126 -.str127 -.str128 -.str129 -.str130 -.str131 -.str132 -.str133 -.str134 -.str135 -.str136 -.str137 -.str138 -.str139 -.str140 -.str141 -.str142 -.str143 -.str144 -.str145 -.str146 -.str147 -.str148 -.str149 -.str150 -.str151 -.str152 -.str153 -.str154 -.str155 -.str156 -.str157 -.str158 -.str159 -.str160 -.str161 -.str162 -.str163 -.str164 -.str165 -.str166 -.str167 -.str168 -.str169 -.str170 -.str171 -.str172 -.str173 -.str174 -.str175 -.str176 -.str177 -.str178 -.str179 -.str180 -.str181 -.str182 -.str187 -.str188 -.str189 -.str190 -.str191 -.str192 -.str193 -.str195 -.str196 -.str197 -.str198 -.str199 -.str200 -.str201 -.str202 -.str203 -.str204 -_ZZN5realm15sequence_lengthEcE7lengths -_ZZN5realm12utf8_compareENS_10StringDataES0_E15collation_order -_GLOBAL__sub_I_utilities.cpp -_ZN12_GLOBAL__N_1L15a_popcount_bitsE -_ZZN5realm8fastrandEybE5state -_ZGVZN5realm8fastrandEybE5state -_ZN12_GLOBAL__N_122g_disable_sync_to_diskE diff --git a/Carthage/Build/watchOS/ED42CE42-0046-3612-9B28-36AD7ADBCD6F.bcsymbolmap b/Carthage/Build/watchOS/ED42CE42-0046-3612-9B28-36AD7ADBCD6F.bcsymbolmap deleted file mode 100644 index 930ac77..0000000 --- a/Carthage/Build/watchOS/ED42CE42-0046-3612-9B28-36AD7ADBCD6F.bcsymbolmap +++ /dev/null @@ -1,2426 +0,0 @@ -BCSymbolMap Version: 1.0 -_TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TFSaCft12arrayLiteralGSax__GSax_ -_TFEsPs30RangeReplaceableCollectionType15reserveCapacityfWx5Index8Distance_T_ -_TFEsPs30RangeReplaceableCollectionTypeCuRd__s12SequenceTypeWx9Generator7Element_zWd__9GeneratorS2__rfqd__x -_TFEsPs30RangeReplaceableCollectionType16insertContentsOfuRd__s14CollectionTypeWx9Generator7Element_zWd__S1_S2__rfTqd__2atwx5Index_T_ -_TFEsPs30RangeReplaceableCollectionType13removeAtIndexfwx5IndexWx9Generator7Element_ -_TFEsPs30RangeReplaceableCollectionType17_customRemoveLastfT_GSqWx9Generator7Element__ -_TFEsPs30RangeReplaceableCollectionType11removeFirstfT_Wx9Generator7Element_ -_TFEsPs30RangeReplaceableCollectionType11removeFirstfSiT_ -_TFEsPs30RangeReplaceableCollectionType11removeRangefGVs5Rangewx5Index_T_ -_TFEsPs30RangeReplaceableCollectionType9removeAllfT12keepCapacitySb_T_ -_TFesRxs14CollectionTypewx11SubSequencezGVs5Slicex_wx5IndexzWxS0_S2__wx8_ElementzWxS0_9Generator7Element_WxS0_S3__zWxS0_S4_S5__WxS0_S4__zGVs17IndexingGeneratorGS1_x__WxS0_11SubSequence_zGS1_x_rS_g9subscriptFGVs5RangewxS2__GS1_x_ -_TFEsPs14CollectionType10prefixUpTofwx5Indexwx11SubSequence -_TFEsPs14CollectionType10suffixFromfwx5Indexwx11SubSequence -_TFEsPs14CollectionType13prefixThroughfwx5Indexwx11SubSequence -_TFEsPs14CollectionTypeg7isEmptySb -_TFEsPs14CollectionType30_customIndexOfEquatableElementfWx9Generator7Element_GSqGSqwx5Index__ -_TFEsPs14CollectionType18underestimateCountfT_Si -_TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___ -_TFEsPs12SequenceType6filterfzFzWx9Generator7Element_SbGSaWxS0_S1___ -_TFEsPs12SequenceType7forEachfzFzWx9Generator7Element_T_T_ -_TFEsPs14CollectionType9dropFirstfSiwx11SubSequence -_TFesRxs14CollectionTypewx5Indexs22BidirectionalIndexTyperS_8dropLastfSiwx11SubSequence -_TFEsPs14CollectionType6prefixfSiwx11SubSequence -_TFesRxs14CollectionTypewx5Indexs22BidirectionalIndexTyperS_6suffixfSiwx11SubSequence -_TFEsPs14CollectionType5splitfzTSi16allowEmptySlicesSb11isSeparatorFzWx9Generator7Element_Sb_GSawx11SubSequence_ -_TFEsPs12SequenceType31_customContainsEquatableElementfWx9Generator7Element_GSqSb_ -_TFEsPs14CollectionType18_preprocessingPassurfFxqd__GSqqd___ -_TFEsPs14CollectionType24_copyToNativeArrayBufferfT_GVs22_ContiguousArrayBufferWx9Generator7Element__ -_TFEsPs12SequenceType13_initializeTofGSpWx9Generator7Element__GSpWxS0_S1___ -_TFVC10RealmSwift5Realm13Configurationg16rlmConfigurationCSo21RLMRealmConfiguration -_TFEsPs14CollectionTypeg5firstGSqWx9Generator7Element__ -_TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__ -objectdestroy -_TPA__TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__ -_TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_ -objectdestroy.1 -_TPA__TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_ -_TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__ -_TPA__TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__ -__swift_noop_void_return -__swift_noop_self_return -_TTWOSC15RLMPropertyTypes16RawRepresentable5RealmFS0_CfT8rawValuewx8RawValue_GSqx_ -_TTWOSC15RLMPropertyTypes16RawRepresentable5RealmFS0_g8rawValuewx8RawValue -_TTWVSC17NSMatchingOptionss9Equatable10FoundationZFS0_oi2eefTxx_Sb -_TTWVSC17NSMatchingOptionss23ArrayLiteralConvertible10FoundationFS0_Cft12arrayLiteralGSawx7Element__x -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_CfT_x -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_5unionfxx -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_9intersectfxx -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_11exclusiveOrfxx -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_6insertfwx7ElementT_ -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_6removefwx7ElementGSqwxS2__ -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_12unionInPlacefxT_ -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_12unionInPlacefxT_ -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_12unionInPlacefxT_ -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_16intersectInPlacefxT_ -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_16intersectInPlacefxT_ -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_16intersectInPlacefxT_ -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_18exclusiveOrInPlacefxT_ -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_18exclusiveOrInPlacefxT_ -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_18exclusiveOrInPlacefxT_ -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_8subtractfxx -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_10isSubsetOffxSb -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_14isDisjointWithfxSb -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_12isSupersetOffxSb -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_g7isEmptySb -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_CuRd__s12SequenceTypewx7ElementzWd__9Generator7Element_rfqd__x -_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S__GSaS__GSaS__s12SequenceTypes_GVs17IndexingGeneratorGSaS___GS3_GSaS___s13GeneratorTypes_GVs10ArraySliceS_____TFEsPs14SetAlgebraTypeCuRd__s12SequenceTypewx7ElementzWd__9Generator7Element_rfqd__x -_TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S__GSaS__GSaS__s12SequenceTypes_GVs17IndexingGeneratorGSaS___GS3_GSaS___s13GeneratorTypes_GVs10ArraySliceS_____TFEsPs14SetAlgebraTypeCuRd__s12SequenceTypewx7ElementzWd__9Generator7Element_rfqd__x -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_15subtractInPlacefxT_ -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationZFS0_7elementfTwx7Element8subsumeswxS2__Sb -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationZFS0_7elementfTwx7Element14isDisjointWithwxS2__Sb -_TTWVSC26NSRegularExpressionOptionss23ArrayLiteralConvertible10FoundationFS0_Cft12arrayLiteralGSawx7Element__x -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_CfT_x -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_5unionfxx -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_9intersectfxx -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_11exclusiveOrfxx -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_6insertfwx7ElementT_ -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_6removefwx7ElementGSqwxS2__ -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_12unionInPlacefxT_ -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_16intersectInPlacefxT_ -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_18exclusiveOrInPlacefxT_ -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_8subtractfxx -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_10isSubsetOffxSb -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_14isDisjointWithfxSb -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_12isSupersetOffxSb -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_CuRd__s12SequenceTypewx7ElementzWd__9Generator7Element_rfqd__x -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_15subtractInPlacefxT_ -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationZFS0_7elementfTwx7Element8subsumeswxS2__Sb -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationZFS0_7elementfTwx7Element14isDisjointWithwxS2__Sb -_TTWVSC17NSMatchingOptionss16RawRepresentable10FoundationFS0_g8rawValuewx8RawValue -_TTWVSC17NSMatchingOptionss13OptionSetType10FoundationFS0_CfT8rawValuewx8RawValue_x -_TTSf4gs_gs___TZFsoi2eeFTSSSS_Sb -_TFVs20ManagedBufferPointerlu5valuex -_TFSaCfGVs12_ArrayBufferx_GSax_ -_TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ -_TFSaCuRd__s12SequenceTypexzWd__9Generator7Element_rfqd__GSax_ -_TFSag5countSi -_TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ -_TFSp10initializefxT_ -_TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TFVs22_ContiguousArrayBufferg5countSi -_TZFsoi2eeurFTGSqx_Vs26_OptionalNilComparisonType_Sb -_TFVs22_ContiguousArrayBuffers5countSi -_TFVs15ContiguousArrayCfT_GS_x_ -_TFVs15ContiguousArray6appendfxT_ -_TFSa6appendfxT_ -_TFs11numericCastu0_Rxs18_SignedIntegerType_S_rFxq_ -_TFVs15ContiguousArray15reserveCapacityfSiT_ -_TFEsPs14CollectionTypeg7indicesGVs5Rangewx5Index_ -_TFVs12_ArrayBufferg8capacitySi -_TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TFVs5SliceCfT4basex6boundsGVs5Rangewx5Index__GS_x_ -_TFFEsPs14CollectionType5splitFzTSi16allowEmptySlicesSb11isSeparatorFzWx9Generator7Element_Sb_GSawx11SubSequence_L_17appendSubsequencefT3endQQPS_5Index_Sb -_TZFsoi2neuRxs9EquatablerFTxx_Sb -_TFesRxs12SequenceTypexzwxPS_9GeneratorrS_8generatefT_x -_TFVs17GeneratorSequenceCfxGS_x_ -_TFVs17GeneratorSequence4nextfT_GSqwx7Element_ -_TTSf4gs_gs_gs_d___TF10RealmSwift4gsubFTSS8templateSS6stringSS5errorGVs33AutoreleasingUnsafeMutablePointerGSqCSo7NSError___GSqSS_ -_TMaVSC17NSMatchingOptions -__swift_memcpy4_4 -__swift_memcpy_array4_4 -__swift_memmove_array4_4 -get_field_types_NSMatchingOptions -_TMaVSC26NSRegularExpressionOptions -get_field_types_NSRegularExpressionOptions -_TWturGSax_s12SequenceTypes9Generator -_TWTurGSax_s12SequenceTypes9GeneratorPs13GeneratorType_ -_TWturGSax_s12SequenceTypes11SubSequence -_TWtuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypes7Element -_TWturGSax_s9Indexables8_Element -_TWturGVs20AnyForwardCollectionx_s12SequenceTypes9Generator -_TWTurGVs20AnyForwardCollectionx_s12SequenceTypes9GeneratorPs13GeneratorType_ -_TWturGVs20AnyForwardCollectionx_s12SequenceTypes11SubSequence -_TWturGVs14_IgnorePointerx_s20_PointerFunctionTypes7Element -_TWturGVs15ContiguousArrayx_s12SequenceTypes9Generator -_TWTurGSax_s14CollectionTypes11SubSequencePs9Indexable_ -_TWTurGSax_s14CollectionTypes11SubSequencePs12SequenceType_ -_TWturGVs22_ContiguousArrayBufferx_s14CollectionTypes9Generator -_TWturGVs22_ContiguousArrayBufferx_s14CollectionTypes11SubSequence -_TWTurGVs22_ContiguousArrayBufferx_s14CollectionTypes11SubSequencePs9Indexable_ -_TWTurGVs22_ContiguousArrayBufferx_s14CollectionTypes11SubSequencePs12SequenceType_ -_TwugOSC15RLMPropertyType -_TwupOSC15RLMPropertyType -_TwuiOSC15RLMPropertyType -get_field_types_RLMPropertyType -_TTSf4n_n_d___TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element8subsumeswxS0__Sb -_TTSf4n_n_d___TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element8subsumeswxS0__Sb -_TTSf4n_n_d___TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element14isDisjointWithwxS0__Sb -_TTSf4n_n_d___TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element14isDisjointWithwxS0__Sb -objectdestroy.14 -_swift_dead_method_stub -_TPA__TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__.7 -_TWturGVs15ContiguousArrayx_s12SequenceTypes11SubSequence -_TWturGSax_s14CollectionTypes11SubSequence -_TTWVSC17NSMatchingOptionss16RawRepresentable10FoundationFS0_CfT8rawValuewx8RawValue_GSqx_ -_TTWVSC26NSRegularExpressionOptionss16RawRepresentable10FoundationFS0_CfT8rawValuewx8RawValue_GSqx_ -objectdestroy.3 -objectdestroy.5 -objectdestroy.8 -objectdestroy.11 -_TWturGVs12AnyGeneratorx_s13GeneratorTypes7Element -_TWturGVs12_ArrayBufferx_s16_ArrayBufferTypes7Element -_TWturGVs12_ArrayBufferx_s9Indexables8_Element -_TWturGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypes7Element -_TWturGVs22_ContiguousArrayBufferx_s9Indexables8_Element -_TTWVSC26NSRegularExpressionOptionss9Equatable10FoundationZFS0_oi2eefTxx_Sb -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_g7isEmptySb -_TPA__TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__.13 -_TTWVSC26NSRegularExpressionOptionss16RawRepresentable10FoundationFS0_g8rawValuewx8RawValue -_TWTurGVs15ContiguousArrayx_s12SequenceTypes9GeneratorPs13GeneratorType_ -_TWTurGSax_s14CollectionTypes9GeneratorPs13GeneratorType_ -_TWTurGVs22_ContiguousArrayBufferx_s14CollectionTypes9GeneratorPs13GeneratorType_ -_TTWVSC26NSRegularExpressionOptionss13OptionSetType10FoundationFS0_CfT8rawValuewx8RawValue_x -_TPA__TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_.10 -_TWturGSax_s14CollectionTypes9Generator -_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_8containsfwx7ElementSb -_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_8containsfwx7ElementSb -globalinit_33_47969F13D2F39044D14973F482FBAD86_token0 -L_selector_data(_rlmArray) -L_selector(_rlmArray) -L_selector_data(count) -L_selector(count) -L_selector_data(defaultConfiguration) -L_selector(defaultConfiguration) -L_selector_data(path) -L_selector(path) -L_selector_data(inMemoryIdentifier) -L_selector(inMemoryIdentifier) -L_selector_data(encryptionKey) -L_selector(encryptionKey) -L_selector_data(readOnly) -L_selector(readOnly) -L_selector_data(schemaVersion) -L_selector(schemaVersion) -L_selector_data(migrationBlock) -L_selector(migrationBlock) -metadata -metadata.2 -metadata.4 -L_selector_data(customSchema) -L_selector(customSchema) -L_selector_data(disableFormatUpgrade) -L_selector(disableFormatUpgrade) -_TMLCSo12NSDictionary -L_selector_data(description) -L_selector(description) -L_selector_data(isEqualToObjectSchema:) -L_selector(isEqualToObjectSchema:) -L_selector_data(isEqualToProperty:) -L_selector(isEqualToProperty:) -metadata.6 -metadata.9 -metadata.12 -L_selector_data(isEqualToSchema:) -L_selector(isEqualToSchema:) -_TWPOSC15RLMPropertyTypes16RawRepresentable5Realm -_TWVVSC17NSMatchingOptions -_TMnVSC17NSMatchingOptions -_TMVSC17NSMatchingOptions -_TWPVSC17NSMatchingOptionss23ArrayLiteralConvertible10Foundation -_TWPVSC17NSMatchingOptionss9Equatable10Foundation -_TWPVSC17NSMatchingOptionss14SetAlgebraType10Foundation -_TWVVSC26NSRegularExpressionOptions -_TMnVSC26NSRegularExpressionOptions -_TMVSC26NSRegularExpressionOptions -_TWPVSC26NSRegularExpressionOptionss23ArrayLiteralConvertible10Foundation -_TWPVSC26NSRegularExpressionOptionss9Equatable10Foundation -_TWPVSC26NSRegularExpressionOptionss14SetAlgebraType10Foundation -_TWPVSC17NSMatchingOptionss16RawRepresentable10Foundation -_TWPVSC17NSMatchingOptionss13OptionSetType10Foundation -_TWPVSC26NSRegularExpressionOptionss16RawRepresentable10Foundation -_TWPVSC26NSRegularExpressionOptionss13OptionSetType10Foundation -_swift_FORCE_LOAD_$_swiftFoundation_$_RealmSwift -_swift_FORCE_LOAD_$_swiftObjectiveC_$_RealmSwift -_swift_FORCE_LOAD_$_swiftDarwin_$_RealmSwift -_swift_FORCE_LOAD_$_swiftDispatch_$_RealmSwift -l_protocol_conformances -got._TMps16RawRepresentable -_TWVOSC15RLMPropertyType -_TMnOSC15RLMPropertyType -_TMOSC15RLMPropertyType -got._TMps23ArrayLiteralConvertible -got._TMps9Equatable -got._TMps14SetAlgebraType -got._TMps13OptionSetType -field_type_vector_RLMPropertyType -field_type_vector_NSRegularExpressionOptions -field_type_vector_NSMatchingOptions -_TMLGCs23_ContiguousArrayStorageVSC26NSRegularExpressionOptions_ -_TMLGCs23_ContiguousArrayStorageVSC17NSMatchingOptions_ -metadata.15 -switch.table -Apple LLVM version 7.3.0 (clang-703.0.29) --emit-bc /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Aliases.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Error.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/List.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Migration.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Object.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/ObjectSchema.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Optional.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Property.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Realm.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmCollectionType.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmConfiguration.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Results.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Schema.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SortDescriptor.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SwiftVersion.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Util.swift -target armv7k-apple-watchos2.0 -enable-objc-interop -sdk /Applications/Xcode-7.3.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.2.sdk -I /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Products/Release-watchos -F /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Products/Release-watchos -application-extension -g -module-cache-path /Users/realm/Library/Developer/Xcode/DerivedData/ModuleCache -serialize-debugging-options -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/RealmSwift-generated-files.hmap -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/RealmSwift-own-target-headers.hmap -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/RealmSwift-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/RealmSwift-project-headers.hmap -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Products/Release-watchos/include -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/DerivedSources/armv7k -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/DerivedSources -Xcc -DREALM_HAVE_CONFIG -Xcc -D__ASSERTMACROS__ -Xcc -working-directory/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release -emit-module-doc-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/RealmSwift.swiftdoc -O -module-name RealmSwift -emit-module-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/RealmSwift.swiftmodule -emit-objc-header-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/RealmSwift-Swift.h -serialize-diagnostics-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/Aliases.dia -emit-dependencies-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/Aliases.d -num-threads 4 -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/Aliases.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/Error.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/List.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/Migration.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/Object.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/ObjectSchema.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/Optional.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/Property.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/Realm.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/RealmCollectionType.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/RealmConfiguration.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/Results.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/Schema.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/SortDescriptor.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/SwiftVersion.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-watchos/RealmSwift.build/Objects-normal/armv7k/Util.bc -resource-dir /Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -$NSDecimal$_exponent$getter - -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release -$NSDecimal$_exponent$setter -$NSDecimal$_length$getter -$NSDecimal$_length$setter -$NSDecimal$_isNegative$getter -$NSDecimal$_isNegative$setter -$NSDecimal$_isCompact$getter -$NSDecimal$_isCompact$setter -$NSDecimal$_reserved$getter -$NSDecimal$_reserved$setter -Apple Swift version 2.2 (swiftlang-703.0.18.1 clang-703.0.29) -Aliases.swift -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift -_TFEsPs30RangeReplaceableCollectionType17_customRemoveLastfSiSb -_TFVs15EmptyCollectionCfT_GS_x_ -_TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ -_TFVs15ContiguousArrayg5countSi -_TFSp14initializeFromfTGSpx_5countSi_T_ -_TFVs22_ContiguousArrayBufferg5ownerPs9AnyObject_ -_TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ -_TFVs22_ContiguousArrayBufferg10startIndexSi -_TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb -_TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb -_TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TFVs15ContiguousArray9_getCountfT_Si -_TFVs15ContiguousArray16_copyToNewBufferfSiT_ -_TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ -_TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ -_TFVs12_ArrayBufferCfT_GS_x_ -_TZFSa28_allocateBufferUninitializedfSiGVs12_ArrayBufferx_ -_TFSaCfT19_uninitializedCountSi_GSax_ -_TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ -_TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ -_TFVs20ManagedBufferPointerg6bufferPs9AnyObject_ -_TFVs12_ArrayBuffer20isUniquelyReferencedfT_Sb -_TFVs12_ArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TFSa40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TFVs22_ContiguousArrayBufferg8capacitySi -_TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TFSp7destroyfSiT_ -_TFSp18moveInitializeFromfTGSpx_5countSi_T_ -_TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ -_TFVs14_IgnorePointerCfT_GS_x_ -_TFSa16_copyToNewBufferfSiT_ -_TFSa36_reserveCapacityAssumingUniqueBufferfSiT_ -_TFVs12_ArrayBuffers5countSi -_TFVs12_ArrayBufferg19firstElementAddressGSpx_ -_TFSa37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ -_TFEsPs14_Incrementable17_successorInPlacefT_T_ -_TFs10_expectEnduRxs14CollectionTyperFTwx5Indexx_T_ -_TFs34_copyCollectionToNativeArrayBufferuRxs14CollectionTyperFxGVs22_ContiguousArrayBufferWx9Generator7Element__ -init -_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraTypeCft12arrayLiteralGSawx7Element__x -== -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_8containsfxSb -contains -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType5unionfxx -union -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType9intersectfxx -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType11exclusiveOrfxx -unionInPlace -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_6insertfwxS0_T_ -insert -remove -_TTSg5VSC17NSMatchingOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_6removefwxS0_GSqwxS0__ -_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType8subtractfxx -subtract -_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType10isSubsetOffxSb -isSubsetOf -_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType14isDisjointWithfxSb -isDisjointWith -_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType12isSupersetOffxSb -intersect -isSupersetOf -_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraTypeg7isEmptySb -isEmpty.get -intersectInPlace -exclusiveOrInPlace -exclusiveOr -_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType15subtractInPlacefxT_ -subtractInPlace -element -_TTSg5Vs10_ArrayBody_VSC17NSMatchingOptions___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5VSC17NSMatchingOptions___TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5VSC17NSMatchingOptions___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5Vs10_ArrayBody_VSC17NSMatchingOptions___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_VSC17NSMatchingOptions___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ -_TTSg5VSC17NSMatchingOptions___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ -_TTSg5Vs10_ArrayBody_VSC17NSMatchingOptions___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5Vs10_ArrayBody_VSC17NSMatchingOptions___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_VSC17NSMatchingOptions___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TMaGCs23_ContiguousArrayStorageVSC17NSMatchingOptions_ -_TTSg5VSC17NSMatchingOptions___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TTSg5Vs10_ArrayBody_VSC17NSMatchingOptions___TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraTypeCft12arrayLiteralGSawx7Element__x -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_8containsfxSb -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType5unionfxx -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType9intersectfxx -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType11exclusiveOrfxx -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_6insertfwxS0_T_ -_TTSg5VSC26NSRegularExpressionOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_6removefwxS0_GSqwxS0__ -_TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType8subtractfxx -_TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType10isSubsetOffxSb -_TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType14isDisjointWithfxSb -_TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType12isSupersetOffxSb -_TTWSus9EquatablesZFS_oi2eefTxx_Sb -_TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraTypeg7isEmptySb -_TTWSus21BitwiseOperationsTypesZFS_g8allZerosx -_TTWSus21BitwiseOperationsTypesZFS_oi1xfTxx_x -_TTWSus21BitwiseOperationsTypesZFS_oi1afTxx_x -_TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType15subtractInPlacefxT_ -_TTSg5Vs10_ArrayBody_VSC26NSRegularExpressionOptions___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5VSC26NSRegularExpressionOptions___TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5VSC26NSRegularExpressionOptions___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5Vs10_ArrayBody_VSC26NSRegularExpressionOptions___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_VSC26NSRegularExpressionOptions___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ -_TTSg5VSC26NSRegularExpressionOptions___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ -_TTSg5Vs10_ArrayBody_VSC26NSRegularExpressionOptions___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5Vs10_ArrayBody_VSC26NSRegularExpressionOptions___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_VSC26NSRegularExpressionOptions___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TMaGCs23_ContiguousArrayStorageVSC26NSRegularExpressionOptions_ -_TTSg5VSC26NSRegularExpressionOptions___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TTSg5Vs10_ArrayBody_VSC26NSRegularExpressionOptions___TZFVs20ManagedBufferPointerg14_alignmentMaskSi -rawValue.get -_TWaVSC26NSRegularExpressionOptionss13OptionSetType10Foundation -_TWaVSC26NSRegularExpressionOptionss16RawRepresentable10Foundation -_TWaVSC17NSMatchingOptionss13OptionSetType10Foundation -_TWaVSC17NSMatchingOptionss16RawRepresentable10Foundation -_TWaVSC26NSRegularExpressionOptionss14SetAlgebraType10Foundation -_TWaVSC26NSRegularExpressionOptionss9Equatable10Foundation -_TWaVSC26NSRegularExpressionOptionss23ArrayLiteralConvertible10Foundation -_TWaVSC17NSMatchingOptionss14SetAlgebraType10Foundation -_TWaVSC17NSMatchingOptionss9Equatable10Foundation -_TWaVSC17NSMatchingOptionss23ArrayLiteralConvertible10Foundation -_TWaOSC15RLMPropertyTypes16RawRepresentable5Realm -description.get -_TIFV10RealmSwift14SortDescriptorcFT8propertySS9ascendingSb_S0_A0_ -_initializeTo -_copyToNativeArrayBuffer -_preprocessingPass -_customContainsEquatableElement -split -suffix -prefix -dropLast -dropFirst -forEach -filter -map -underestimateCount -generate -subscript.get -endIndex.get -startIndex.get -first.get -_customIndexOfEquatableElement -count.get -prefixThrough -suffixFrom -prefixUpTo -_addNotificationBlock -setValue -valueForKeyPath -valueForKey -average -sum -max -min -sorted -indexOf -realm.get -_TIFC10RealmSwift7Results6sortedFTSS9ascendingSb_GS0_x_A0_ -Results.swift -objectTypes.materialize -inMemoryIdentifier.materialize -path.materialize -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A5_ -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A3_ -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A2_ -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A1_ -defaultConfiguration.materialize -next -hashValue.get -_TTWSSs9EquatablesZFS_oi2eefTxx_Sb -_TTSg5O10RealmSwift12NotificationS0_s16RawRepresentableS__SSSSs9Equatables___TZFsoi2eeuRxs16RawRepresentablewx8RawValues9EquatablerFTxx_Sb -_TIFC10RealmSwift5Realm15writeCopyToPathFzTSS13encryptionKeyGSqCSo6NSData__T_A0_ -Realm.swift -_TIFC10RealmSwift5Realm13dynamicCreateFTSS5valuePs9AnyObject_6updateSb_CS_13DynamicObjectA1_ -_TIFC10RealmSwift5Realm13dynamicCreateFTSS5valuePs9AnyObject_6updateSb_CS_13DynamicObjectA0_ -_TIFC10RealmSwift5Realm6createuRxCS_6ObjectrFTMx5valuePs9AnyObject_6updateSb_xA1_ -_TIFC10RealmSwift5Realm6createuRxCS_6ObjectrFTMx5valuePs9AnyObject_6updateSb_xA0_ -_TIFC10RealmSwift5Realm3adduRxs12SequenceTypeWx9Generator7Element_CS_6ObjectrFTx6updateSb_T_A0_ -_TIFC10RealmSwift5Realm3addFTCS_6Object6updateSb_T_A0_ -_TIFC10RealmSwift5RealmcFzT13configurationVS0_13Configuration_S0_A_ -_TIFC10RealmSwift13RealmOptionalcFTGSqx__GS0_x_A_ -Optional.swift -subscript.materialize -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs12_ArrayBufferg9_isNativeSb -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs12_ArrayBufferg19firstElementAddressGSpx_ -_TTSg5Vs10_ArrayBody_TPSo9NSCopying_Ps9AnyObject_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -__swift_memmove_array12_4 -__swift_memcpy_array12_4 -__swift_memcpy12_4 -_TTSg5Vs10_ArrayBody_TPSo9NSCopying_Ps9AnyObject_____TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs22_ContiguousArrayBuffers5countSi -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs12_ArrayBuffers5countSi -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs12_ArrayBufferCfT_GS_x_ -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFSaCfT19_uninitializedCountSi_GSax_ -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TMaCSo12NSDictionary -_TIFC10RealmSwift9Migration6createFTSS5valuePs9AnyObject__CS_13DynamicObjectA0_ -Migration.swift -_TTRXFo_oXFo_oCSo12RLMMigrationdVs6UInt64_dT___oXFo_oC10RealmSwift9MigrationdS0__dT__zoPs9ErrorType__XFo_iXFo_iTS_S0___iT___iXFo_iT9migrationS2_16oldSchemaVersionS0___iT__zoPS3___ -_TFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_ -_TTSg5SSSSs9Equatables___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb -_TTSg5SSSSs9Equatables___TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb -path.set -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A4_ -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A0_ -_TFSSCfT21_builtinStringLiteralBp8byteSizeBw7isASCIIBi1__SS -_TTSf4n_n_n_d___TFSSCfT21_builtinStringLiteralBp8byteSizeBw7isASCIIBi1__SS -_TMaCSo21RLMRealmConfiguration -_TTSg5FTCSo12RLMMigrationVs6UInt64_T__FT9migrationC10RealmSwift9Migration16oldSchemaVersionS0__T____TFSq3mapurfzFzxqd__GSqqd___ -fromRLMRealmConfiguration -defaultConfiguration.get -_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A_ -_TIF10RealmSwift12migrateRealmFTVCS_5Realm13Configuration_GSqCSo7NSError_A_ -_TIF10RealmSwift19schemaVersionAtPathFTSS13encryptionKeyGSqCSo6NSData_5errorGVs33AutoreleasingUnsafeMutablePointerGSqCSo7NSError___GSqVs6UInt64_A1_ -_TIF10RealmSwift19schemaVersionAtPathFTSS13encryptionKeyGSqCSo6NSData_5errorGVs33AutoreleasingUnsafeMutablePointerGSqCSo7NSError___GSqVs6UInt64_A0_ -removeAll -removeRange -removeFirst -_customRemoveLast -removeAtIndex -insertContentsOf -appendContentsOf -append -reserveCapacity -replaceRange -_TIFC10RealmSwift4List6sortedFTSS9ascendingSb_GCS_7Resultsx_A0_ -List.swift -_code.get -rlmError.get -_domain.get -_TFSig9hashValueSi -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Aliases.swift -__swift_memcpy1_1 -__swift_memcpy_array1_1 -__swift_memmove_array1_1 -_TwxsO10RealmSwift5Error -_TwxgO10RealmSwift5Error -_TwugO10RealmSwift5Error -_TwupO10RealmSwift5Error -_TwuiO10RealmSwift5Error -get_field_types_Error -_TMfO10RealmSwift5Error -got._TMps8Hashable -got._TMps9ErrorType -field_type_vector_Error -_TMaO10RealmSwift5Error -Error.swift -_TWaO10RealmSwift5Errors9EquatableS_ -_TWaO10RealmSwift5Errors9ErrorTypeS_ -_TWaO10RealmSwift5Errors8HashableS_ -~= -_TZFsoi2eeFTSSSS_Sb -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Error.swift -_TToFC10RealmSwift8ListBaseg11descriptionSS -_TToFC10RealmSwift8ListBaseg5countSi -_TToFC10RealmSwift8ListBasecfT5arrayGSQCSo8RLMArray__GSQS0__ -_TToFC10RealmSwift8ListBasecfT_S0_ -_TFFC10RealmSwift4Listg5realmGSqCS_5Realm_U_FCSo8RLMRealmS1_ -_TToFC10RealmSwift4Listg11invalidatedSb -_TToFC10RealmSwift4ListcfT_GS0_x_ -_TToFC10RealmSwift4List11valueForKeyfSSGSqPs9AnyObject__ -_TToFC10RealmSwift4List15valueForKeyPathfSSGSqPs9AnyObject__ -_TToFC10RealmSwift4List8setValuefTGSqPs9AnyObject__6forKeySS_T_ -_TFC10RealmSwift7ResultsCfCSo10RLMResultsGS0_x_ -_TFFC10RealmSwift4List6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrFqd__GCS_7Resultsx_U_FS4_Ps9AnyObject_ -_TTRG__RxC10RealmSwift6Objectd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrXFo_oS4__oPs9AnyObject_zoPs9ErrorType__XFo_iS4__iPS5__zoPS6___ -_TToFC10RealmSwift4List13removeAtIndexfSiT_ -_TToFC10RealmSwift4List10removeLastfT_T_ -_TToFC10RealmSwift4List9removeAllfT_T_ -_TToFC10RealmSwift4List4movefT4fromSi2toSi_T_ -_TToFC10RealmSwift4List4swapfTSiSi_T_ -_TTRXFo_oCSo8RLMArrayoCSo7NSError_dT__XFdCb_dS_dS0__dT__ -_TFC10RealmSwift12RLMGeneratorCfT10collectionPSo13RLMCollection__GS0_x_ -_TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ -_TFEsPs12SequenceType7reversefT_GSaWx9Generator7Element__ -_TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ -_TTSg5SSSSs10Streamables___TFs27_toStringReadOnlyStreamableuRxs10StreamablerFxSS -_TFs4swapurFTRxRx_T_ -_TFSaap9subscriptFSix -_TFVs17IndexingGeneratorCfxGS_x_ -_TTSf4n_gs___TF10RealmSwift21throwForNegativeIndexFTSi13parameterNameSS_T_ -_TMaGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__ -_TPA__TTRG__RxC10RealmSwift6Objectd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrXFo_oS4__oPs9AnyObject_zoPs9ErrorType__XFo_iS4__iPS5__zoPS6___ -_TPA__TFFC10RealmSwift4List20addNotificationBlockFFGS0_x_T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayCSo7NSError_T_ -block_copy_helper -block_destroy_helper -_TPA__TFFC10RealmSwift4List21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayS2__T_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_7Element -_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_ -_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequencePs9Indexable_ -_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequencePs12SequenceType_ -_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_9Generator -_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_9GeneratorPs13GeneratorType_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_11SubSequence -get_field_types_ListBase -get_field_types_List -create_generic_metadata_List -_TMaGCs23_ContiguousArrayStorageSS_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_9Generator -_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_ -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s9IndexableS_8_Element -block_destroy_helper.8 -_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequence -block_copy_helper.7 -_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_9GeneratorPs13GeneratorType_ -L_selector_data(initWithArray:) -L_selector(initWithArray:) -L_selector_data(allocWithZone:) -L_selector(allocWithZone:) -L_selector_data(init) -L_selector(init) -L_selector_data(dealloc) -L_selector(dealloc) -L_selector_data(realm) -L_selector(realm) -L_selector_data(isInvalidated) -L_selector(isInvalidated) -L_selector_data(className) -L_selector(className) -L_selector_data(initWithObjectClassName:) -L_selector(initWithObjectClassName:) -L_selector_data(indexOfObject:) -L_selector(indexOfObject:) -L_selector_data(indexOfObjectWithPredicate:) -L_selector(indexOfObjectWithPredicate:) -_TMLPs9AnyObject_ -_PROTOCOL__TtPs9AnyObject_ -l_OBJC_LABEL_PROTOCOL_$__TtPs9AnyObject_ -l_OBJC_PROTOCOL_REFERENCE_$__TtPs9AnyObject_ -L_selector_data(predicateWithFormat:argumentArray:) -L_selector(predicateWithFormat:argumentArray:) -L_selector_data(objectAtIndexedSubscript:) -L_selector(objectAtIndexedSubscript:) -L_selector_data(setObject:atIndexedSubscript:) -L_selector(setObject:atIndexedSubscript:) -L_selector_data(firstObject) -L_selector(firstObject) -L_selector_data(lastObject) -L_selector(lastObject) -L_selector_data(valueForKey:) -L_selector(valueForKey:) -L_selector_data(valueForKeyPath:) -L_selector(valueForKeyPath:) -L_selector_data(setValue:forKey:) -L_selector(setValue:forKey:) -L_selector_data(objectsWithPredicate:) -L_selector(objectsWithPredicate:) -_TMLGCs23_ContiguousArrayStorageV10RealmSwift14SortDescriptor_ -_TMLGSaV10RealmSwift14SortDescriptor_ -_TWLGSaV10RealmSwift14SortDescriptor_urGSax_s12SequenceTypes -_TMLGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__ -_TWLGSaV10RealmSwift14SortDescriptor_urGSax_s9Indexables -_TWLGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__uRxs9IndexablerGS_x_s13GeneratorTypes -_TMLGVs10ArraySliceV10RealmSwift14SortDescriptor_ -L_selector_data(sortedResultsUsingDescriptors:) -L_selector(sortedResultsUsingDescriptors:) -L_selector_data(predicateWithValue:) -L_selector(predicateWithValue:) -L_selector_data(addObject:) -L_selector(addObject:) -L_selector_data(insertObject:atIndex:) -L_selector(insertObject:atIndex:) -L_selector_data(removeObjectAtIndex:) -L_selector(removeObjectAtIndex:) -L_selector_data(removeLastObject) -L_selector(removeLastObject) -L_selector_data(removeAllObjects) -L_selector(removeAllObjects) -L_selector_data(replaceObjectAtIndex:withObject:) -L_selector(replaceObjectAtIndex:withObject:) -L_selector_data(moveObjectAtIndex:toIndex:) -L_selector(moveObjectAtIndex:toIndex:) -L_selector_data(exchangeObjectAtIndex:withObjectAtIndex:) -L_selector(exchangeObjectAtIndex:withObjectAtIndex:) -block_descriptor -L_selector_data(addNotificationBlock:) -L_selector(addNotificationBlock:) -block_descriptor.9 -_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_ -L_selector_data(descriptionWithMaxDepth:) -_METACLASS_DATA__TtC10RealmSwift8ListBase -_INSTANCE_METHODS__TtC10RealmSwift8ListBase -_PROPERTIES__TtC10RealmSwift8ListBase -_DATA__TtC10RealmSwift8ListBase -_TWoFC10RealmSwift8ListBaseP33_027551CC6B6B2DBBB6CF4A740CB6E5D623descriptionWithMaxDepthfSuSS -_TMfC10RealmSwift8ListBase -L_selector_data(invalidated) -L_selector_data(removeAtIndex:) -L_selector_data(removeLast) -L_selector_data(removeAll) -L_selector_data(moveFrom:to:) -L_selector_data(swap::) -_INSTANCE_METHODS__TtC10RealmSwift4List -_PROPERTIES__TtC10RealmSwift4List -got._TMp10RealmSwift19RealmCollectionType -got._TMps30RangeReplaceableCollectionType -got._TMps14CollectionType -got._TMps9Indexable -got._TMps12SequenceType -field_type_vector_ListBase -L_selector_data(getObjects:range:) -L_selector(getObjects:range:) -L_selector_data(objectAtIndex:) -L_selector(objectAtIndex:) -L_selector_data(sortDescriptorWithProperty:ascending:) -L_selector(sortDescriptorWithProperty:ascending:) -_TMLGCs23_ContiguousArrayStorageSS_ -L_selector_data(objectClassName) -L_selector(objectClassName) -L_selector(descriptionWithMaxDepth:) -L_selector_data(initWithPattern:options:error:) -L_selector(initWithPattern:options:error:) -L_selector_data(stringByReplacingMatchesInString:options:range:withTemplate:) -L_selector(stringByReplacingMatchesInString:options:range:withTemplate:) -objc_classes -_TTWVVSS9UTF16View5Indexs16ForwardIndexTypesFS1_10distanceTofxwx8Distance -_TFSSg5utf16VSS9UTF16View -_TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffer10getElementfSix -_TTSg5GSaVSC17NSMatchingOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ -_TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBufferg5countSi -_TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffers5countSi -_TTSg5VSC17NSMatchingOptions___TFVs12_ArrayBuffers5countSi -_TTSg5VSC17NSMatchingOptions___TFSaCfT19_uninitializedCountSi_GSax_ -_TTSg5VSC17NSMatchingOptions___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffer10getElementfSix -_TTSg5GSaVSC26NSRegularExpressionOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ -_TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBufferg5countSi -_TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffers5countSi -_TTSg5VSC26NSRegularExpressionOptions___TFVs12_ArrayBuffers5countSi -_TTSg5VSC26NSRegularExpressionOptions___TFVs12_ArrayBufferCfT_GS_x_ -_TTSg5VSC26NSRegularExpressionOptions___TFSaCfT19_uninitializedCountSi_GSax_ -_TTSg5VSC26NSRegularExpressionOptions___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TFSSCft19stringInterpolationGSaSS__SS -_TTSg5SS___TFSa9_getCountfT_Si -_TFSSCfT26stringInterpolationSegmentSS_SS -_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5SS___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ -_TTSg5SS___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ -_TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -gsub -_TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -_TTSg5SS___TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x -_TTSf4g_d___TFSSCft19stringInterpolationGSaSS__SS -_TTSg5SS___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TTSg5SS___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg14_alignmentMaskSi -descriptionWithMaxDepth -_TTRGRxC10RealmSwift6ObjectrXFo_oCSo8RLMRealm_oCS_5RealmzoPs9ErrorType__XFo_iS1__iS2_zoPS3___ -rlmSortDescriptorValue.get -_TFFC10RealmSwift4List20addNotificationBlockFFGS0_x_T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayCSo7NSError_T_ -_TFVs12_ArrayBuffer28isUniquelyReferencedOrPinnedfT_Sb -_TFVs12_ArrayBuffer38isMutableAndUniquelyReferencedOrPinnedfT_Sb -_TFVs12_ArrayBufferg21needsElementTypeCheckSb -_TFVs12_ArrayBuffer18_typeCheckSlowPathfSiT_ -_TFVs12_ArrayBuffer10_typeCheckfGVs5RangeSi_T_ -_TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TFVs12_ArrayBufferg10startIndexSi -_TZFSa11_copyBufferfRGVs12_ArrayBufferx_T_ -_TFSa29_makeMutableAndUniqueOrPinnedfT_T_ -_TFVs12_ArrayBufferg20_isNativeTypeCheckedSb -_TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -_TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ -_TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken -_TFSa22_checkSubscript_nativefSiT_ -_TFVs12_ArrayBufferg41_unconditionalMutableSubscriptBaseAddressGSpx_ -_TFSa18_getElementAddressfSiGSpx_ -_TFVs12_ArrayBufferg5ownerPs9AnyObject_ -_TFVs12_ArrayBufferg11nativeOwnerPs9AnyObject_ -_TFSa33_getOwnerWithSemanticLabel_nativefT_Bo -_TFSa16_getOwner_nativefT_Bo -_TFFC10RealmSwift4List21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayS2__T_ -_TMaC10RealmSwift8ListBase -_TWauRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_4Listx_s9IndexableS_ -_TWauRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_ -_TTSg5SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si___TFVs14RangeGenerator4nextfT_GSqx_ -_TTWSis9EquatablesZFS_oi2eefTxx_Sb -_TTWSis14_IncrementablesFS_17_successorInPlacefT_T_ -deinit -addNotificationBlock -swap -move -replace -removeLast -_TMaGVs10ArraySliceV10RealmSwift14SortDescriptor_ -_TWlGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__uRxs9IndexablerGS_x_s13GeneratorTypes -_TWlGSaV10RealmSwift14SortDescriptor_urGSax_s9Indexables -_TWlGSaV10RealmSwift14SortDescriptor_urGSax_s12SequenceTypes -_TMaGSaV10RealmSwift14SortDescriptor_ -_TTSg5V10RealmSwift14SortDescriptor___TFSaCft12arrayLiteralGSax__GSax_ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5V10RealmSwift14SortDescriptor___TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5V10RealmSwift14SortDescriptor___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5V10RealmSwift14SortDescriptor___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5V10RealmSwift14SortDescriptor___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ -_TTSg5V10RealmSwift14SortDescriptor___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TMaGCs23_ContiguousArrayStorageV10RealmSwift14SortDescriptor_ -_TTSg5V10RealmSwift14SortDescriptor___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg14_alignmentMaskSi -last.get -subscript.set -_TIF10RealmSwift21throwForNegativeIndexFTSi13parameterNameSS_T_A0_ -_TMaPs9AnyObject_ -_TMaCSo9RLMObject -notFoundToNil -invalidated.get -_TPA__TTRGRxC10RealmSwift6ObjectrXFo_oCSo8RLMRealm_oCS_5RealmzoPs9ErrorType__XFo_iS1__iS2_zoPS3___ -_TTSg5CSo8RLMRealm_C10RealmSwift5Realm___TFSq3mapurfzFzxqd__GSqqd___ -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/List.swift -_TTRXFo_oGSqCSo9RLMObject_oGSqS___dT__XFdCb_dGSqS__dGSqS___dT__ -_TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_ -_TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__ -_TPA__TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__ -_TPA__TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_ -_TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFo_iTS_S0___iT__ -_TPA__TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFo_iTS_S0___iT__ -_TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFdCb_dS_dS0__dT__ -_TPA__TFFC10RealmSwift9Migration9enumerateFTSSFT9oldObjectGSqCS_13DynamicObject_9newObjectGSqS1___T__T_U_FTGSqCSo9RLMObject_GSqS2___T_ -get_field_types_Migration -_TMaCSo15RLMObjectSchema -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBuffer19_getElementSlowPathfSiPs9AnyObject_ -_TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__ -objectdestroy.7 -block_destroy_helper.10 -_TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__ -block_copy_helper.9 -L_selector_data(schemaVersionAtPath:encryptionKey:error:) -L_selector(schemaVersionAtPath:encryptionKey:error:) -L_selector_data(setPath:) -L_selector(setPath:) -L_selector_data(setEncryptionKey:) -L_selector(setEncryptionKey:) -L_selector_data(setReadOnly:) -L_selector(setReadOnly:) -L_selector_data(setSchemaVersion:) -L_selector(setSchemaVersion:) -L_selector_data(setMigrationBlock:) -L_selector(setMigrationBlock:) -L_selector_data(setCustomSchema:) -L_selector(setCustomSchema:) -L_selector_data(setDisableFormatUpgrade:) -L_selector(setDisableFormatUpgrade:) -L_selector_data(migrateRealm:) -L_selector(migrateRealm:) -L_selector_data(setInMemoryIdentifier:) -L_selector(setInMemoryIdentifier:) -L_selector_data(oldSchema) -L_selector(oldSchema) -L_selector_data(newSchema) -L_selector(newSchema) -metadata.8 -block_descriptor.11 -L_selector_data(enumerateObjects:block:) -L_selector(enumerateObjects:block:) -L_selector_data(createObject:withValue:) -L_selector(createObject:withValue:) -L_selector_data(deleteDataForClassName:) -L_selector(deleteDataForClassName:) -_METACLASS_DATA__TtC10RealmSwift9Migration -_IVARS__TtC10RealmSwift9Migration -_DATA__TtC10RealmSwift9Migration -_TWoFC10RealmSwift9MigrationCfCSo12RLMMigrationS0_ -_TMfC10RealmSwift9Migration -field_type_vector_Migration -_TMLCSo12RLMMigration -L_selector_data(objectSchema) -L_selector(objectSchema) -_TMLCSo15RLMObjectSchema -L_selector_data(setAccessorClass:) -L_selector(setAccessorClass:) -L_selector_data(setIsSwiftClass:) -L_selector(setIsSwiftClass:) -_TTSg5CSo15RLMObjectSchema___TFVs22_ContiguousArrayBufferg5countSi -_TTSg5Vs10_ArrayBody_CSo15RLMObjectSchema___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5CSo15RLMObjectSchema___TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ -_TTSg5Vs10_ArrayBody_CSo15RLMObjectSchema___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5Vs10_ArrayBody_CSo15RLMObjectSchema___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5Vs10_ArrayBody_CSo15RLMObjectSchema___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_CSo15RLMObjectSchema___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5CSo15RLMObjectSchema___TFVs22_ContiguousArrayBuffer10getElementfSix -_TTSg5CSo15RLMObjectSchema___TFVs22_ContiguousArrayBufferg9subscriptFSix -_TTSg5CSo15RLMObjectSchema___TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg20_isNativeTypeCheckedSb -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg32arrayPropertyIsNativeTypeCheckedSb -_TTSg5CSo15RLMObjectSchema___TFSa29_hoistableIsNativeTypeCheckedfT_Sb -_TTSg5GSaCSo15RLMObjectSchema_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ -_TTSg5CSo15RLMObjectSchema___TTWurGSax_s9IndexablesFS_g8endIndexwx5Index -_TTSg5CSo15RLMObjectSchema___TFs25_isClassOrObjCExistentialurFMxSb -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg9_isNativeSb -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg5countSi -_TTSg5CSo15RLMObjectSchema___TFSa9_getCountfT_Si -_TTSg5CSo15RLMObjectSchema___TFSag10startIndexSi -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ -_TTSg5CSo15RLMObjectSchema___TFSag9subscriptFSix -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ -_TTSg5CSo15RLMObjectSchema___TFSag8endIndexSi -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TMaGSqCSo9RLMObject_ -_TFFC10RealmSwift9Migration9enumerateFTSSFT9oldObjectGSqCS_13DynamicObject_9newObjectGSqS1___T__T_U_FTGSqCSo9RLMObject_GSqS2___T_ -_TMaCSo12RLMMigration -_TMaC10RealmSwift9Migration -deleteData -delete -create -enumerate -newSchema.get -oldSchema.get -accessorMigrationBlock -_TFFVC10RealmSwift5Realm13Configurationg16rlmConfigurationCSo21RLMRealmConfigurationU_FFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS4__T_ -_TTRXFo_oXFo_oC10RealmSwift9MigrationdVs6UInt64_dT___oXFo_oCSo12RLMMigrationdS1__dT__zoPs9ErrorType__XFo_iXFo_iT9migrationS0_16oldSchemaVersionS1___iT___iXFo_iTS2_S1___iT__zoPS3___ -path.get -_TTSg5FT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T__FTCSo12RLMMigrationS1__T____TFSq3mapurfzFzxqd__GSqqd___ -rlmConfiguration.get -inMemoryIdentifier.get -migrateRealm -_TMaCSo8RLMRealm -schemaVersionAtPath -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Migration.swift -_TToFC10RealmSwift6ObjectcfT_S0_ -_TToFC10RealmSwift6ObjectcfT5valuePs9AnyObject__S0_ -_TToFC10RealmSwift6Objectg11invalidatedSb -_TToFC10RealmSwift6Objectg11descriptionSS -_TToFC10RealmSwift6Objectg9classNameSS -_TToZFC10RealmSwift6Object15objectUtilClassfSbPMPs9AnyObject_ -_TToZFC10RealmSwift6Object10primaryKeyfT_GSqSS_ -_TToZFC10RealmSwift6Object17ignoredPropertiesfT_GSaSS_ -_TFs15_arrayForceCastu0_rFGSax_GSaq__ -_TToFC10RealmSwift6Objectg9subscriptFSSGSqPs9AnyObject__ -_TToFC10RealmSwift6Objects9subscriptFSSGSqPs9AnyObject__ -_TToFC10RealmSwift6Object7isEqualfGSqPs9AnyObject__Sb -_TToFC10RealmSwift6ObjectcfT5realmCSo8RLMRealm6schemaCSo15RLMObjectSchema_S0_ -_TToFC10RealmSwift6ObjectcfT5valuePs9AnyObject_6schemaCSo9RLMSchema_S0_ -_TFC10RealmSwift13DynamicObject15listForPropertyfCSo11RLMPropertyCSo11RLMListBase -_TToFC10RealmSwift13DynamicObject15listForPropertyfCSo11RLMPropertyCSo11RLMListBase -_TFC10RealmSwift13DynamicObject19optionalForPropertyfCSo11RLMPropertyCSo15RLMOptionalBase -_TToFC10RealmSwift13DynamicObject19optionalForPropertyfCSo11RLMPropertyCSo15RLMOptionalBase -_TToFC10RealmSwift13DynamicObject20valueForUndefinedKeyfSSGSqPs9AnyObject__ -_TToFC10RealmSwift13DynamicObject8setValuefTGSqPs9AnyObject__15forUndefinedKeySS_T_ -_TToZFC10RealmSwift13DynamicObject28shouldIncludeInDefaultSchemafT_Sb -_TToFC10RealmSwift13DynamicObjectcfT_S0_ -_TToFC10RealmSwift13DynamicObjectcfT5valuePs9AnyObject__S0_ -_TToFC10RealmSwift13DynamicObjectcfT5realmCSo8RLMRealm6schemaCSo15RLMObjectSchema_S0_ -_TToFC10RealmSwift13DynamicObjectcfT5valuePs9AnyObject_6schemaCSo9RLMSchema_S0_ -_TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getGenericListPropertyNamesFPs9AnyObject_CSo7NSArrayU0_FT5labelGSqSS_5valueP__GSqSS_ -_TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb -_TToFC10RealmSwift10ObjectUtilcfT_S0_ -globalinit_33_47969F13D2F39044D14973F482FBAD86_func0 -_TFVs12_ArrayBuffer19requestNativeBufferfT_GSqGVs22_ContiguousArrayBufferx__ -_TFSaCfT20_immutableCocoaArrayPs16_NSArrayCoreType__GSax_ -_TFVs12_ArrayBuffer13_asCocoaArrayfT_Ps16_NSArrayCoreType_ -_TFVs22_ContiguousArrayBuffer30withUnsafeMutableBufferPointerurfzFzGSrx_qd__qd__ -_TFFs15_arrayForceCastu0_rFGSax_GSaq__U_FGSrQ0__T_ -_TFs19_bridgeToObjectiveCurFxGSqPs9AnyObject__ -_TFVs22_ContiguousArrayBuffer13_asCocoaArrayfT_Ps16_NSArrayCoreType_ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TZFOs25_VariantDictionaryStorage24maybeGetFromCocoaStoragefTVs23_CocoaDictionaryStorage6forKeyx_GSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TZFOs25_VariantDictionaryStorage24maybeGetFromCocoaStoragefTVs23_CocoaDictionaryStorage6forKeyx_GSqq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ -_TFVs12_ArrayBufferg5countSi -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_ -_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ -_TTSg5SS_CSo15RLMOptionalBase___TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ -_TTSg5SS___TFSa16_copyToNewBufferfSiT_ -_TTSg5GVs12_ArrayBufferSS_GS_SS_s16_ArrayBufferTypes_SS_GVs17IndexingGeneratorGS_SS__GS1_GS_SS__s13GeneratorTypes_SS_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferSS_GS6_SS_s14CollectionTypes_GS1_GS6_SS__GS1_GS6_SS__S2_s_SS_SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_SS_GS6_SS_s9IndexablesGS6_SS_s12SequenceTypes_GS1_GS6_SS__GS1_GS6_SS__S2_s_SS_SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_SS__SS_SS_SS___TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5GVs22_ContiguousArrayBufferT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s16_ArrayBufferTypes_T5labelGSqSS_5valueP___GVs17IndexingGeneratorGS_T5labelGSqSS_5valueP____GS1_GS_T5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferT5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s14CollectionTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s9IndexablesGS6_T5labelGSqSS_5valueP___s12SequenceTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP____T5labelGSqSS_5valueP___T5labelGSqSS_5valueP___T5labelGSqSS_5valueP_____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5GVs22_ContiguousArrayBufferT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s16_ArrayBufferTypes_T5labelGSqSS_5valueP___GVs17IndexingGeneratorGS_T5labelGSqSS_5valueP____GS1_GS_T5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferT5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s14CollectionTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s9IndexablesGS6_T5labelGSqSS_5valueP___s12SequenceTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP____T5labelGSqSS_5valueP___T5labelGSqSS_5valueP___T5labelGSqSS_5valueP_____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray16_copyToNewBufferfSiT_ -_TTSf4n_d___TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ -_TTSf4g_d___TTSg5SSSSs8Hashables_Ps9AnyObject____TZFVs24_NativeDictionaryStorage9fromArrayfGSaTxq___GS_xq__ -_TTSf4n_d___TTSg5SS___TZFSa28_allocateBufferUninitializedfSiGVs12_ArrayBufferx_ -_TTSf4n_d___TTSg5SS___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TTSf4n_d___TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ -_TTSf4g_n___TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage26migrateDataToNativeStoragefVs23_CocoaDictionaryStorageT_ -_TTSf4g_n___TFC10RealmSwift13DynamicObject15listForPropertyfCSo11RLMPropertyCSo11RLMListBase -_TMaCSo11RLMListBase -_TMaGC10RealmSwift4ListCS_13DynamicObject_ -_TTSf4n_d___TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ -_TTSf4g_n___TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage26migrateDataToNativeStoragefVs23_CocoaDictionaryStorageT_ -_TTSf4g_n___TFC10RealmSwift13DynamicObject19optionalForPropertyfCSo11RLMPropertyCSo15RLMOptionalBase -_TMaGCs29_NativeDictionaryStorageOwnerSSGC10RealmSwift4ListCS0_13DynamicObject__ -_TMaGCs29_NativeDictionaryStorageOwnerSSCSo15RLMOptionalBase_ -_TMaCSo15RLMOptionalBase -get_field_types_Object -get_field_types_DynamicObject -get_field_types_ObjectUtil -_TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s16_ArrayBufferTypes_GVs14_IgnorePointerT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s20_PointerFunctionTypes_T5labelGSqSS_5valueP___GVs17IndexingGeneratorGS_T5labelGSqSS_5valueP____GS3_GS_T5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___GVs12_SliceBufferT5labelGSqSS_5valueP___GS5_T5labelGSqSS_5valueP___s14CollectionTypes_GS3_GS5_T5labelGSqSS_5valueP____GS3_GS5_T5labelGSqSS_5valueP____S4_s_T5labelGSqSS_5valueP___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS5_T5labelGSqSS_5valueP___GS5_T5labelGSqSS_5valueP___s9IndexablesGS5_T5labelGSqSS_5valueP___s12SequenceTypes_GS3_GS5_T5labelGSqSS_5valueP____GS3_GS5_T5labelGSqSS_5valueP____S4_s_T5labelGSqSS_5valueP___SiSiS7_s_SiSiS8_s_SiSiS9_s_Si_GS5_T5labelGSqSS_5valueP____T5labelGSqSS_5valueP___T5labelGSqSS_5valueP___T5labelGSqSS_5valueP_____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ -_TTSf4s_n_n___TTSg5SS___TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TTSf4n_n_n_n_d___TTSg5GVs12_ArrayBufferSS_GS_SS_s16_ArrayBufferTypes_GVs14_IgnorePointerSS_GS1_SS_s20_PointerFunctionTypes_SS_GVs17IndexingGeneratorGS_SS__GS3_GS_SS__s13GeneratorTypes_SS_GVs12_SliceBufferSS_GS5_SS_s14CollectionTypes_GS3_GS5_SS__GS3_GS5_SS__S4_s_SS_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS5_SS_GS5_SS_s9IndexablesGS5_SS_s12SequenceTypes_GS3_GS5_SS__GS3_GS5_SS__S4_s_SS_SiSiS7_s_SiSiS8_s_SiSiS9_s_Si_GS5_SS__SS_SS_SS___TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ -_TTSf4g_n___TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s12SequenceTypes_GVs17IndexingGeneratorGSaT5labelGSqSS_5valueP____GS0_GSaT5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___GVs10ArraySliceT5labelGSqSS_5valueP____SS___TFEsPs12SequenceType7flatMapurfzFzWx9Generator7Element_GSqqd___GSaqd___ -_TTSf4g_n___TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage26migrateDataToNativeStoragefVs23_CocoaDictionaryStorageT_ -_TTSf4g_n_n___TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E621getOptionalPropertiesFPs9AnyObject_CSo12NSDictionaryU_FTGVs10DictionarySSPS1___T5labelGSqSS_5valueP___GS3_SSPS1___ -_TPA__TTRXFo_oGSqSS_iP__oGSqSS_zoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___iGSqSS_zoPS___ -_TMaGCs28_NativeDictionaryStorageImplSSCSo15RLMOptionalBase_ -_TMaGCs28_NativeDictionaryStorageImplSSGC10RealmSwift4ListCS0_13DynamicObject__ -_TPA__TFFs15_arrayForceCastu0_rFGSax_GSaq__U_FGSrQ0__T_ -objectdestroy.9 -_TPA__TTRG0_rXFo_dGSrq___dT_zoPs9ErrorType__XFo_dGSrq___iT_zoPS___ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ -_TToZFC10RealmSwift6Object17indexedPropertiesfT_GSaSS_ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_ -L_selector_data(sharedSchema) -L_selector(sharedSchema) -L_selector_data(partialSharedSchema) -L_selector(partialSharedSchema) -L_selector_data(initWithValue:schema:) -L_selector(initWithValue:schema:) -_TMLCSo11RLMListBase -_TMLGC10RealmSwift4ListCS_13DynamicObject_ -L_selector_data(name) -L_selector(name) -_TWvdvC10RealmSwift13DynamicObjectP33_95A69397B44B27F7A8F436871D45D9E614listPropertiesGVs10DictionarySSGCS_4ListS0___ -L_selector_data(swiftIvar) -L_selector(swiftIvar) -L_selector_data(initWithRealm:schema:) -L_selector(initWithRealm:schema:) -_TMLGCs29_NativeDictionaryStorageOwnerSSGC10RealmSwift4ListCS0_13DynamicObject__ -_TMLGCs29_NativeDictionaryStorageOwnerSSCSo15RLMOptionalBase_ -_TMLCSo15RLMOptionalBase -_TWvdvC10RealmSwift13DynamicObjectP33_95A69397B44B27F7A8F436871D45D9E618optionalPropertiesGVs10DictionarySSCSo15RLMOptionalBase_ -L_selector_data(type) -L_selector(type) -L_selector_data(initWithValue:) -L_selector_data(objectUtilClass:) -L_selector_data(primaryKey) -L_selector_data(ignoredProperties) -L_selector_data(indexedProperties) -L_selector_data(objectForKeyedSubscript:) -L_selector_data(setObject:forKeyedSubscript:) -L_selector_data(isEqual:) -L_selector_data(listForProperty:) -L_selector_data(optionalForProperty:) -_CLASS_METHODS_RealmSwiftObject -_METACLASS_DATA_RealmSwiftObject -_INSTANCE_METHODS_RealmSwiftObject -_PROPERTIES_RealmSwiftObject -_DATA_RealmSwiftObject -_TMfC10RealmSwift6Object -L_selector_data(valueForUndefinedKey:) -L_selector_data(setValue:forUndefinedKey:) -L_selector_data(shouldIncludeInDefaultSchema) -L_selector_data(.cxx_destruct) -_CLASS_METHODS__TtC10RealmSwift13DynamicObject -_METACLASS_DATA__TtC10RealmSwift13DynamicObject -_INSTANCE_METHODS__TtC10RealmSwift13DynamicObject -_IVARS__TtC10RealmSwift13DynamicObject -_DATA__TtC10RealmSwift13DynamicObject -_TMfC10RealmSwift13DynamicObject -L_selector_data(swiftVersion) -L_selector_data(ignoredPropertiesForClass:) -L_selector_data(indexedPropertiesForClass:) -L_selector_data(getGenericListPropertyNames:) -L_selector_data(initializeListProperty:property:array:) -L_selector_data(initializeOptionalProperty:property:) -L_selector_data(getOptionalProperties:) -L_selector_data(requiredPropertiesForClass:) -_CLASS_METHODS_RealmSwiftObjectUtil -_METACLASS_DATA_RealmSwiftObjectUtil -_INSTANCE_METHODS_RealmSwiftObjectUtil -_DATA_RealmSwiftObjectUtil -_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E612swiftVersionfT_CSo8NSString -_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E625ignoredPropertiesForClassfPMPs9AnyObject_GSqCSo7NSArray_ -_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E625indexedPropertiesForClassfPMPs9AnyObject_GSqCSo7NSArray_ -_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getGenericListPropertyNamesfPs9AnyObject_CSo7NSArray -_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E622initializeListPropertyfTCSo13RLMObjectBase8propertyCSo11RLMProperty5arrayCSo8RLMArray_T_ -_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E626initializeOptionalPropertyfTCSo13RLMObjectBase8propertyCSo11RLMProperty_T_ -_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E621getOptionalPropertiesfPs9AnyObject_CSo12NSDictionary -_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E626requiredPropertiesForClassfPMPs9AnyObject_GSqCSo7NSArray_ -_TMfC10RealmSwift10ObjectUtil -field_type_vector_ObjectUtil -field_type_vector_DynamicObject -_TMLGVs10DictionarySSGC10RealmSwift4ListCS0_13DynamicObject__ -_TMLGVs10DictionarySSCSo15RLMOptionalBase_ -field_type_vector_Object -_TMLP_ -_TMLPs17CustomReflectable_ -_TMLGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__ -_TMLGCs17_AnyCollectionBoxT5labelGSqSS_5valueP___ -_TMLT5labelGSqSS_5valueP__ -_TMLGSqSS_ -_TMLGCs20_AnyGeneratorBoxBaseT5labelGSqSS_5valueP___ -_TMLGSqCSo8NSString_ -_TMLCSo8NSString -_TMLGSqCSo6NSDate_ -_TMLCSo6NSDate -_TMLGSqCSo6NSData_ -_TMLCSo6NSData -_TMLGSqC10RealmSwift6Object_ -_TMLGC10RealmSwift13RealmOptionalSi_ -_TMLGC10RealmSwift13RealmOptionalVs4Int8_ -_TMLGC10RealmSwift13RealmOptionalVs5Int16_ -_TMLGC10RealmSwift13RealmOptionalVs5Int32_ -_TMLGC10RealmSwift13RealmOptionalVs5Int64_ -_TMLGC10RealmSwift13RealmOptionalSf_ -_TMLGC10RealmSwift13RealmOptionalSd_ -_TMLGC10RealmSwift13RealmOptionalSb_ -_TMLPMP_ -_TMLCSo8NSObject -L_selector_data(initWithName:reason:userInfo:) -L_selector(initWithName:reason:userInfo:) -L_selector_data(raise) -L_selector(raise) -_PROTOCOL__TtPs17_NSStringCoreType_ -l_OBJC_LABEL_PROTOCOL_$__TtPs17_NSStringCoreType_ -l_OBJC_PROTOCOL_REFERENCE_$__TtPs17_NSStringCoreType_ -L_selector_data(objectForKey:) -L_selector(objectForKey:) -L_selector_data(countByEnumeratingWithState:objects:count:) -L_selector(countByEnumeratingWithState:objects:count:) -_TMLGCs28_NativeDictionaryStorageImplSSPs9AnyObject__ -L_selector_data(setProperty:) -L_selector(setProperty:) -L_selector_data(setObject:) -L_selector(setObject:) -L_selector_data(set_rlmArray:) -L_selector(set_rlmArray:) -_TMLGCs23_ContiguousArrayStorageT5labelGSqSS_5valueP___ -_TMLGCs28_NativeDictionaryStorageImplSSCSo15RLMOptionalBase_ -_TMLGCs28_NativeDictionaryStorageImplSSGC10RealmSwift4ListCS0_13DynamicObject__ -metadata.10 -_PROTOCOL__TtPs14_NSCopyingType_ -l_OBJC_LABEL_PROTOCOL_$__TtPs14_NSCopyingType_ -l_OBJC_PROTOCOL_REFERENCE_$__TtPs14_NSCopyingType_ -_PROTOCOL__TtPs22_NSFastEnumerationType_ -l_OBJC_LABEL_PROTOCOL_$__TtPs22_NSFastEnumerationType_ -l_OBJC_PROTOCOL_REFERENCE_$__TtPs22_NSFastEnumerationType_ -L_selector_data(length) -L_selector_data(characterAtIndex:) -_PROTOCOL_PROTOCOLS__TtPs17_NSStringCoreType_ -_PROTOCOL_INSTANCE_METHODS__TtPs17_NSStringCoreType_ -_PROTOCOL_METHOD_TYPES__TtPs17_NSStringCoreType_ -_PROTOCOL__TtPs15_ShadowProtocol_ -l_OBJC_LABEL_PROTOCOL_$__TtPs15_ShadowProtocol_ -l_OBJC_PROTOCOL_REFERENCE_$__TtPs15_ShadowProtocol_ -L_selector_data(copyWithZone:) -_PROTOCOL_PROTOCOLS__TtPs14_NSCopyingType_ -_PROTOCOL_INSTANCE_METHODS__TtPs14_NSCopyingType_ -_PROTOCOL_METHOD_TYPES__TtPs14_NSCopyingType_ -_PROTOCOL_PROTOCOLS__TtPs22_NSFastEnumerationType_ -_PROTOCOL_INSTANCE_METHODS__TtPs22_NSFastEnumerationType_ -_PROTOCOL_METHOD_TYPES__TtPs22_NSFastEnumerationType_ -_TMaTSuSuSuSuSu_ -Object.swift -_TMaGSpSu_ -_TMaGVs33AutoreleasingUnsafeMutablePointerGSqPs9AnyObject___ -_TFOs17_ValueOrReferenceCurfMxS_ -_TFOs12_BridgeStyleCurfMxS_ -_TFs34_conditionallyBridgeFromObjectiveCurFTPs9AnyObject_Mx_GSqx_ -_TFs31_arrayConditionalBridgeElementsu0_rFGSax_GSqGSaq___ -_TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TFs30_isBridgedVerbatimToObjectiveCurFMxSb -_TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TFSa9_getCountfT_Si -_TFSrCfT5startGSpx_5countSi_GSrx_ -_TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TFFVs22_ContiguousArrayBuffer30withUnsafeMutableBufferPointerurFzFzGSrx_qd__qd__L_6$deferfT_T_ -_TFSrg11baseAddressGSpx_ -_TTRG0_rXFo_dGSrq___dT_zoPs9ErrorType__XFo_dGSrq___iT_zoPS___ -_TFVs12_ArrayBufferCfT7nsArrayPs16_NSArrayCoreType__GS_x_ -_TFVs12_ArrayBufferg9_isNativeSb -_TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ -_TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TFCs27_ContiguousArrayStorageBaseg17staticElementTypePMP_ -_TFVs22_ContiguousArrayBuffer24storesOnlyElementsOfTypeurfMqd__Sb -_TFs25_isClassOrObjCExistentialurFMxSb -_TZFVs20ManagedBufferPointer28_sanityCheckValidBufferClassfTPMPs9AnyObject_8creatingSb_T_ -_TIZFVs20ManagedBufferPointer28_sanityCheckValidBufferClassFTPMPs9AnyObject_8creatingSb_T_A0_ -_TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ -_TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ -_TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase -_TFVs12_ArrayBufferg21deferredTypeCheckMaskSi -_TFVs12_ArrayBuffer39downcastToBufferWithDeferredTypeCheckOfurfMqd__GS_qd___ -_TFVs12_ArrayBufferCfT7storageGVs14_BridgeStorageCs27_ContiguousArrayStorageBasePs16_NSArrayCoreType___GS_x_ -_TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_ -_TTSg5GC10RealmSwift4ListCS_13DynamicObject____TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage20isUniquelyReferencedfT_Sb -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImpls6_countSi -_TTSg5GC10RealmSwift4ListCS_13DynamicObject____TFSp10initializefxT_ -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImplg21_maxLoadFactorInverseSd -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorageg11_bucketMaskSi -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage5_nextfSiSi -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage5keyAtfSix -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImplg6_countSi -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage7_bucketfxSi -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImplg9_capacitySi -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ -_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ -_TTSg5SS_CSo15RLMOptionalBase___TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ -_TTSg5SS_CSo15RLMOptionalBase___TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi -_TTSg5SS_CSo15RLMOptionalBase___TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi -_TTSg5SS_CSo15RLMOptionalBase___TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ -listForProperty -optionalForProperty -_TF10RealmSwiftau20swiftLanguageVersionSS -swiftVersion -ignoredPropertiesForClass -indexedPropertiesForClass -_TTRXFo_oGSqSS_iP__oGSqSS_zoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___iGSqSS_zoPS___ -_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TTSg5SS___TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g8capacitySi -_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TTSg5SS___TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TTSg5SS___TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ -_TTSg5GVs12_ArrayBufferSS_GS_SS_s16_ArrayBufferTypes_SS_GVs17IndexingGeneratorGS_SS__GS1_GS_SS__s13GeneratorTypes_SS_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferSS_GS6_SS_s14CollectionTypes_GS1_GS6_SS__GS1_GS6_SS__S2_s_SS_SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_SS_GS6_SS_s9IndexablesGS6_SS_s12SequenceTypes_GS1_GS6_SS__GS1_GS6_SS__S2_s_SS_SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_SS__SS_SS_SS___TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5SS___TFSp14initializeFromfTGSpx_5countSi_T_ -_TTSg5SS___TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TTSg5SS___TFVs12_ArrayBuffer10_typeCheckfGVs5RangeSi_T_ -_TTSg5SS___TFSp18moveInitializeFromfTGSpx_5countSi_T_ -_TTSg5SS___TFSp7destroyfSiT_ -_TTSg5SS___TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase -_TTSg5SS___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5SS___TTWurGVs12_ArrayBufferx_s9IndexablesFS0_g8endIndexwx5Index -_TTSg5SS___TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ -_TTSg5SS___TFVs12_ArrayBufferg10startIndexSi -_TTSg5SS___TFVs12_ArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferx__ -_TTSg5SS___TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ -_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerlu5valuex -_TTSg5SS___TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ -_TTSg5SS___TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferwx7Element__ -_TTSg5SS___TFSa37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ -_TTSg5SS___TFVs22_ContiguousArrayBufferg8capacitySi -_TTSg5SS___TFVs22_ContiguousArrayBufferg5countSi -_TTSg5SS___TFVs12_ArrayBuffer20isUniquelyReferencedfT_Sb -_TTSg5SS___TFVs12_ArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TFVs17IndexingGeneratorCfxGS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer10getElementfSix -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg9subscriptFSix -_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x -_TTSg5T5labelGSqSS_5valueP_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ -_TTSg5T5labelGSqSS_5valueP_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken -_TTSg5T5labelGSqSS_5valueP_____TFSag9subscriptFSix -_TTSg5T5labelGSqSS_5valueP_____TFSag8endIndexSi -_TTSg5T5labelGSqSS_5valueP_____TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator -_TTSg5SS___TFSa36_reserveCapacityAssumingUniqueBufferfSiT_ -_TTSg5SS___TFSa6appendfxT_ -_TTSg5SS___TFSa40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ -_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TMaGCs23_ContiguousArrayStorageT5labelGSqSS_5valueP___ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFSp18moveInitializeFromfTGSpx_5countSi_T_ -_TTSg5T5labelGSqSS_5valueP_____TFSp7destroyfSiT_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TTSg5T5labelGSqSS_5valueP_____TFSp14initializeFromfTGSpx_5countSi_T_ -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerlu5valuex -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg10startIndexSi -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__ -_TTSg5T5labelGSqSS_5valueP_____TFSp10initializefxT_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffers5countSi -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg8capacitySi -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg5countSi -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TTSg5T5labelGSqSS_5valueP_____TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__ -_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArrayCfT_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray6appendfxT_ -_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TTRXFo_oGSqSS_iP__dSbzoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___dSbzoPS___ -_TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getGenericListPropertyNamesFPs9AnyObject_CSo7NSArrayU_FT5labelGSqSS_5valueP__Sb -_TTSg5GVs20AnyForwardCollectionT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s12SequenceTypes_GVs12AnyGeneratorT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s13GeneratorTypes_T5labelGSqSS_5valueP___GVs5SliceGS_T5labelGSqSS_5valueP_______TFEsPs12SequenceType6filterfzFzWx9Generator7Element_SbGSaWxS0_S1___ -getGenericListPropertyNames -initializeListProperty -_TTSg5CSo15RLMOptionalBase___TFSp4movefT_x -_TTSg5SS___TFSp4movefT_x -_TTSg5CSo15RLMOptionalBase___TFSp7destroyfT_T_ -_TTSg5SS___TFSp7destroyfT_T_ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage5_prevfSiSi -_TTSf4g_n_n_d___TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage16nativeDeleteImplfTGVs24_NativeDictionaryStoragexq__11idealBucketSi6offsetSi_T_ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage24nativeRemoveObjectForKeyfxGSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_ -_TTSg5CSo15RLMOptionalBase___TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage20isUniquelyReferencedfT_Sb -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImpls6_countSi -_TTSg5CSo15RLMOptionalBase___TFSp10initializefxT_ -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg21_maxLoadFactorInverseSd -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorageg11_bucketMaskSi -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage5_nextfSiSi -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage5keyAtfSix -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg9_capacitySi -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader -_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg6_countSi -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage7_bucketfxSi -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ -_TTSg5SS___TFs19_bridgeToObjectiveCurFxGSqPs9AnyObject__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs10Dictionary17removeValueForKeyfxGSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage8maybeGetfxGSqq__ -_TTSg5SS___TFs32_bridgeToObjectiveCUnconditionalurFxPs9AnyObject_ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage17removeValueForKeyfxGSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs10Dictionarys9subscriptFxGSqq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs10Dictionaryg9subscriptFxGSqq__ -initializeOptionalProperty -_TZFVs6Mirror19_noSuperclassMirrorfT_GSqS__ -_TMaGSqPMP__ -_TFs19_isClassSuperMirrorFPMP_Sb -_TFEsPs11_MirrorType12_superMirrorfT_GSqPS___ -_TFFVs6MirrorcFT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_U_FT_GSqS__ -_TTRXFo_iT__iGSqVs6Mirror__XFo__oGSqS___ -_TPA__TTRXFo_iT__iGSqVs6Mirror__XFo__oGSqS___ -_TPA__TFFVs6MirrorcFT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_U_FT_GSqS__ -_TMaPMPs9AnyObject_ -_TWlGVs17IndexingGeneratorGVs5SliceVVs6Mirror14LegacyChildren__uRxs9IndexablerGS_x_s13GeneratorTypes -_TWlGVs5SliceVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_s12SequenceTypes -_TWlGVs17IndexingGeneratorVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_s13GeneratorTypes -_TWlGVs5SliceVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_S2_s -_TMaGVs17IndexingGeneratorGVs5SliceVVs6Mirror14LegacyChildren__ -_TMaGVs5SliceVVs6Mirror14LegacyChildren_ -_TMaGVs17IndexingGeneratorVVs6Mirror14LegacyChildren_ -_TMaGCs14_CollectionBoxVVs6Mirror14LegacyChildren_ -_TMaGCs21_RandomAccessIndexBoxSi_ -_TPA__TZFVs6Mirror19_noSuperclassMirrorfT_GSqS__ -_TTSf4n_n_n_d___TFVs6MirrorCfT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_ -_TTSg5SS_Ps9AnyObject____TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ -_TFZFCs28_NativeDictionaryStorageImpl6createFSiGS_xq__U_FGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8_S1_ -_TTSg5Vs29_HashedContainerStorageHeader_Vs5UInt8___TFZFCs13ManagedBuffer6createFTSi12initialValueFGCs18ManagedProtoBufferxq__x_GS_xq__U_FTPs9AnyObject_FPS1__Si_Q_ -_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi -_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi -_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ -_TMaGCs28_NativeDictionaryStorageImplSSPs9AnyObject__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageg11_bucketMaskSi -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_nextfSiSi -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5keyAtfSix -__swift_memmove_array32_4 -__swift_memcpy_array32_4 -__swift_copy_outline_pointer -_TwalVSC28_SwiftNSFastEnumerationState -_TwTkVSC28_SwiftNSFastEnumerationState -__swift_memcpy32_4 -_TwCpVSC28_SwiftNSFastEnumerationState -_TwdeVSC28_SwiftNSFastEnumerationState -_TwprVSC28_SwiftNSFastEnumerationState -_TwCPVSC28_SwiftNSFastEnumerationState -_TwXXVSC28_SwiftNSFastEnumerationState -_TMaGSqPs9AnyObject__ -_TTSg5Ps9AnyObject____TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x -_TTSg5SS___TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage20isUniquelyReferencedfT_Sb -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImpls6_countSi -_TTSg5Ps9AnyObject____TFSp10initializefxT_ -_TTSg5SS___TFSp10initializefxT_ -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg21_maxLoadFactorInverseSd -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6_countSi -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader -_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg9_capacitySi -_TMaPs17_NSStringCoreType_ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage7_bucketfxSi -_TTWSSs8HashablesFS_g9hashValueSi -_TTSf4s___TFSSg9hashValueSi -_TMaCSo8NSObject -throwRealmException -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerCfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCfT14_nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ -_TIF10RealmSwift19throwRealmExceptionFTSS8userInfoGVs10DictionarySSPs9AnyObject___T_A0_ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCft17dictionaryLiteralGSaTxq____GS_xq__ -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg9_isNativeSb -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg19firstElementAddressGSpx_ -_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffers5countSi -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBuffers5countSi -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferCfT_GS_x_ -_TTSg5TSSPs9AnyObject_____TFSaCfT19_uninitializedCountSi_GSax_ -_TTSg5TSSPs9AnyObject_____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TTSg5TSSPs9AnyObject_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TMaPMP_ -_TTSg5PMP____TFSSCurfxSS -_TTSg5PMP____TFSSCurfT26stringInterpolationSegmentx_SS -_TTWOVs6Mirror12DisplayStyles9EquatablesZFS1_oi2eefTxx_Sb -_TMaGC10RealmSwift13RealmOptionalSb_ -_TMaGC10RealmSwift13RealmOptionalSd_ -_TMaGC10RealmSwift13RealmOptionalSf_ -_TMaGC10RealmSwift13RealmOptionalVs5Int64_ -_TMaGC10RealmSwift13RealmOptionalVs5Int32_ -_TMaGC10RealmSwift13RealmOptionalVs5Int16_ -_TMaGC10RealmSwift13RealmOptionalVs4Int8_ -_TMaGC10RealmSwift13RealmOptionalSi_ -_TMaGSqC10RealmSwift6Object_ -_TMaCSo6NSData -_TMaGSqCSo6NSData_ -_TMaCSo6NSDate -_TMaGSqCSo6NSDate_ -_TMaCSo8NSString -_TMaGSqCSo8NSString_ -_TTSg5OVs6Mirror12DisplayStyleS0_s9Equatables___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb -_TTSg5CSo15RLMOptionalBase___TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionarys9subscriptFxGSqq__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__ -_TTSf4s_n___TFs9_abstractFTVs12StaticString4lineSu_T_ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCfT15minimumCapacitySi_GS_xq__ -_TMaGCs20_AnyGeneratorBoxBaseT5labelGSqSS_5valueP___ -_TTSg5T5labelGSqSS_5valueP_____TTWurGVs20AnyForwardCollectionx_s12SequenceTypesFS0_8generatefT_wx9Generator -_TMaGSqSS_ -_TMaT5labelGSqSS_5valueP__ -_TMaGCs17_AnyCollectionBoxT5labelGSqSS_5valueP___ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnercfT15minimumCapacitySi_GS_xq__ -_TMaGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerCfT15minimumCapacitySi_GS_xq__ -_TMaPs17CustomReflectable_ -_TMaP_ -_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ -_TTSg5T5labelGSqSS_5valueP_____TFVs12AnyGenerator4nextfT_GSqx_ -_TTSg5T5labelGSqSS_5valueP_____TFCs20_AnyGeneratorBoxBase4nextfT_GSqx_ -_TTSg5T5labelGSqSS_5valueP_____TFVs20AnyForwardCollection8generatefT_GVs12AnyGeneratorx_ -_TTSg5T5labelGSqSS_5valueP_____TFCs15_AnySequenceBox8generatefT_GVs12AnyGeneratorx_ -_TTSg5GVs20AnyForwardCollectionT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s12SequenceTypes_GVs12AnyGeneratorT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s13GeneratorTypes_T5labelGSqSS_5valueP___GVs5SliceGS_T5labelGSqSS_5valueP_____GVs10DictionarySSPs9AnyObject_____TFEsPs12SequenceType6reduceurfzTqd__7combineFzTqd__Wx9Generator7Element__qd___qd__ -_TTRXFo_oGVs10DictionarySSPs9AnyObject__oGSqSS_iP__oGS_SSPS0___zoPs9ErrorType__XFo_iGS_SSPS0___iT5labelGSqSS_5valueP___iGS_SSPS0___zoPS1___ -_TFVs6MirrorCfT10reflectingP__S_ -getOptionalProperties -requiredPropertiesForClass -_TMaGVs10DictionarySSCSo15RLMOptionalBase_ -_TMaGVs10DictionarySSGC10RealmSwift4ListCS0_13DynamicObject__ -_TMaC10RealmSwift10ObjectUtil -_TMaC10RealmSwift13DynamicObject -_TMaC10RealmSwift6Object -valueForUndefinedKey -_TTWVs5Int32s9EquatablesZFS0_oi2eefTxx_Sb -_TTSg5OSC15RLMPropertyTypeS_s16RawRepresentable5Realm_Vs5Int32S2_s9Equatables___TZFsoi2eeuRxs16RawRepresentablewx8RawValues9EquatablerFTxx_Sb -_TTSg5C10RealmSwift5RealmS0_s9EquatableS____TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb -indexedProperties -ignoredProperties -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs10DictionaryCfT15minimumCapacitySi_GS_xq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFCs29_NativeDictionaryStorageOwnercfT15minimumCapacitySi_GS_xq__ -_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFCs29_NativeDictionaryStorageOwnerCfT15minimumCapacitySi_GS_xq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs10DictionaryCfT15minimumCapacitySi_GS_xq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFCs29_NativeDictionaryStorageOwnercfT15minimumCapacitySi_GS_xq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFCs29_NativeDictionaryStorageOwnerCfT15minimumCapacitySi_GS_xq__ -shouldIncludeInDefaultSchema -isEqual -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage8maybeGetfxGSqq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs10Dictionarys9subscriptFxGSqq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__ -_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs10Dictionaryg9subscriptFxGSqq__ -dynamicList -linkingObjects -_TTSg5SS___TFSaCft12arrayLiteralGSax__GSax_ -_TTSg5SS___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TTSg5SS___TFVs12_ArrayBufferg9_isNativeSb -_TTSg5SS___TFVs12_ArrayBufferg19firstElementAddressGSpx_ -_TTSg5SS___TFVs22_ContiguousArrayBuffers5countSi -_TTSg5SS___TFVs12_ArrayBuffers5countSi -_TTSg5SS___TFVs12_ArrayBufferCfT_GS_x_ -_TTSg5SS___TFSaCfT19_uninitializedCountSi_GSax_ -_TTSg5SS___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -primaryKey -objectUtilClass -className.get -objectSchema.get -_TMaCSo9RLMSchema -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Object.swift -_TTSg5C10RealmSwift8Property___TFVs15ContiguousArray15reserveCapacityfSiT_ -_TTSg5GVs22_ContiguousArrayBufferC10RealmSwift8Property_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5GVs22_ContiguousArrayBufferC10RealmSwift8Property_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5C10RealmSwift8Property___TFVs15ContiguousArray16_copyToNewBufferfSiT_ -_TTSg5CSo11RLMProperty___TFVs12_ArrayBuffer19_getElementSlowPathfSiPs9AnyObject_ -get_field_types_ObjectSchema -_TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferC10RealmSwift8Property_GS_S1__s16_ArrayBufferTypes_GVs14_IgnorePointerS1__GS3_S1__s20_PointerFunctionTypes_S1__GVs17IndexingGeneratorGS_S1___GS5_GS_S1___s13GeneratorTypes_S1__GVs12_SliceBufferS1__GS7_S1__s14CollectionTypes_GS5_GS7_S1___GS5_GS7_S1___S6_s_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS7_S1__GS7_S1__s9IndexablesGS7_S1__s12SequenceTypes_GS5_GS7_S1___GS5_GS7_S1___S6_s_S1__SiSiS9_s_SiSiS10_s_SiSiS11_s_Si_GS7_S1___S1__S1__S1____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ -_TMaGCs23_ContiguousArrayStorageC10RealmSwift8Property_ -L_selector_data(properties) -L_selector(properties) -_TMLCSo11RLMProperty -L_selector_data(primaryKeyProperty) -L_selector(primaryKeyProperty) -L_selector(objectForKeyedSubscript:) -_METACLASS_DATA__TtC10RealmSwift12ObjectSchema -_IVARS__TtC10RealmSwift12ObjectSchema -_DATA__TtC10RealmSwift12ObjectSchema -_TMfC10RealmSwift12ObjectSchema -got._TMps23CustomStringConvertible -field_type_vector_ObjectSchema -_TMLGCs23_ContiguousArrayStorageC10RealmSwift8Property_ -_TTSg5C10RealmSwift8Property___TFVs15ContiguousArrayg5countSi -ObjectSchema.swift -_TTSg5Ps9AnyObject____TFVs12_ArrayBufferCfT7storageGVs14_BridgeStorageCs27_ContiguousArrayStorageBasePs16_NSArrayCoreType___GS_x_ -_TTSg5CSo11RLMProperty_Ps9AnyObject____TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___ -_TTSg5CSo11RLMProperty___TFs25_isClassOrObjCExistentialurFMxSb -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ -_TTSg5C10RealmSwift8Property___TFSp18moveInitializeFromfTGSpx_5countSi_T_ -_TTSg5C10RealmSwift8Property___TFSp7destroyfSiT_ -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TTSg5C10RealmSwift8Property___TFSp14initializeFromfTGSpx_5countSi_T_ -_TTSg5C10RealmSwift8Property___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointerlu5valuex -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBufferg10startIndexSi -_TTSg5C10RealmSwift8Property___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ -_TTSg5C10RealmSwift8Property___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__ -_TMaC10RealmSwift12ObjectSchema -_TWaC10RealmSwift12ObjectSchemas9EquatableS_ -_TWaC10RealmSwift12ObjectSchemas23CustomStringConvertibleS_ -primaryKeyProperty.get -_TTSg5CSo11RLMProperty___TFVs22_ContiguousArrayBufferg5countSi -_TTSg5C10RealmSwift8Property___TFSaCft12arrayLiteralGSax__GSax_ -_TTSg5C10RealmSwift8Property___TFVs12_ArrayBufferg9_isNativeSb -_TTSg5C10RealmSwift8Property___TFVs12_ArrayBufferg19firstElementAddressGSpx_ -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ -_TTSg5C10RealmSwift8Property___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TTSg5C10RealmSwift8Property___TFVs12_ArrayBuffers5countSi -_TTSg5C10RealmSwift8Property___TFVs12_ArrayBufferCfT_GS_x_ -_TTSg5C10RealmSwift8Property___TFSaCfT19_uninitializedCountSi_GSax_ -_TTSg5C10RealmSwift8Property___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TTSg5C10RealmSwift8Property___TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5C10RealmSwift8Property___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5C10RealmSwift8Property___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__ -_TTSg5Vs10_ArrayBody_CSo11RLMProperty___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5Vs10_ArrayBody_CSo11RLMProperty___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5CSo11RLMProperty___TFVs22_ContiguousArrayBuffer10getElementfSix -_TTSg5CSo11RLMProperty___TFVs22_ContiguousArrayBufferg9subscriptFSix -_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ -_TTSg5Vs10_ArrayBody_CSo11RLMProperty___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_CSo11RLMProperty___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_CSo11RLMProperty___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5CSo11RLMProperty___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -_TTSg5CSo11RLMProperty___TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ -_TTSg5C10RealmSwift8Property___TFSp10initializefxT_ -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBuffers5countSi -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBufferg8capacitySi -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBufferg5countSi -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5CSo11RLMProperty___TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5C10RealmSwift8Property___TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TTSg5CSo11RLMProperty___TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ -_TTSg5CSo11RLMProperty___TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken -_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg20_isNativeTypeCheckedSb -_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg32arrayPropertyIsNativeTypeCheckedSb -_TTSg5CSo11RLMProperty___TFSa29_hoistableIsNativeTypeCheckedfT_Sb -_TTSg5Vs10_ArrayBody_C10RealmSwift8Property___TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ -_TTSg5C10RealmSwift8Property___TFVs15ContiguousArrayCfT_GS_x_ -_TTSg5C10RealmSwift8Property___TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TTWSis18_SignedIntegerTypesFS_8toIntMaxfT_Vs5Int64 -_TTSg5CSo11RLMProperty___TTWurGSax_s14CollectionTypesFS_g5countWx5Index8Distance_ -_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg9_isNativeSb -_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg5countSi -_TTSg5CSo11RLMProperty___TFSa9_getCountfT_Si -_TMaCSo11RLMProperty -_TTWSis14_IncrementablesFS_9successorfT_x -_TTSg5C10RealmSwift8Property___TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ -_TTSg5C10RealmSwift8Property___TFVs15ContiguousArray6appendfxT_ -_TTSg5C10RealmSwift8Property___TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TTRXFo_oCSo11RLMProperty_oC10RealmSwift8PropertyzoPs9ErrorType__XFo_iS__iS1_zoPS2___ -_TFFC10RealmSwift12ObjectSchemag10propertiesGSaCS_8Property_U_FCSo11RLMPropertyS1_ -_TTSg5CSo11RLMProperty___TFSag9subscriptFSix -_TTSg5CSo11RLMProperty___TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x -_TTWSis18_SignedIntegerTypesFS_CfVs5Int64x -_TTSg5GSaCSo11RLMProperty_GSaS__s14CollectionTypes_GVs17IndexingGeneratorGSaS___GS1_GSaS___s13GeneratorTypes_S__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS6_S__s9IndexablesGS6_S__s12SequenceTypes_GS1_GS6_S___GS1_GS6_S___S2_s_S__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_S___S__S__C10RealmSwift8Property___TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___ -_TTSg5C10RealmSwift8Property___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ -_TTSg5CSo11RLMProperty___TFSag5countSi -_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -properties.get -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/ObjectSchema.swift -_TF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24realmOptionalToAnyObjectuRxS_17RealmOptionalTyperFGSqx_GSqPs9AnyObject__ -_TF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24anyObjectToRealmOptionaluRxS_17RealmOptionalTyperFGSqPs9AnyObject__GSqx_ -_TFF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24anyObjectToRealmOptionaluRxS_17RealmOptionalTyperFGSqPs9AnyObject__GSqx_U_FSiVs4Int8 -_TFF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24anyObjectToRealmOptionaluRxS_17RealmOptionalTyperFGSqPs9AnyObject__GSqx_U0_FSiVs5Int16 -_TFF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24anyObjectToRealmOptionaluRxS_17RealmOptionalTyperFGSqPs9AnyObject__GSqx_U1_FSiVs5Int32 -get_field_types_RealmOptional -create_generic_metadata_RealmOptional -_TPA__TTRGRx10RealmSwift17RealmOptionalTyperXFo_dSi_dVs5Int32zoPs9ErrorType__XFo_iSi_iS1_zoPS2___ -_TPA__TTRGRx10RealmSwift17RealmOptionalTyperXFo_dSi_dVs5Int16zoPs9ErrorType__XFo_iSi_iS1_zoPS2___ -_TPA__TTRGRx10RealmSwift17RealmOptionalTyperXFo_dSi_dVs4Int8zoPs9ErrorType__XFo_iSi_iS1_zoPS2___ -L_selector_data(underlyingValue) -L_selector(underlyingValue) -L_selector_data(setUnderlyingValue:) -L_selector(setUnderlyingValue:) -got._TMSi -got._TMVs4Int8 -got._TMVs5Int16 -got._TMVs5Int32 -got._TMVs5Int64 -got._TMSf -got._TMSd -got._TMSb -L_selector_data(initWithLongLong:) -L_selector(initWithLongLong:) -L_selector_data(initWithLong:) -L_selector(initWithLong:) -L_selector_data(longLongValue) -L_selector(longLongValue) -L_selector_data(longValue) -L_selector(longValue) -_TTRGRx10RealmSwift17RealmOptionalTyperXFo_dSi_dVs5Int32zoPs9ErrorType__XFo_iSi_iS1_zoPS2___ -_TTRGRx10RealmSwift17RealmOptionalTyperXFo_dSi_dVs5Int16zoPs9ErrorType__XFo_iSi_iS1_zoPS2___ -_TTRGRx10RealmSwift17RealmOptionalTyperXFo_dSi_dVs4Int8zoPs9ErrorType__XFo_iSi_iS1_zoPS2___ -_TTSg5Si_Vs5Int32___TFSq3mapurfzFzxqd__GSqqd___ -_TTSg5Si_Vs5Int16___TFSq3mapurfzFzxqd__GSqqd___ -_TTSg5Si_Vs4Int8___TFSq3mapurfzFzxqd__GSqqd___ -anyObjectToRealmOptional -realmOptionalToAnyObject -_TWaSb10RealmSwift17RealmOptionalTypeS_ -_TWaSd10RealmSwift17RealmOptionalTypeS_ -_TWaSf10RealmSwift17RealmOptionalTypeS_ -_TWaVs5Int6410RealmSwift17RealmOptionalTypeS0_ -_TWaVs5Int3210RealmSwift17RealmOptionalTypeS0_ -_TWaVs5Int1610RealmSwift17RealmOptionalTypeS0_ -_TWaVs4Int810RealmSwift17RealmOptionalTypeS0_ -_TWaSi10RealmSwift17RealmOptionalTypeS_ -value.set -value.get -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Optional.swift -get_field_types_Property -L_selector_data(indexed) -L_selector(indexed) -L_selector_data(optional) -L_selector(optional) -_METACLASS_DATA__TtC10RealmSwift8Property -_IVARS__TtC10RealmSwift8Property -_DATA__TtC10RealmSwift8Property -_TMfC10RealmSwift8Property -field_type_vector_Property -Property.swift -_TMaC10RealmSwift8Property -_TWaC10RealmSwift8Propertys9EquatableS_ -_TWaC10RealmSwift8Propertys23CustomStringConvertibleS_ -objectClassName.get -optional.get -indexed.get -type.get -name.get -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Property.swift -_TTRXFo__dT__XFdCb__dT__ -_TTRXFo_oSSoCSo8RLMRealm_dT__XFdCb_dCSo8NSStringdS__dT__ -_TFF10RealmSwift41rlmNotificationBlockFromNotificationBlockFFT12notificationOS_12Notification5realmCS_5Realm_T_FTSSCSo8RLMRealm_T_U_FTSSS2__T_ -_TTSg5SS___TFCs23_ContiguousArrayStoraged -_TPA__TFF10RealmSwift41rlmNotificationBlockFromNotificationBlockFFT12notificationOS_12Notification5realmCS_5Realm_T_FTSSCSo8RLMRealm_T_U_FTSSS2__T_ -get_field_types_Realm -_TwxsO10RealmSwift12Notification -_TwxgO10RealmSwift12Notification -_TwugO10RealmSwift12Notification -_TwupO10RealmSwift12Notification -_TwuiO10RealmSwift12Notification -get_field_types_Notification -objectdestroy.13 -objectdestroy.16 -objectdestroy.19 -objectdestroy.22 -objectdestroy.28 -objectdestroy.31 -objectdestroy.34 -objectdestroy.37 -objectdestroy.40 -objectdestroy.43 -objectdestroy.46 -objectdestroy.52 -objectdestroy.55 -objectdestroy.58 -objectdestroy.61 -objectdestroy.64 -objectdestroy.67 -objectdestroy.70 -objectdestroy.79 -block_destroy_helper.26 -block_destroy_helper.50 -block_destroy_helper.74 -block_destroy_helper.77 -block_destroy_helper.82 -block_copy_helper.25 -block_copy_helper.49 -block_copy_helper.73 -block_copy_helper.76 -block_copy_helper.81 -_TPA__TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__.30 -_TPA__TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__.54 -_TPA__TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__.15 -_TPA__TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_.18 -_TPA__TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFo_iTS_S0___iT__.21 -_TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__.24 -_TPA__TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_.33 -_TPA__TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__.36 -_TPA__TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__.39 -_TPA__TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_.42 -_TPA__TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFo_iTS_S0___iT__.45 -_TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__.48 -_TPA__TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_.57 -_TPA__TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__.60 -_TPA__TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__.63 -_TPA__TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_.66 -_TPA__TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFo_iTS_S0___iT__.69 -_TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__.72 -L_selector_data(isReadOnly) -L_selector(isReadOnly) -L_selector_data(schema) -L_selector(schema) -L_selector_data(configuration) -L_selector(configuration) -L_selector_data(isEmpty) -L_selector(isEmpty) -L_selector_data(realmWithConfiguration:error:) -L_selector(realmWithConfiguration:error:) -metadata.14 -metadata.17 -metadata.20 -metadata.23 -block_descriptor.27 -metadata.29 -metadata.32 -metadata.35 -metadata.38 -metadata.41 -metadata.44 -metadata.47 -block_descriptor.51 -metadata.53 -metadata.56 -metadata.59 -metadata.62 -metadata.65 -metadata.68 -metadata.71 -block_descriptor.75 -block_descriptor.78 -L_selector_data(transactionWithBlock:error:) -L_selector(transactionWithBlock:error:) -L_selector_data(beginWriteTransaction) -L_selector(beginWriteTransaction) -L_selector_data(commitWriteTransaction:) -L_selector(commitWriteTransaction:) -L_selector_data(cancelWriteTransaction) -L_selector(cancelWriteTransaction) -L_selector_data(inWriteTransaction) -L_selector(inWriteTransaction) -L_selector_data(schemaForClassName:) -L_selector(schemaForClassName:) -L_selector_data(deleteObjects:) -L_selector(deleteObjects:) -_TMLGC10RealmSwift7ResultsCS_13DynamicObject_ -metadata.80 -block_descriptor.83 -L_selector_data(removeNotification:) -L_selector(removeNotification:) -L_selector_data(autorefresh) -L_selector(autorefresh) -L_selector_data(setAutorefresh:) -L_selector(setAutorefresh:) -L_selector_data(refresh) -L_selector(refresh) -L_selector_data(invalidate) -L_selector(invalidate) -L_selector_data(writeCopyToPath:error:) -L_selector(writeCopyToPath:error:) -L_selector_data(writeCopyToPath:encryptionKey:error:) -L_selector(writeCopyToPath:encryptionKey:error:) -_METACLASS_DATA__TtC10RealmSwift5Realm -_IVARS__TtC10RealmSwift5Realm -_DATA__TtC10RealmSwift5Realm -_TMfC10RealmSwift5Realm -_TMfO10RealmSwift12Notification -field_type_vector_Notification -field_type_vector_Realm -_TMLCSo8RLMRealm -_TTSg5Vs18_StringBufferIVars_Vs6UInt16___TFVs11_HeapBufferg6_valueGSpx_ -_TTSf4s_n_n___TFVs13_StringBuffer4growfTGVs5RangeGSPVs7RawByte__12newUsedCountSi_Sb -_TFVs13_StringBufferg8capacitySi -_TMaGCs18_HeapBufferStorageVs18_StringBufferIVarsVs6UInt16_ -_TTSf4n_n_n_d___TFVs13_StringBufferCfT8capacitySi11initialSizeSi12elementWidthSi_S_ -_TFFVs11_StringCoreg11cocoaBufferGSqPs9AnyObject__U_FPS0__PS0__ -_TFVs11_StringCore12_copyInPlacefT7newSizeSi11newCapacitySi15minElementWidthSi_T_ -_TFFVs11_StringCore20representableAsASCIIFT_SbU_FVs6UInt16Sb -_TTSf1cl57_TTRXFo_dVs6UInt16_dSbzoPs9ErrorType__XFo_iS__dSbzoPS0___XFo_dVs6UInt16_dSbzoPs9ErrorType___n___TTSg5GSRVs6UInt16_GSRS__s12SequenceTypes_GVs28UnsafeBufferPointerGeneratorS__GS1_S__s13GeneratorTypes_S__GVs5SliceGSRS______TFEsPs12SequenceType8containsfzFzWx9Generator7Element_SbSb -_TFVs11_StringCore14_claimCapacityfTSi15minElementWidthSi_TSiVs14COpaquePointer_ -_TTSf4gs_n___TFVs11_StringCore6appendfS_T_ -_TTSg5SS___TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_ -_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffer10getElementfSix -_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TMaTSSPs9AnyObject__ -_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x -_TTSg5TSSPs9AnyObject_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x -_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ -_TTSg5TSSPs9AnyObject_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken -_TTSg5GSaTSSPs9AnyObject___GSaTSSPS____s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSPS______TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ -_TTSg5TSSPs9AnyObject_____TFSag8endIndexSi -_TTSg5TSSPs9AnyObject_____TFSag10startIndexSi -_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg5countSi -_TTSg5TSSPs9AnyObject_____TFSa9_getCountfT_Si -_TTSg5TSSPs9AnyObject_____TFSag5countSi -_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBufferg5countSi -_TTSg5TSSPs9AnyObject_____TFSag9subscriptFSix -_TTSg5GSaTSSPs9AnyObject___GSaTSSPS____s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceTSSPS____GS4_TSSPS____s9IndexablesGS4_TSSPS____s12SequenceTypes_GVs17IndexingGeneratorGS4_TSSPS_____GS7_GS4_TSSPS_____s13GeneratorTypes_TSSPS____SiSiS1_s_SiSiS2_s_SiSiS3_s_Si_GS4_TSSPS_____TSSPS____TSSPS______TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ -_TMaO10RealmSwift12Notification -_TMaC10RealmSwift5Realm -_TWaO10RealmSwift12Notifications16RawRepresentableS_ -_TWaO10RealmSwift12Notifications8HashableS_ -_TWaO10RealmSwift12Notifications9EquatableS_ -_TWaC10RealmSwift5Realms9EquatableS_ -add -writeCopyToPath -invalidate -refresh -autorefresh.set -autorefresh.get -removeNotification -rlmNotificationBlockFromNotificationBlock -_TMaGSqC10RealmSwift13DynamicObject_ -dynamicObjectForPrimaryKey -_TMaGSQPs9AnyObject__ -objectForPrimaryKey -_TMaGC10RealmSwift7ResultsCS_13DynamicObject_ -dynamicObjects -objects -deleteAll -dynamicCreate -_TMaCSo13RLMObjectBase -_TMaGSQCSo13RLMObjectBase_ -_TTSg5C10RealmSwift8PropertyS0_s9EquatableS____TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb -inWriteTransaction.get -cancelWrite -commitWrite -beginWrite -write -configuration.get -schema.get -readOnly.get -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Realm.swift -_TFC10RealmSwift12RLMGeneratorcfT10collectionPSo13RLMCollection__GS0_x_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5realmGSqCS_5Realm_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5countSi -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg11descriptionSS -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffxGSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffCSo11NSPredicateGSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOfftSSGSaPs9AnyObject___GSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6filterftSSGSaPs9AnyObject___GCS_7Resultsx_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6filterfCSo11NSPredicateGCS_7Resultsx_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6sortedfTSS9ascendingSb_GCS_7Resultsx_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrfqd__GCS_7Resultsx_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase3minuRd__S_10MinMaxTyperfSSGSqqd___ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase3maxuRd__S_10MinMaxTyperfSSGSqqd___ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase3sumuRd__S_11AddableTyperfSSqd__ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7averageuRd__S_11AddableTyperfSSGSqqd___ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg9subscriptFSix -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase8generatefT_GCS_12RLMGeneratorx_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg10startIndexSi -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg8endIndexSi -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase11valueForKeyfSSGSqPs9AnyObject__ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase15valueForKeyPathfSSGSqPs9AnyObject__ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase8setValuefTGSqPs9AnyObject__6forKeySS_T_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase21_addNotificationBlockfFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationToken -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasecfT_GS0_x_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseD -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBased -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectioncfT4basex_GS0_x_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectionCfT4basex_GS0_x_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong5realmGSqCS_5Realm_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong5countSi -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong11descriptionSS -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7indexOffwx7ElementGSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7indexOffCSo11NSPredicateGSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7indexOfftSSGSaPs9AnyObject___GSqSi_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6filterftSSGSaPs9AnyObject___GCS_7Resultswx7Element_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6filterfCSo11NSPredicateGCS_7Resultswx7Element_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6sortedfTSS9ascendingSb_GCS_7Resultswx7Element_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrfqd__GCS_7Resultswx7Element_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection3minuRd__S_10MinMaxTyperfSSGSqqd___ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection3maxuRd__S_10MinMaxTyperfSSGSqqd___ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection3sumuRd__S_11AddableTyperfSSqd__ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7averageuRd__S_11AddableTyperfSSGSqqd___ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong9subscriptFSiwx7Element -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection8generatefT_GCS_12RLMGeneratorwx7Element_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong10startIndexSi -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong8endIndexSi -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection11valueForKeyfSSGSqPs9AnyObject__ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection15valueForKeyPathfSSGSqPs9AnyObject__ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection8setValuefTGSqPs9AnyObject__6forKeySS_T_ -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection21_addNotificationBlockfFTGSqGCS_18AnyRealmCollectionwx7Element__GSqCSo7NSError__T_CSo20RLMNotificationToken -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectionD -_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiond -_TWtuRxC10RealmSwift6ObjectrGCS_12RLMGeneratorx_s13GeneratorTypeS_7Element -_TWIuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_ -_TWIuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_ -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_11SubSequence -_TWIuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_ -_TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_11SubSequencePs9Indexable_ -_TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_11SubSequencePs12SequenceType_ -_TWIuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_ -_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_9Generator -_TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_9GeneratorPs13GeneratorType_ -_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_11SubSequence -get_field_types_RLMGenerator -get_field_types__AnyRealmCollectionBase -create_generic_metadata__AnyRealmCollectionBase -get_field_types__AnyRealmCollection -create_generic_metadata__AnyRealmCollection -get_field_types_AnyRealmCollection -create_generic_metadata_AnyRealmCollection -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_9Generator -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_9Generator -_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_9Generator -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_7Element -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s9IndexableS_8_Element -_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_7Element -_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s9IndexableS_8_Element -_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_11SubSequence -_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_11SubSequence -_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_11SubSequencePs9Indexable_ -_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_11SubSequencePs12SequenceType_ -_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_9GeneratorPs13GeneratorType_ -_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_9GeneratorPs13GeneratorType_ -_TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_9GeneratorPs13GeneratorType_ -create_generic_metadata_RLMGenerator -_TWGuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_ -_TWvdvC10RealmSwift12RLMGeneratorP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E13generatorBaseC10Foundation15NSFastGenerator -_IVARS__TtC10RealmSwift12RLMGenerator -_TMnC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5realmGSqCS_5Realm_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5countSi -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg11descriptionSS -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffxGSqSi_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffCSo11NSPredicateGSqSi_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOfftSSGSaPs9AnyObject___GSqSi_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6filterftSSGSaPs9AnyObject___GCS_7Resultsx_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6filterfCSo11NSPredicateGCS_7Resultsx_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6sortedfTSS9ascendingSb_GCS_7Resultsx_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrfqd__GCS_7Resultsx_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase3minuRd__S_10MinMaxTyperfSSGSqqd___ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase3maxuRd__S_10MinMaxTyperfSSGSqqd___ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase3sumuRd__S_11AddableTyperfSSqd__ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7averageuRd__S_11AddableTyperfSSGSqqd___ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg9subscriptFSix -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase8generatefT_GCS_12RLMGeneratorx_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg10startIndexSi -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg8endIndexSi -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase11valueForKeyfSSGSqPs9AnyObject__ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase15valueForKeyPathfSSGSqPs9AnyObject__ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase8setValuefTGSqPs9AnyObject__6forKeySS_T_ -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase21_addNotificationBlockfFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationToken -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseCfT_GS0_x_ -_TMPC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase -_TMnC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection -_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectionCfT4basex_GS0_x_ -_IVARS__TtC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection -_TMPC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection -_TWvdvC10RealmSwift18AnyRealmCollectionP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E4baseGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_ -_IVARS__TtC10RealmSwift18AnyRealmCollection -got._TMps13GeneratorType -RealmCollectionType.swift -_TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s9IndexableS_ -_TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s23CustomStringConvertibleS_ -_TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s9IndexableS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s23CustomStringConvertibleS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_12RLMGeneratorx_s13GeneratorTypeS_ -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmCollectionType.swift -_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArray15reserveCapacityfSiT_ -_TTSg5GVs22_ContiguousArrayBufferMC10RealmSwift6Object_GS_MS1__s16_ArrayBufferTypes_MS1__GVs17IndexingGeneratorGS_MS1___GS3_GS_MS1___s13GeneratorTypes_MS1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferMS1__GS8_MS1__s14CollectionTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1__GS8_MS1__s9IndexablesGS8_MS1__s12SequenceTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1___MS1__MS1__MS1____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5GVs22_ContiguousArrayBufferMC10RealmSwift6Object_GS_MS1__s16_ArrayBufferTypes_MS1__GVs17IndexingGeneratorGS_MS1___GS3_GS_MS1___s13GeneratorTypes_MS1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferMS1__GS8_MS1__s14CollectionTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1__GS8_MS1__s9IndexablesGS8_MS1__s12SequenceTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1___MS1__MS1__MS1____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArray16_copyToNewBufferfSiT_ -_TTSf4g___TTSg5MC10RealmSwift6Object_PMPs9AnyObject____TFs31_arrayConditionalBridgeElementsu0_rFGSax_GSqGSaq___ -_TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferMC10RealmSwift6Object_GS_MS1__s16_ArrayBufferTypes_GVs14_IgnorePointerMS1__GS3_MS1__s20_PointerFunctionTypes_MS1__GVs17IndexingGeneratorGS_MS1___GS5_GS_MS1___s13GeneratorTypes_MS1__GVs12_SliceBufferMS1__GS7_MS1__s14CollectionTypes_GS5_GS7_MS1___GS5_GS7_MS1___S6_s_MS1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS7_MS1__GS7_MS1__s9IndexablesGS7_MS1__s12SequenceTypes_GS5_GS7_MS1___GS5_GS7_MS1___S6_s_MS1__SiSiS9_s_SiSiS10_s_SiSiS11_s_Si_GS7_MS1___MS1__MS1__MS1____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ -_TTSf4g___TFFVC10RealmSwift5Realm13Configurationg11objectTypesGSqGSaMCS_6Object__U_FCSo9RLMSchemaGSaMS2__ -_TwXXVC10RealmSwift5Realm13Configuration -_TwCPVC10RealmSwift5Realm13Configuration -_TwprVC10RealmSwift5Realm13Configuration -_TwdeVC10RealmSwift5Realm13Configuration -_TwxxVC10RealmSwift5Realm13Configuration -_TwCpVC10RealmSwift5Realm13Configuration -_TwcpVC10RealmSwift5Realm13Configuration -_TwcaVC10RealmSwift5Realm13Configuration -_TwTkVC10RealmSwift5Realm13Configuration -__swift_memcpy61_8 -_TwtaVC10RealmSwift5Realm13Configuration -_TwalVC10RealmSwift5Realm13Configuration -_TwXxVC10RealmSwift5Realm13Configuration -_TwCcVC10RealmSwift5Realm13Configuration -__swift_memmove_array64_8 -get_field_types_Configuration -_TMaGCs23_ContiguousArrayStoragePMPs9AnyObject__ -_TPA__TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__.30 -_TPA__TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_.33 -_TPA__TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFo_iTS_S0___iT__.36 -_TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__.39 -block_copy_helper.40 -block_destroy_helper.41 -_TMLPMPs9AnyObject_ -L_selector_data(schemaWithObjectClasses:) -L_selector(schemaWithObjectClasses:) -L_selector_data(setDefaultConfiguration:) -L_selector(setDefaultConfiguration:) -_TMfVC10RealmSwift5Realm13Configuration -field_type_vector_Configuration -_TMLGSqFT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T__ -_TMLFT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T_ -_TMLT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_ -_TMLGSqCSo9RLMSchema_ -_TMLCSo9RLMSchema -_TMLMC10RealmSwift6Object -L_selector_data(objectClass) -L_selector(objectClass) -_TMLGCs23_ContiguousArrayStorageMC10RealmSwift6Object_ -_TMLGCs23_ContiguousArrayStoragePMPs9AnyObject__ -block_descriptor.42 -RealmConfiguration.swift -_TTSg5PMPs9AnyObject____TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5PMPs9AnyObject____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5PMPs9AnyObject____TFVs22_ContiguousArrayBuffers5countSi -_TTSg5PMPs9AnyObject____TFSp10initializefxT_ -_TTSg5PMPs9AnyObject____TZFsoi2eeurFTGSqx_Vs26_OptionalNilComparisonType_Sb -_TTSg5PMPs9AnyObject____TFs34_conditionallyBridgeFromObjectiveCurFTPs9AnyObject_Mx_GSqx_ -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBuffer10getElementfSix -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x -_TTSg5MC10RealmSwift6Object___TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBufferg20_isNativeTypeCheckedSb -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ -_TTSg5MC10RealmSwift6Object___TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken -_TTSg5Vs10_ArrayBody_PMPs9AnyObject____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5GSaMC10RealmSwift6Object_GSaMS0__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_MS0____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ -_TTSg5GSaMC10RealmSwift6Object_GSaMS0__s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceMS0__GS5_MS0__s9IndexablesGS5_MS0__s12SequenceTypes_GVs17IndexingGeneratorGS5_MS0___GS8_GS5_MS0___s13GeneratorTypes_MS0__SiSiS2_s_SiSiS3_s_SiSiS4_s_Si_GS5_MS0___MS0__MS0____TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ -_TTSg5MC10RealmSwift6Object___TFSag8endIndexSi -_TTSg5Vs10_ArrayBody_PMPs9AnyObject____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5PMPs9AnyObject____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5Vs10_ArrayBody_PMPs9AnyObject____TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBufferg5countSi -_TTSg5MC10RealmSwift6Object___TFSa9_getCountfT_Si -_TTSg5MC10RealmSwift6Object___TFSag5countSi -_TTSg5MC10RealmSwift6Object___TFSag9subscriptFSix -_TTSg5Vs10_ArrayBody_PMPs9AnyObject____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5Vs10_ArrayBody_PMPs9AnyObject____TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TTSg5Vs10_ArrayBody_PMPs9AnyObject____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TTSg5Vs10_ArrayBody_PMPs9AnyObject____TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TTSg5PMPs9AnyObject____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ -_TTSg5Vs10_ArrayBody_PMPs9AnyObject____TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5PMPs9AnyObject____TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArrayg5countSi -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TMaGCs23_ContiguousArrayStorageMC10RealmSwift6Object_ -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ -_TTSg5MC10RealmSwift6Object___TFSp18moveInitializeFromfTGSpx_5countSi_T_ -_TTSg5MC10RealmSwift6Object___TFSp7destroyfSiT_ -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TTSg5MC10RealmSwift6Object___TFSp14initializeFromfTGSpx_5countSi_T_ -_TTSg5MC10RealmSwift6Object___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointerlu5valuex -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBufferg10startIndexSi -_TTSg5MC10RealmSwift6Object___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ -_TTSg5MC10RealmSwift6Object___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__ -_TTSg5MC10RealmSwift6Object___TFSaCft12arrayLiteralGSax__GSax_ -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBufferg9_isNativeSb -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBufferg19firstElementAddressGSpx_ -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBuffers5countSi -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBufferCfT_GS_x_ -_TTSg5MC10RealmSwift6Object___TFSaCfT19_uninitializedCountSi_GSax_ -_TTSg5MC10RealmSwift6Object___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TTSg5MC10RealmSwift6Object___TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5MC10RealmSwift6Object___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5MC10RealmSwift6Object___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__ -_TTSg5CSo15RLMObjectSchema___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ -_TTSg5MC10RealmSwift6Object___TFSp10initializefxT_ -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBuffers5countSi -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBufferg8capacitySi -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBufferg5countSi -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TMaMC10RealmSwift6Object -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ -_TTSg5CSo15RLMObjectSchema___TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken -_TTSg5Vs10_ArrayBody_MC10RealmSwift6Object___TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ -_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArrayCfT_GS_x_ -_TTSg5MC10RealmSwift6Object___TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TTSg5CSo15RLMObjectSchema___TTWurGSax_s14CollectionTypesFS_g5countWx5Index8Distance_ -_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ -_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArray6appendfxT_ -_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TTRXFo_oCSo15RLMObjectSchema_dXMTC10RealmSwift6ObjectzoPs9ErrorType__XFo_iS__iXMTS1_zoPS2___ -_TFFFVC10RealmSwift5Realm13Configurationg11objectTypesGSqGSaMCS_6Object__U_FCSo9RLMSchemaGSaMS2__U_FCSo15RLMObjectSchemaMS2_ -_TTSg5GSaCSo15RLMObjectSchema_GSaS__s14CollectionTypes_GVs17IndexingGeneratorGSaS___GS1_GSaS___s13GeneratorTypes_S__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS6_S__s9IndexablesGS6_S__s12SequenceTypes_GS1_GS6_S___GS1_GS6_S___S2_s_S__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_S___S__S__MC10RealmSwift6Object___TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___ -_TTSg5MC10RealmSwift6Object___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -_TTSg5CSo15RLMObjectSchema___TFSag5countSi -_TTSg5VSC26NSRegularExpressionOptions___TFSag8endIndexSi -_TTSg5VSC26NSRegularExpressionOptions___TFSag10startIndexSi -_TTSg5VSC26NSRegularExpressionOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator -_TTSg5GSaVSC26NSRegularExpressionOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ -_TTSg5VSC26NSRegularExpressionOptions___TFSag9subscriptFSix -_TTSg5VSC17NSMatchingOptions___TFSag8endIndexSi -_TTSg5VSC17NSMatchingOptions___TFSag10startIndexSi -_TTSg5VSC17NSMatchingOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator -_TTSg5GSaVSC17NSMatchingOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ -_TTSg5VSC17NSMatchingOptions___TFSag9subscriptFSix -_TTWSus21BitwiseOperationsTypesZFS_oi1ofTxx_x -_TMaGSqCSo9RLMSchema_ -_TMaT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_ -_TMaFT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T_ -_TMaGSqFT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T__ -_TMaVC10RealmSwift5Realm13Configuration -_TWaVC10RealmSwift5Realm13Configurations23CustomStringConvertibleS_ -defaultConfiguration.set -migrationBlock.materialize -migrationBlock.set -migrationBlock.get -schemaVersion.materialize -schemaVersion.set -schemaVersion.get -readOnly.materialize -readOnly.set -encryptionKey.materialize -encryptionKey.set -encryptionKey.get -_TTRXFo_oCSo9RLMSchema_oGSaMC10RealmSwift6Object_zoPs9ErrorType__XFo_iS__iGSaMS1__zoPS2___ -_TTSg5CSo9RLMSchema_GSaMC10RealmSwift6Object____TFSq3mapurfzFzxqd__GSqqd___ -objectTypes.get -objectTypes.set -_TTSg5MC10RealmSwift6Object_PMPs9AnyObject____TFs15_arrayForceCastu0_rFGSax_GSaq__ -_TFFVC10RealmSwift5Realm13Configurations11objectTypesGSqGSaMCS_6Object__U_FGSaMS2__CSo9RLMSchema -_TTSg5GSaMC10RealmSwift6Object__CSo9RLMSchema___TFSq3mapurfzFzxqd__GSqqd___ -_TTRXFo_oGSaMC10RealmSwift6Object__oCSo9RLMSchemazoPs9ErrorType__XFo_iGSaMS0___iS1_zoPS2___ -_TTSg5GSaPMPs9AnyObject_____TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb -inMemoryIdentifier.set -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmConfiguration.swift -_TToFC10RealmSwift11ResultsBaseg10rlmResultsCSo10RLMResults -_TToFC10RealmSwift11ResultsBaseg11descriptionSS -_TToFC10RealmSwift11ResultsBase27countByEnumeratingWithStatefTGSpVSC22NSFastEnumerationState_7objectsGVs33AutoreleasingUnsafeMutablePointerGSqPs9AnyObject___5countSi_Si -_TToFC10RealmSwift11ResultsBasecfT_S0_ -_TToFC10RealmSwift7Resultsg5countSi -_TFC10RealmSwift7ResultscfCSo10RLMResultsGS0_x_ -_TToFC10RealmSwift7ResultscfCSo10RLMResultsGS0_x_ -_TToFC10RealmSwift7Results11valueForKeyfSSGSqPs9AnyObject__ -_TToFC10RealmSwift7Results15valueForKeyPathfSSGSqPs9AnyObject__ -_TToFC10RealmSwift7Results8setValuefTGSqPs9AnyObject__6forKeySS_T_ -_TFFC10RealmSwift7Results6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrFqd__GS0_x_U_FS4_Ps9AnyObject_ -_TFFC10RealmSwift7Results20addNotificationBlockFFTGSqGS0_x__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS1___T_ -_TTRXFo_oGSqCSo10RLMResults_oGSqCSo7NSError__dT__XFdCb_dGSqS__dGSqS0___dT__ -_TFFC10RealmSwift7Results21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS2___T_ -_TPA__TFFC10RealmSwift7Results20addNotificationBlockFFTGSqGS0_x__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS1___T_ -_TPA__TFFC10RealmSwift7Results21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS2___T_ -_TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_7Element -_TWIuRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_ -_TWTuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_11SubSequencePs9Indexable_ -_TWTuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_11SubSequencePs12SequenceType_ -_TWIuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_ -_TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s12SequenceTypeS_9Generator -_TWTuRxC10RealmSwift6ObjectrGCS_7Resultsx_s12SequenceTypeS_9GeneratorPs13GeneratorType_ -_TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s12SequenceTypeS_11SubSequence -get_field_types_ResultsBase -get_field_types_Results -create_generic_metadata_Results -_TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_9Generator -_TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s9IndexableS_8_Element -block_destroy_helper.6 -_TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_11SubSequence -block_copy_helper.5 -_TWTuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_9GeneratorPs13GeneratorType_ -L_selector_data(minOfProperty:) -L_selector(minOfProperty:) -L_selector_data(maxOfProperty:) -L_selector(maxOfProperty:) -L_selector_data(sumOfProperty:) -L_selector(sumOfProperty:) -L_selector_data(averageOfProperty:) -L_selector(averageOfProperty:) -_TMLCSo8NSNumber -block_descriptor.7 -_TWGuRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_ -_TWGuRxC10RealmSwift6ObjectrGCS_7Resultsx_s12SequenceTypeS_ -_PROTOCOL_NSFastEnumeration -l_OBJC_LABEL_PROTOCOL_$_NSFastEnumeration -l_OBJC_PROTOCOL_REFERENCE_$_NSFastEnumeration -L_selector_data(rlmResults) -L_selector_data(init:) -_PROTOCOLS__TtC10RealmSwift11ResultsBase -_METACLASS_DATA__TtC10RealmSwift11ResultsBase -_INSTANCE_METHODS__TtC10RealmSwift11ResultsBase -_PROTOCOLS__TtC10RealmSwift11ResultsBase.8 -_IVARS__TtC10RealmSwift11ResultsBase -_PROPERTIES__TtC10RealmSwift11ResultsBase -_DATA__TtC10RealmSwift11ResultsBase -_TMfC10RealmSwift11ResultsBase -_INSTANCE_METHODS__TtC10RealmSwift7Results -_PROPERTIES__TtC10RealmSwift7Results -got.OBJC_CLASS_$_NSDate -field_type_vector_ResultsBase -_TMLCSo10RLMResults -_PROTOCOL_INSTANCE_METHODS_NSFastEnumeration -_PROTOCOL_METHOD_TYPES_NSFastEnumeration -_TTSg5CSo10RLMResultsCSo8NSObjects9Equatable10ObjectiveC___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb -_TTSg5CSo10RLMResultsCSo8NSObjects9Equatable10ObjectiveC___TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb -rlmResults.get -_TMaCSo10RLMResults -_TMaC10RealmSwift11ResultsBase -_TWauRxC10RealmSwift6ObjectrGCS_7Resultsx_s12SequenceTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_7Resultsx_s9IndexableS_ -_TWauRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_ -_TWauRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_ -_TWaVs5Int6410RealmSwift11AddableTypeS0_ -_TWaVs5Int3210RealmSwift11AddableTypeS0_ -_TWaVs5Int1610RealmSwift11AddableTypeS0_ -_TWaVs4Int810RealmSwift11AddableTypeS0_ -_TWaSi10RealmSwift11AddableTypeS_ -_TWaSf10RealmSwift11AddableTypeS_ -_TWaSd10RealmSwift11AddableTypeS_ -_TWaCSo6NSDate10RealmSwift10MinMaxTypeS0_ -_TWaVs5Int6410RealmSwift10MinMaxTypeS0_ -_TWaVs5Int3210RealmSwift10MinMaxTypeS0_ -_TWaVs5Int1610RealmSwift10MinMaxTypeS0_ -_TWaVs4Int810RealmSwift10MinMaxTypeS0_ -_TWaSi10RealmSwift10MinMaxTypeS_ -_TWaSf10RealmSwift10MinMaxTypeS_ -_TWaSd10RealmSwift10MinMaxTypeS_ -_TTSf4s_s___TFFs26_unimplemented_initializerFTVs12StaticString8initNameS_4fileS_4lineSu6columnSu_T_U0_FGSRVs5UInt8_T_ -countByEnumeratingWithState -_TMaCSo8NSNumber -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Results.swift -_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray15reserveCapacityfSiT_ -_TTSg5GVs22_ContiguousArrayBufferC10RealmSwift12ObjectSchema_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5GVs22_ContiguousArrayBufferC10RealmSwift12ObjectSchema_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray16_copyToNewBufferfSiT_ -get_field_types_Schema -_TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferC10RealmSwift12ObjectSchema_GS_S1__s16_ArrayBufferTypes_GVs14_IgnorePointerS1__GS3_S1__s20_PointerFunctionTypes_S1__GVs17IndexingGeneratorGS_S1___GS5_GS_S1___s13GeneratorTypes_S1__GVs12_SliceBufferS1__GS7_S1__s14CollectionTypes_GS5_GS7_S1___GS5_GS7_S1___S6_s_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS7_S1__GS7_S1__s9IndexablesGS7_S1__s12SequenceTypes_GS5_GS7_S1___GS5_GS7_S1___S6_s_S1__SiSiS9_s_SiSiS10_s_SiSiS11_s_Si_GS7_S1___S1__S1__S1____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ -_TMaGCs23_ContiguousArrayStorageC10RealmSwift12ObjectSchema_ -_METACLASS_DATA__TtC10RealmSwift6Schema -_IVARS__TtC10RealmSwift6Schema -_DATA__TtC10RealmSwift6Schema -_TMfC10RealmSwift6Schema -field_type_vector_Schema -_TMLGCs23_ContiguousArrayStorageC10RealmSwift12ObjectSchema_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArrayg5countSi -Schema.swift -_TTSg5CSo15RLMObjectSchema_Ps9AnyObject____TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___ -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointerg19_allocatedByteCountSi -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointerg21allocatedElementCountSi -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TZFVs20ManagedBufferPointerg14_alignmentMaskSi -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ -_TTSg5C10RealmSwift12ObjectSchema___TFSp18moveInitializeFromfTGSpx_5countSi_T_ -_TTSg5C10RealmSwift12ObjectSchema___TFSp7destroyfSiT_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ -_TTSg5C10RealmSwift12ObjectSchema___TFSp14initializeFromfTGSpx_5countSi_T_ -_TTSg5C10RealmSwift12ObjectSchema___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointerlu5valuex -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferg10startIndexSi -_TTSg5C10RealmSwift12ObjectSchema___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ -_TTSg5C10RealmSwift12ObjectSchema___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__ -_TMaC10RealmSwift6Schema -_TWaC10RealmSwift6Schemas9EquatableS_ -_TWaC10RealmSwift6Schemas23CustomStringConvertibleS_ -_TTSg5C10RealmSwift12ObjectSchema___TFSaCft12arrayLiteralGSax__GSax_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs12_ArrayBufferg9_isNativeSb -_TTSg5C10RealmSwift12ObjectSchema___TFVs12_ArrayBufferg19firstElementAddressGSpx_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs12_ArrayBuffers5countSi -_TTSg5C10RealmSwift12ObjectSchema___TFVs12_ArrayBufferCfT_GS_x_ -_TTSg5C10RealmSwift12ObjectSchema___TFSaCfT19_uninitializedCountSi_GSax_ -_TTSg5C10RealmSwift12ObjectSchema___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ -_TTSg5C10RealmSwift12ObjectSchema___TFSaCfGVs12_ArrayBufferx_GSax_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ -_TTSg5C10RealmSwift12ObjectSchema___TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__ -_TTSg5C10RealmSwift12ObjectSchema___TFSp10initializefxT_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBuffers5countSi -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferg8capacitySi -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferg5countSi -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TZFVs20ManagedBufferPointerg14_elementOffsetSi -_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TZFVs20ManagedBufferPointerg12_valueOffsetSi -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb -_TTSg5Vs10_ArrayBody_C10RealmSwift12ObjectSchema___TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ -_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArrayCfT_GS_x_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs22_ContiguousArrayBufferCfT_GS_x_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray6appendfxT_ -_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ -_TTRXFo_oCSo15RLMObjectSchema_oC10RealmSwift12ObjectSchemazoPs9ErrorType__XFo_iS__iS1_zoPS2___ -_TTSg5GSaCSo15RLMObjectSchema_GSaS__s14CollectionTypes_GVs17IndexingGeneratorGSaS___GS1_GSaS___s13GeneratorTypes_S__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS6_S__s9IndexablesGS6_S__s12SequenceTypes_GS1_GS6_S___GS1_GS6_S___S2_s_S__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_S___S__S__C10RealmSwift12ObjectSchema___TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___ -_TTSg5C10RealmSwift12ObjectSchema___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Schema.swift -_TwXXV10RealmSwift14SortDescriptor -_TwCPV10RealmSwift14SortDescriptor -_TwprV10RealmSwift14SortDescriptor -_TwdeV10RealmSwift14SortDescriptor -_TwxxV10RealmSwift14SortDescriptor -_TwCpV10RealmSwift14SortDescriptor -_TwcpV10RealmSwift14SortDescriptor -_TwcaV10RealmSwift14SortDescriptor -_TwTkV10RealmSwift14SortDescriptor -__swift_memcpy13_4 -_TwtaV10RealmSwift14SortDescriptor -_TwalV10RealmSwift14SortDescriptor -_TwXxV10RealmSwift14SortDescriptor -_TwCcV10RealmSwift14SortDescriptor -__swift_memmove_array16_4 -get_field_types_SortDescriptor -_TMfV10RealmSwift14SortDescriptor -got._TMps24StringLiteralConvertible -got._TMps41ExtendedGraphemeClusterLiteralConvertible -got._TMps31UnicodeScalarLiteralConvertible -field_type_vector_SortDescriptor -SortDescriptor.swift -_TMaV10RealmSwift14SortDescriptor -_TWaV10RealmSwift14SortDescriptors31UnicodeScalarLiteralConvertibleS_ -_TWaV10RealmSwift14SortDescriptors41ExtendedGraphemeClusterLiteralConvertibleS_ -_TWaV10RealmSwift14SortDescriptors24StringLiteralConvertibleS_ -_TWaV10RealmSwift14SortDescriptors9EquatableS_ -_TWaV10RealmSwift14SortDescriptors23CustomStringConvertibleS_ -ascending.get -property.get -reversed -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SortDescriptor.swift -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SwiftVersion.swift -Util.swift -throwForNegativeIndex -/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Util.swift diff --git a/Carthage/Build/watchOS/Realm.framework.dSYM/Contents/Info.plist b/Carthage/Build/watchOS/Realm.framework.dSYM/Contents/Info.plist deleted file mode 100644 index d8f0315..0000000 --- a/Carthage/Build/watchOS/Realm.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.io.Realm.Realm - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 0.98.6 - CFBundleVersion - 0.98.6 - - diff --git a/Carthage/Build/watchOS/Realm.framework.dSYM/Contents/Resources/DWARF/Realm b/Carthage/Build/watchOS/Realm.framework.dSYM/Contents/Resources/DWARF/Realm deleted file mode 100644 index 498af32..0000000 Binary files a/Carthage/Build/watchOS/Realm.framework.dSYM/Contents/Resources/DWARF/Realm and /dev/null differ diff --git a/Carthage/Build/watchOS/Realm.framework/CHANGELOG.md b/Carthage/Build/watchOS/Realm.framework/CHANGELOG.md deleted file mode 100644 index 23bdb96..0000000 --- a/Carthage/Build/watchOS/Realm.framework/CHANGELOG.md +++ /dev/null @@ -1,1516 +0,0 @@ -0.98.6 Release notes (2016-03-25) -============================================================= - -Prebuilt frameworks are now built with Xcode 7.3. - -### API breaking changes - -* None. - -### Enhancements - -* None. - -### Bugfixes - -* Fix running unit tests on iOS simulators and devices with Xcode 7.3. - -0.98.5 Release notes (2016-03-14) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* None. - -### Bugfixes - -* Fix a crash when opening a Realm on 32-bit iOS devices. - -0.98.4 Release notes (2016-03-10) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* None. - -### Bugfixes - -* Properly report changes made by adding an object to a Realm with - addOrUpdate:/createOrUpdate: to KVO observers for existing objects with that - primary key. -* Fix crashes and assorted issues when a migration which added object link - properties is rolled back due to an error in the migration block. -* Fix assertion failures when deleting objects within a migration block of a - type which had an object link property added in that migration. -* Fix an assertion failure in `Query::apply_patch` when updating certain kinds - of queries after a write transaction is committed. - -0.98.3 Release notes (2016-02-26) -============================================================= - -### Enhancements - -* Initializing the shared schema is 3x faster. - -### Bugfixes - -* Using Realm Objective-C from Swift while having Realm Swift linked no longer causes that the - declared `ignoredProperties` are not taken into account. -* Fix assertion failures when rolling back a migration which added Object link - properties to a class. -* Fix potential errors when cancelling a write transaction which modified - multiple `RLMArray`/`List` properties. -* Report the correct value for inWriteTransaction after attempting to commit a - write transaction fails. -* Support CocoaPods 1.0 beginning from prerelease 1.0.0.beta.4 while retaining - backwards compatibility with 0.39. - -0.98.2 Release notes (2016-02-18) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Aggregate operations (`ANY`, `NONE`, `@count`, `SUBQUERY`, etc.) are now supported for key paths - that begin with an object relationship so long as there is a `RLMArray`/`List` property at some - point in a key path. -* Predicates of the form `%@ IN arrayProperty` are now supported. - -### Bugfixes - -* Use of KVC collection operators on Swift collection types no longer throws an exception. -* Fix reporting of inWriteTransaction in notifications triggered by - `beginWriteTransaction`. -* The contents of `List` and `Optional` properties are now correctly preserved when copying - a Swift object from one Realm to another, and performing other operations that result in a - Swift object graph being recursively traversed from Objective-C. -* Fix a deadlock when queries are performed within a Realm notification block. -* The `ANY` / `SOME` / `NONE` qualifiers are now required in comparisons involving a key path that - traverse a `RLMArray`/`List` property. Previously they were only required if the first key in the - key path was an `RLMArray`/`List` property. -* Fix several scenarios where the default schema would be initialized - incorrectly if the first Realm opened used a restricted class subset (via - `objectClasses`/`objectTypes`). - -0.98.1 Release notes (2016-02-10) -============================================================= - -### Bugfixes - -* Fix crashes when deleting an object containing an `RLMArray`/`List` which had - previously been queried. -* Fix a crash when deleting an object containing an `RLMArray`/`List` with - active notification blocks. -* Fix duplicate file warnings when building via CocoaPods. -* Fix crash or incorrect results when calling `indexOfObject:` on an - `RLMResults` derived from an `RLMArray`. - -0.98.0 Release notes (2016-02-04) -============================================================= - -### API breaking changes - -* `+[RLMRealm realmWithPath:]`/`Realm.init(path:)` now inherits from the default - configuration. -* Swift 1.2 is no longer supported. - -### Enhancements - -* Add `addNotificationBlock` to `RLMResults`, `Results`, `RLMArray`, and - `List`, which calls the given block whenever the collection changes. -* Do a lot of the work for keeping `RLMResults`/`Results` up-to-date after - write transactions on a background thread to help avoid blocking the main - thread. -* `NSPredicate`'s `SUBQUERY` operator is now supported. It has the following limitations: - * `@count` is the only operator that may be applied to the `SUBQUERY` expression. - * The `SUBQUERY(…).@count` expression must be compared with a constant. - * Correlated subqueries are not yet supported. - -### Bugfixes - -* None. - -0.97.1 Release notes (2016-01-29) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Swift: Added `Error` enum allowing to catch errors e.g. thrown on initializing - `RLMRealm`/`Realm` instances. -* Fail with `RLMErrorFileNotFound` instead of the more generic `RLMErrorFileAccess`, - if no file was found when a realm was opened as read-only or if the directory part - of the specified path was not found when a copy should be written. -* Greatly improve performance when deleting objects with one or more indexed - properties. -* Indexing `BOOL`/`Bool` and `NSDate` properties are now supported. -* Swift: Add support for indexing optional properties. - -### Bugfixes - -* Fix incorrect results or crashes when using `-[RLMResults setValue:forKey:]` - on an RLMResults which was filtered on the key being set. -* Fix crashes when an RLMRealm is deallocated from the wrong thread. -* Fix incorrect results from aggregate methods on `Results`/`RLMResults` after - objects which were previously in the results are deleted. -* Fix a crash when adding a new property to an existing class with over a - million objects in the Realm. -* Fix errors when opening encrypted Realm files created with writeCopyToPath. -* Fix crashes or incorrect results for queries that use relationship equality - in cases where the `RLMResults` is kept alive and instances of the target class - of the relationship are deleted. - -0.97.0 Release notes (2015-12-17) -============================================================= - -### API breaking changes - -* All functionality deprecated in previous releases has been removed entirely. -* Add generic type annotations to NSArrays and NSDictionaries in public APIs. -* Adding a Realm notification block on a thread not currently running from - within a run loop throws an exception rather than silently never calling the - notification block. - -### Enhancements - -* Support for tvOS. -* Support for building Realm Swift from source when using Carthage. -* The block parameter of `-[RLMRealm transactionWithBlock:]`/`Realm.write(_:)` is - now marked as `__attribute__((noescape))`/`@noescape`. -* Many forms of queries with key paths on both sides of the comparison operator - are now supported. -* Add support for KVC collection operators in `RLMResults` and `RLMArray`. -* Fail instead of deadlocking in `+[RLMRealm sharedSchema]`, if a Swift property is initialized - to a computed value, which attempts to open a Realm on its own. - -### Bugfixes - -* Fix poor performance when calling `-[RLMRealm deleteObjects:]` on an - `RLMResults` which filtered the objects when there are other classes linking - to the type of the deleted objects. -* An exception is now thrown when defining `Object` properties of an unsupported - type. - -0.96.3 Release notes (2015-12-04) -============================================================= - -### Enhancements - -* Queries are no longer limited to 16 levels of grouping. -* Rework the implementation of encrypted Realms to no longer interfere with - debuggers. - -### Bugfixes - -* Fix crash when trying to retrieve object instances via `dynamicObjects`. -* Throw an exception when querying on a link providing objects, which are from a different Realm. -* Return empty results when querying on a link providing an unattached object. -* Fix crashes or incorrect results when calling `-[RLMRealm refresh]` during - fast enumeration. -* Add `Int8` support for `RealmOptional`, `MinMaxType` and `AddableType`. -* Set the default value for newly added non-optional NSData properties to a - zero-byte NSData rather than nil. -* Fix a potential crash when deleting all objects of a class. -* Fix performance problems when creating large numbers of objects with - `RLMArray`/`List` properties. -* Fix memory leak when using Object(value:) for subclasses with - `List` or `RealmOptional` properties. -* Fix a crash when computing the average of an optional integer property. -* Fix incorrect search results for some queries on integer properties. -* Add error-checking for nil realm parameters in many methods such as - `+[RLMObject allObjectsInRealm:]`. -* Fix a race condition between commits and opening Realm files on new threads - that could lead to a crash. -* Fix several crashes when opening Realm files. -* `-[RLMObject createInRealm:withValue:]`, `-[RLMObject createOrUpdateInRealm:withValue:]`, and - their variants for the default Realm now always match the contents of an `NSArray` against properties - in the same order as they are defined in the model. - -0.96.2 Release notes (2015-10-26) -============================================================= - -Prebuilt frameworks are now built with Xcode 7.1. - -### Bugfixes - -* Fix ignoring optional properties in Swift. -* Fix CocoaPods installation on case-sensitive file systems. - -0.96.1 Release notes (2015-10-20) -============================================================= - -### Bugfixes - -* Support assigning `Results` to `List` properties via KVC. -* Honor the schema version set in the configuration in `+[RLMRealm migrateRealm:]`. -* Fix crash when using optional Int16/Int32/Int64 properties in Swift. - -0.96.0 Release notes (2015-10-14) -============================================================= - -* No functional changes since beta2. - -0.96.0-beta2 Release notes (2015-10-08) -============================================================= - -### Bugfixes - -* Add RLMOptionalBase.h to the podspec. - -0.96.0-beta Release notes (2015-10-07) -============================================================= - -### API breaking changes - -* CocoaPods v0.38 or greater is now required to install Realm and RealmSwift - as pods. - -### Enhancements - -* Functionality common to both `List` and `Results` is now declared in a - `RealmCollectionType` protocol that both types conform to. -* `Results.realm` now returns an `Optional` in order to conform to - `RealmCollectionType`, but will always return `.Some()` since a `Results` - cannot exist independently from a `Realm`. -* Aggregate operations are now available on `List`: `min`, `max`, `sum`, - `average`. -* Committing write transactions (via `commitWrite` / `commitWriteTransaction` and - `write` / `transactionWithBlock`) now optionally allow for handling errors when - the disk is out of space. -* Added `isEmpty` property on `RLMRealm`/`Realm` to indicate if it contains any - objects. -* The `@count`, `@min`, `@max`, `@sum` and `@avg` collection operators are now - supported in queries. - -### Bugfixes - -* Fix assertion failure when inserting NSData between 8MB and 16MB in size. -* Fix assertion failure when rolling back a migration which removed an object - link or `RLMArray`/`List` property. -* Add the path of the file being opened to file open errors. -* Fix a crash that could be triggered by rapidly opening and closing a Realm - many times on multiple threads at once. -* Fix several places where exception messages included the name of the wrong - function which failed. - -0.95.3 Release notes (2015-10-05) -============================================================= - -### Bugfixes - -* Compile iOS Simulator framework architectures with `-fembed-bitcode-marker`. -* Fix crashes when the first Realm opened uses a class subset and later Realms - opened do not. -* Fix inconsistent errors when `Object(value: ...)` is used to initialize the - default value of a property of an `Object` subclass. -* Throw an exception when a class subset has objects with array or object - properties of a type that are not part of the class subset. - -0.95.2 Release notes (2015-09-24) -============================================================= - -* Enable bitcode for iOS and watchOS frameworks. -* Build libraries with Xcode 7 final rather than the GM. - -0.95.1 Release notes (2015-09-23) -============================================================= - -### Enhancements - -* Add missing KVO handling for moving and exchanging objects in `RLMArray` and - `List`. - -### Bugfixes - -* Setting the primary key property on persisted `RLMObject`s / `Object`s - via subscripting or key-value coding will cause an exception to be thrown. -* Fix crash due to race condition in `RLMRealmConfiguration` where the default - configuration was in the process of being copied in one thread, while - released in another. -* Fix crash when a migration which removed an object or array property is - rolled back due to an error. - -0.95.0 Release notes (2015-08-25) -============================================================= - -### API breaking changes - -* The following APIs have been deprecated in favor of the new `RLMRealmConfiguration` class in Realm Objective-C: - -| Deprecated API | New API | -|:------------------------------------------------------------------|:---------------------------------------------------------------------------------| -| `+[RLMRealm realmWithPath:readOnly:error:]` | `+[RLMRealm realmWithConfiguration:error:]` | -| `+[RLMRealm realmWithPath:encryptionKey:readOnly:error:]` | `+[RLMRealm realmWithConfiguration:error:]` | -| `+[RLMRealm setEncryptionKey:forRealmsAtPath:]` | `-[RLMRealmConfiguration setEncryptionKey:]` | -| `+[RLMRealm inMemoryRealmWithIdentifier:]` | `+[RLMRealm realmWithConfiguration:error:]` | -| `+[RLMRealm defaultRealmPath]` | `+[RLMRealmConfiguration defaultConfiguration]` | -| `+[RLMRealm setDefaultRealmPath:]` | `+[RLMRealmConfiguration setDefaultConfiguration:]` | -| `+[RLMRealm setDefaultRealmSchemaVersion:withMigrationBlock]` | `RLMRealmConfiguration.schemaVersion` and `RLMRealmConfiguration.migrationBlock` | -| `+[RLMRealm setSchemaVersion:forRealmAtPath:withMigrationBlock:]` | `RLMRealmConfiguration.schemaVersion` and `RLMRealmConfiguration.migrationBlock` | -| `+[RLMRealm migrateRealmAtPath:]` | `+[RLMRealm migrateRealm:]` | -| `+[RLMRealm migrateRealmAtPath:encryptionKey:]` | `+[RLMRealm migrateRealm:]` | - -* The following APIs have been deprecated in favor of the new `Realm.Configuration` struct in Realm Swift for Swift 1.2: - -| Deprecated API | New API | -|:--------------------------------------------------------------|:-----------------------------------------------------------------------------| -| `Realm.defaultPath` | `Realm.Configuration.defaultConfiguration` | -| `Realm(path:readOnly:encryptionKey:error:)` | `Realm(configuration:error:)` | -| `Realm(inMemoryIdentifier:)` | `Realm(configuration:error:)` | -| `Realm.setEncryptionKey(:forPath:)` | `Realm(configuration:error:)` | -| `setDefaultRealmSchemaVersion(schemaVersion:migrationBlock:)` | `Realm.Configuration.schemaVersion` and `Realm.Configuration.migrationBlock` | -| `setSchemaVersion(schemaVersion:realmPath:migrationBlock:)` | `Realm.Configuration.schemaVersion` and `Realm.Configuration.migrationBlock` | -| `migrateRealm(path:encryptionKey:)` | `migrateRealm(configuration:)` | - -* The following APIs have been deprecated in favor of the new `Realm.Configuration` struct in Realm Swift for Swift 2.0: - -| Deprecated API | New API | -|:--------------------------------------------------------------|:-----------------------------------------------------------------------------| -| `Realm.defaultPath` | `Realm.Configuration.defaultConfiguration` | -| `Realm(path:readOnly:encryptionKey:) throws` | `Realm(configuration:) throws` | -| `Realm(inMemoryIdentifier:)` | `Realm(configuration:) throws` | -| `Realm.setEncryptionKey(:forPath:)` | `Realm(configuration:) throws` | -| `setDefaultRealmSchemaVersion(schemaVersion:migrationBlock:)` | `Realm.Configuration.schemaVersion` and `Realm.Configuration.migrationBlock` | -| `setSchemaVersion(schemaVersion:realmPath:migrationBlock:)` | `Realm.Configuration.schemaVersion` and `Realm.Configuration.migrationBlock` | -| `migrateRealm(path:encryptionKey:)` | `migrateRealm(configuration:)` | - -* `List.extend` in Realm Swift for Swift 2.0 has been replaced with `List.appendContentsOf`, - mirroring changes to `RangeReplaceableCollectionType`. - -* Object properties on `Object` subclasses in Realm Swift must be marked as optional, - otherwise a runtime exception will be thrown. - -### Enhancements - -* Persisted properties of `RLMObject`/`Object` subclasses are now Key-Value - Observing compliant. -* The different options used to create Realm instances have been consolidated - into a single `RLMRealmConfiguration`/`Realm.Configuration` object. -* Enumerating Realm collections (`RLMArray`, `RLMResults`, `List<>`, - `Results<>`) now enumerates over a copy of the collection, making it no - longer an error to modify a collection during enumeration (either directly, - or indirectly by modifying objects to make them no longer match a query). -* Improve performance of object insertion in Swift to bring it roughly in line - with Objective-C. -* Allow specifying a specific list of `RLMObject` / `Object` subclasses to include - in a given Realm via `RLMRealmConfiguration.objectClasses` / `Realm.Configuration.objectTypes`. - -### Bugfixes - -* Subscripting on `RLMObject` is now marked as nullable. - -0.94.1 Release notes (2015-08-10) -============================================================= - -### API breaking changes - -* Building for watchOS requires Xcode 7 beta 5. - -### Enhancements - -* `Object.className` is now marked as `final`. - -### Bugfixes - -* Fix crash when adding a property to a model without updating the schema - version. -* Fix unnecessary redownloading of the core library when building from source. -* Fix crash when sorting by an integer or floating-point property on iOS 7. - -0.94.0 Release notes (2015-07-29) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Reduce the amount of memory used by RLMRealm notification listener threads. -* Avoid evaluating results eagerly when filtering and sorting. -* Add nullability annotations to the Objective-C API to provide enhanced compiler - warnings and bridging to Swift. -* Make `RLMResult`s and `RLMArray`s support Objective-C generics. -* Add support for building watchOS and bitcode-compatible apps. -* Make the exceptions thrown in getters and setters more informative. -* Add `-[RLMArray exchangeObjectAtIndex:withObjectAtIndex]` and `List.swap(_:_:)` - to allow exchanging the location of two objects in the given `RLMArray` / `List`. -* Added anonymous analytics on simulator/debugger runs. -* Add `-[RLMArray moveObjectAtIndex:toIndex:]` and `List.move(from:to:)` to - allow moving objects in the given `RLMArray` / `List`. - -### Bugfixes - -* Processes crashing due to an uncaught exception inside a write transaction will - no longer cause other processes using the same Realm to hang indefinitely. -* Fix incorrect results when querying for < or <= on ints that - require 64 bits to represent with a CPU that supports SSE 4.2. -* An exception will no longer be thrown when attempting to reset the schema - version or encryption key on an open Realm to the current value. -* Date properties on 32 bit devices will retain 64 bit second precision. -* Wrap calls to the block passed to `enumerate` in an autoreleasepool to reduce - memory growth when migrating a large amount of objects. -* In-memory realms no longer write to the Documents directory on iOS or - Application Support on OS X. - -0.93.2 Release notes (2015-06-12) -============================================================= - -### Bugfixes - -* Fixed an issue where the packaged OS X Realm.framework was built with - `GCC_GENERATE_TEST_COVERAGE_FILES` and `GCC_INSTRUMENT_PROGRAM_FLOW_ARCS` - enabled. -* Fix a memory leak when constructing standalone Swift objects with NSDate - properties. -* Throw an exception rather than asserting when an invalidated object is added - to an RLMArray. -* Fix a case where data loss would occur if a device was hard-powered-off - shortly after a write transaction was committed which had to expand the Realm - file. - -0.93.1 Release notes (2015-05-29) -============================================================= - -### Bugfixes - -* Objects are no longer copied into standalone objects during object creation. This fixes an issue where - nested objects with a primary key are sometimes duplicated rather than updated. -* Comparison predicates with a constant on the left of the operator and key path on the right now give - correct results. An exception is now thrown for predicates that do not yet support this ordering. -* Fix some crashes in `index_string.cpp` with int primary keys or indexed int properties. - -0.93.0 Release notes (2015-05-27) -============================================================= - -### API breaking changes - -* Schema versions are now represented as `uint64_t` (Objective-C) and `UInt64` (Swift) so that they have - the same representation on all architectures. - -### Enhancements - -* Swift: `Results` now conforms to `CVarArgType` so it can - now be passed as an argument to `Results.filter(_:...)` - and `List.filter(_:...)`. -* Swift: Made `SortDescriptor` conform to the `Equatable` and - `StringLiteralConvertible` protocols. -* Int primary keys are once again automatically indexed. -* Improve error reporting when attempting to mark a property of a type that - cannot be indexed as indexed. - -### Bugfixes - -* Swift: `RealmSwift.framework` no longer embeds `Realm.framework`, - which now allows apps using it to pass iTunes Connect validation. - -0.92.4 Release notes (2015-05-22) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Swift: Made `Object.init()` a required initializer. -* `RLMObject`, `RLMResults`, `Object` and `Results` can now be safely - deallocated (but still not used) from any thread. -* Improve performance of `-[RLMArray indexOfObjectWhere:]` and `-[RLMArray - indexOfObjectWithPredicate:]`, and implement them for standalone RLMArrays. -* Improved performance of most simple queries. - -### Bugfixes - -* The interprocess notification mechanism no longer uses dispatch worker threads, preventing it from - starving other GCD clients of the opportunity to execute blocks when dozens of Realms are open at once. - -0.92.3 Release notes (2015-05-13) -============================================================= - -### API breaking changes - -* Swift: `Results.average(_:)` now returns an optional, which is `nil` if and only if the results - set is empty. - -### Enhancements - -* Swift: Added `List.invalidated`, which returns if the given `List` is no longer - safe to be accessed, and is analogous to `-[RLMArray isInvalidated]`. -* Assertion messages are automatically logged to Crashlytics if it's loaded - into the current process to make it easier to diagnose crashes. - -### Bugfixes - -* Swift: Enumerating through a standalone `List` whose objects themselves - have list properties won't crash. -* Swift: Using a subclass of `RealmSwift.Object` in an aggregate operator of a predicate - no longer throws a spurious type error. -* Fix incorrect results for when using OR in a query on a `RLMArray`/`List<>`. -* Fix incorrect values from `[RLMResults count]`/`Results.count` when using - `!=` on an int property with no other query conditions. -* Lower the maximum doubling threshold for Realm file sizes from 128MB to 16MB - to reduce the amount of wasted space. - -0.92.2 Release notes (2015-05-08) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Exceptions raised when incorrect object types are used with predicates now contain more detailed information. -* Added `-[RLMMigration deleteDataForClassName:]` and `Migration.deleteData(_:)` - to enable cleaning up after removing object subclasses - -### Bugfixes - -* Prevent debugging of an application using an encrypted Realm to work around - frequent LLDB hangs. Until the underlying issue is addressed you may set - REALM_DISABLE_ENCRYPTION=YES in your application's environment variables to - have requests to open an encrypted Realm treated as a request for an - unencrypted Realm. -* Linked objects are properly updated in `createOrUpdateInRealm:withValue:`. -* List properties on Objects are now properly initialized during fast enumeration. - -0.92.1 Release notes (2015-05-06) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* `-[RLMRealm inWriteTransaction]` is now public. -* Realm Swift is now available on CoocaPods. - -### Bugfixes - -* Force code re-signing after stripping architectures in `strip-frameworks.sh`. - -0.92.0 Release notes (2015-05-05) -============================================================= - -### API breaking changes - -* Migration blocks are no longer called when a Realm file is first created. -* The following APIs have been deprecated in favor of newer method names: - -| Deprecated API | New API | -|:-------------------------------------------------------|:------------------------------------------------------| -| `-[RLMMigration createObject:withObject:]` | `-[RLMMigration createObject:withValue:]` | -| `-[RLMObject initWithObject:]` | `-[RLMObject initWithValue:]` | -| `+[RLMObject createInDefaultRealmWithObject:]` | `+[RLMObject createInDefaultRealmWithValue:]` | -| `+[RLMObject createInRealm:withObject:]` | `+[RLMObject createInRealm:withValue:]` | -| `+[RLMObject createOrUpdateInDefaultRealmWithObject:]` | `+[RLMObject createOrUpdateInDefaultRealmWithValue:]` | -| `+[RLMObject createOrUpdateInRealm:withObject:]` | `+[RLMObject createOrUpdateInRealm:withValue:]` | - -### Enhancements - -* `Int8` properties defined in Swift are now treated as integers, rather than - booleans. -* NSPredicates created using `+predicateWithValue:` are now supported. - -### Bugfixes - -* Compound AND predicates with no subpredicates now correctly match all objects. - -0.91.5 Release notes (2015-04-28) -============================================================= - -### Bugfixes - -* Fix issues with removing search indexes and re-enable it. - -0.91.4 Release notes (2015-04-27) -============================================================= - -### Bugfixes - -* Temporarily disable removing indexes from existing columns due to bugs. - -0.91.3 Release notes (2015-04-17) -============================================================= - -### Bugfixes - -* Fix `Extra argument 'objectClassName' in call` errors when building via - CocoaPods. - -0.91.2 Release notes (2015-04-16) -============================================================= - -* Migration blocks are no longer called when a Realm file is first created. - -### Enhancements - -* `RLMCollection` supports collection KVC operations. -* Sorting `RLMResults` is 2-5x faster (typically closer to 2x). -* Refreshing `RLMRealm` after a write transaction which inserts or modifies - strings or `NSData` is committed on another thread is significantly faster. -* Indexes are now added and removed from existing properties when a Realm file - is opened, rather than only when properties are first added. - -### Bugfixes - -* `+[RLMSchema dynamicSchemaForRealm:]` now respects search indexes. -* `+[RLMProperty isEqualToProperty:]` now checks for equal `indexed` properties. - -0.91.1 Release notes (2015-03-12) -============================================================= - -### Enhancements - -* The browser will automatically refresh when the Realm has been modified - from another process. -* Allow using Realm in an embedded framework by setting - `APPLICATION_EXTENSION_API_ONLY` to YES. - -### Bugfixes - -* Fix a crash in CFRunLoopSourceInvalidate. - -0.91.0 Release notes (2015-03-10) -============================================================= - -### API breaking changes - -* `attributesForProperty:` has been removed from `RLMObject`. You now specify indexed - properties by implementing the `indexedProperties` method. -* An exception will be thrown when calling `setEncryptionKey:forRealmsAtPath:`, - `setSchemaVersion:forRealmAtPath:withMigrationBlock:`, and `migrateRealmAtPath:` - when a Realm at the given path is already open. -* Object and array properties of type `RLMObject` will no longer be allowed. - -### Enhancements - -* Add support for sharing Realm files between processes. -* The browser will no longer show objects that have no persisted properties. -* `RLMSchema`, `RLMObjectSchema`, and `RLMProperty` now have more useful descriptions. -* Opening an encrypted Realm while a debugger is attached to the process no - longer throws an exception. -* `RLMArray` now exposes an `isInvalidated` property to indicate if it can no - longer be accessed. - -### Bugfixes - -* An exception will now be thrown when calling `-beginWriteTransaction` from within a notification - triggered by calling `-beginWriteTransaction` elsewhere. -* When calling `delete:` we now verify that the object being deleted is persisted in the target Realm. -* Fix crash when calling `createOrUpdate:inRealm` with nested linked objects. -* Use the key from `+[RLMRealm setEncryptionKey:forRealmsAtPath:]` in - `-writeCopyToPath:error:` and `+migrateRealmAtPath:`. -* Comparing an RLMObject to a non-RLMObject using `-[RLMObject isEqual:]` or - `-isEqualToObject:` now returns NO instead of crashing. -* Improved error message when an `RLMObject` subclass is defined nested within - another Swift declaration. -* Fix crash when the process is terminated by the OS on iOS while encrypted realms are open. -* Fix crash after large commits to encrypted realms. - -0.90.6 Release notes (2015-02-20) -============================================================= - -### Enhancements - -* Improve compatiblity of encrypted Realms with third-party crash reporters. - -### Bugfixes - -* Fix incorrect results when using aggregate functions on sorted RLMResults. -* Fix data corruption when using writeCopyToPath:encryptionKey:. -* Maybe fix some assertion failures. - -0.90.5 Release notes (2015-02-04) -============================================================= - -### Bugfixes - -* Fix for crashes when encryption is enabled on 64-bit iOS devices. - -0.90.4 Release notes (2015-01-29) -============================================================= - -### Bugfixes - -* Fix bug that resulted in columns being dropped and recreated during migrations. - -0.90.3 Release notes (2015-01-27) -============================================================= - -### Enhancements - -* Calling `createInDefaultRealmWithObject:`, `createInRealm:withObject:`, - `createOrUpdateInDefaultRealmWithObject:` or `createOrUpdateInRealm:withObject:` - is a no-op if the argument is an RLMObject of the same type as the receiver - and is already backed by the target realm. - -### Bugfixes - -* Fix incorrect column type assertions when the first Realm file opened is a - read-only file that is missing tables. -* Throw an exception when adding an invalidated or deleted object as a link. -* Throw an exception when calling `createOrUpdateInRealm:withObject:` when the - receiver has no primary key defined. - -0.90.1 Release notes (2015-01-22) -============================================================= - -### Bugfixes - -* Fix for RLMObject being treated as a model object class and showing up in the browser. -* Fix compilation from the podspec. -* Fix for crash when calling `objectsWhere:` with grouping in the query on `allObjects`. - -0.90.0 Release notes (2015-01-21) -============================================================= - -### API breaking changes - -* Rename `-[RLMRealm encryptedRealmWithPath:key:readOnly:error:]` to - `-[RLMRealm realmWithPath:encryptionKey:readOnly:error:]`. -* `-[RLMRealm setSchemaVersion:withMigrationBlock]` is no longer global and must be called - for each individual Realm path used. You can now call `-[RLMRealm setDefaultRealmSchemaVersion:withMigrationBlock]` - for the default Realm and `-[RLMRealm setSchemaVersion:forRealmAtPath:withMigrationBlock:]` for all others; - -### Enhancements - -* Add `-[RLMRealm writeCopyToPath:encryptionKey:error:]`. -* Add support for comparing string columns to other string columns in queries. - -### Bugfixes - -* Roll back changes made when an exception is thrown during a migration. -* Throw an exception if the number of items in a RLMResults or RLMArray changes - while it's being fast-enumerated. -* Also encrypt the temporary files used when encryption is enabled for a Realm. -* Fixed crash in JSONImport example on OS X with non-en_US locale. -* Fixed infinite loop when opening a Realm file in the Browser at the same time - as it is open in a 32-bit simulator. -* Fixed a crash when adding primary keys to older realm files with no primary - keys on any objects. -* Fixed a crash when removing a primary key in a migration. -* Fixed a crash when multiple write transactions with no changes followed by a - write transaction with changes were committed without the main thread - RLMRealm getting a chance to refresh. -* Fixed incomplete results when querying for non-null relationships. -* Improve the error message when a Realm file is opened in multiple processes - at once. - -0.89.2 Release notes (2015-01-02) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* None. - -### Bugfixes - -* Fix an assertion failure when invalidating a Realm which is in a write - transaction, has already been invalidated, or has never been used. -* Fix an assertion failure when sorting an empty RLMArray property. -* Fix a bug resulting in the browser never becoming visible on 10.9. -* Write UTF-8 when generating class files from a realm file in the Browser. - -0.89.1 Release notes (2014-12-22) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Improve the error message when a Realm can't be opened due to lacking write - permissions. - -### Bugfixes - -* Fix an assertion failure when inserting rows after calling `deleteAllObjects` - on a Realm. -* Separate dynamic frameworks are now built for the simulator and devices to - work around App Store submission errors due to the simulator version not - being automatically stripped from dynamic libraries. - -0.89.0 Release notes (2014-12-18) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Add support for encrypting Realm files on disk. -* Support using KVC-compliant objects without getters or with custom getter - names to initialize RLMObjects with `createObjectInRealm` and friends. - -### Bugfixes - -* Merge native Swift default property values with defaultPropertyValues(). -* Don't leave the database schema partially updated when opening a realm fails - due to a migration being needed. -* Fixed issue where objects with custom getter names couldn't be used to - initialize other objects. -* Fix a major performance regression on queries on string properties. -* Fix a memory leak when circularly linked objects are added to a Realm. - -0.88.0 Release notes (2014-12-02) -============================================================= - -### API breaking changes - -* Deallocating an RLMRealm instance in a write transaction lacking an explicit - commit/cancel will now be automatically cancelled instead of committed. -* `-[RLMObject isDeletedFromRealm]` has been renamed to `-[RLMObject isInvalidated]`. - -### Enhancements - -* Add `-[RLMRealm writeCopyToPath:]` to write a compacted copy of the Realm - another file. -* Add support for case insensitive, BEGINSWITH, ENDSWITH and CONTAINS string - queries on array properties. -* Make fast enumeration of `RLMArray` and `RLMResults` ~30% faster and - `objectAtIndex:` ~55% faster. -* Added a lldb visualizer script for displaying the contents of persisted - RLMObjects when debugging. -* Added method `-setDefaultRealmPath:` to change the default Realm path. -* Add `-[RLMRealm invalidate]` to release data locked by the current thread. - -### Bugfixes - -* Fix for crash when running many simultaneous write transactions on background threads. -* Fix for crashes caused by opening Realms at multiple paths simultaneously which have had - properties re-ordered during migration. -* Don't run the query twice when `firstObject` or `lastObject` are called on an - `RLMResults` which has not had its results accessed already. -* Fix for bug where schema version is 0 for new Realm created at the latest version. -* Fix for error message where no migration block is specified when required. - -0.87.4 Release notes (2014-11-07) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* None. - -### Bugfixes - -* Fix browser location in release zip. - -0.87.3 Release notes (2014-11-06) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Added method `-linkingObjectsOfClass:forProperty:` to RLMObject to expose inverse - relationships/backlinks. - -### Bugfixes - -* Fix for crash due to missing search index when migrating an object with a string primary key - in a database created using an older versions (0.86.3 and earlier). -* Throw an exception when passing an array containing a - non-RLMObject to -[RLMRealm addObjects:]. -* Fix for crash when deleting an object from multiple threads. - -0.87.0 Release notes (2014-10-21) -============================================================= - -### API breaking changes - -* RLMArray has been split into two classes, `RLMArray` and `RLMResults`. RLMArray is - used for object properties as in previous releases. Moving forward all methods used to - enumerate, query, and sort objects return an instance of a new class `RLMResults`. This - change was made to support diverging apis and the future addition of change notifications - for queries. -* The api for migrations has changed. You now call `setSchemaVersion:withMigrationBlock:` to - register a global migration block and associated version. This block is applied to Realms as - needed when opened for Realms at a previous version. The block can be applied manually if - desired by calling `migrateRealmAtPath:`. -* `arraySortedByProperty:ascending:` was renamed to `sortedResultsUsingProperty:ascending` -* `addObjectsFromArray:` on both `RLMRealm` and `RLMArray` has been renamed to `addObjects:` - and now accepts any container class which implements `NSFastEnumeration` -* Building with Swift support now requires Xcode 6.1 - -### Enhancements - -* Add support for sorting `RLMArray`s by multiple columns with `sortedResultsUsingDescriptors:` -* Added method `deleteAllObjects` on `RLMRealm` to clear a Realm. -* Added method `createObject:withObject:` on `RLMMigration` which allows object creation during migrations. -* Added method `deleteObject:` on `RLMMigration` which allows object deletion during migrations. -* Updating to core library version 0.85.0. -* Implement `objectsWhere:` and `objectsWithPredicate:` for array properties. -* Add `cancelWriteTransaction` to revert all changes made in a write transaction and end the transaction. -* Make creating `RLMRealm` instances on background threads when an instance - exists on another thread take a fifth of the time. -* Support for partial updates when calling `createOrUpdateWithObject:` and `addOrUpdateObject:` -* Re-enable Swift support on OS X - -### Bugfixes - -* Fix exceptions when trying to set `RLMObject` properties after rearranging - the properties in a `RLMObject` subclass. -* Fix crash on IN query with several thousand items. -* Fix crash when querying indexed `NSString` properties. -* Fixed an issue which prevented in-memory Realms from being used accross multiple threads. -* Preserve the sort order when querying a sorted `RLMResults`. -* Fixed an issue with migrations where if a Realm file is deleted after a Realm is initialized, - the newly created Realm can be initialized with an incorrect schema version. -* Fix crash in `RLMSuperSet` when assigning to a `RLMArray` property on a standalone object. -* Add an error message when the protocol for an `RLMArray` property is not a - valid object type. -* Add an error message when an `RLMObject` subclass is defined nested within - another Swift class. - -0.86.3 Release notes (2014-10-09) -============================================================= - -### Enhancements - -* Add support for != in queries on object relationships. - -### Bugfixes - -* Re-adding an object to its Realm no longer throws an exception and is now a no-op - (as it was previously). -* Fix another bug which would sometimes result in subclassing RLMObject - subclasses not working. - -0.86.2 Release notes (2014-10-06) -============================================================= - -### Bugfixes - -* Fixed issues with packaging "Realm Browser.app" for release. - -0.86.1 Release notes (2014-10-03) -============================================================= - -### Bugfixes - -* Fix a bug which would sometimes result in subclassing RLMObject subclasses - not working. - -0.86.0 Release notes (2014-10-03) -============================================================= - -### API breaking changes - -* Xcode 6 is now supported from the main Xcode project `Realm.xcodeproj`. - Xcode 5 is no longer supported. - -### Enhancements - -* Support subclassing RLMObject models. Although you can now persist subclasses, - polymorphic behavior is not supported (i.e. setting a property to an - instance of its subclass). -* Add support for sorting RLMArray properties. -* Speed up inserting objects with `addObject:` by ~20%. -* `readonly` properties are automatically ignored rather than having to be - added to `ignoredProperties`. -* Updating to core library version 0.83.1. -* Return "[deleted object]" rather than throwing an exception when - `-description` is called on a deleted RLMObject. -* Significantly improve performance of very large queries. -* Allow passing any enumerable to IN clauses rather than just NSArray. -* Add `objectForPrimaryKey:` and `objectInRealm:forPrimaryKey:` convenience - methods to fetch an object by primary key. - -### Bugfixes - -* Fix error about not being able to persist property 'hash' with incompatible - type when building for devices with Xcode 6. -* Fix spurious notifications of new versions of Realm. -* Fix for updating nested objects where some types do not have primary keys. -* Fix for inserting objects from JSON with NSNull values when default values - should be used. -* Trying to add a persisted RLMObject to a different Realm now throws an - exception rather than creating an uninitialized object. -* Fix validation errors when using IN on array properties. -* Fix errors when an IN clause has zero items. -* Fix for chained queries ignoring all but the last query's conditions. - -0.85.0 Release notes (2014-09-15) -============================================================= - -### API breaking changes - -* Notifications for a refresh being needed (when autorefresh is off) now send - the notification type RLMRealmRefreshRequiredNotification rather than - RLMRealmDidChangeNotification. - -### Enhancements - -* Updating to core library version 0.83.0. -* Support for primary key properties (for int and string columns). Declaring a property - to be the primary key ensures uniqueness for that property for all objects of a given type. - At the moment indexes on primary keys are not yet supported but this will be added in a future - release. -* Added methods to update or insert (upsert) for objects with primary keys defined. -* `[RLMObject initWithObject:]` and `[RLMObject createInRealmWithObject:]` now support - any object type with kvc properties. -* The Swift support has been reworked to work around Swift not being supported - in Frameworks on iOS 7. -* Improve performance when getting the count of items matching a query but not - reading any of the objects in the results. -* Add a return value to `-[RLMRealm refresh]` that indicates whether or not - there was anything to refresh. -* Add the class name to the error message when an RLMObject is missing a value - for a property without a default. -* Add support for opening Realms in read-only mode. -* Add an automatic check for updates when using Realm in a simulator (the - checker code is not compiled into device builds). This can be disabled by - setting the REALM_DISABLE_UPDATE_CHECKER environment variable to any value. -* Add support for Int16 and Int64 properties in Swift classes. - -### Bugfixes - -* Realm change notifications when beginning a write transaction are now sent - after updating rather than before, to match refresh. -* `-isEqual:` now uses the default `NSObject` implementation unless a primary key - is specified for an RLMObject. When a primary key is specified, `-isEqual:` calls - `-isEqualToObject:` and a corresponding implementation for `-hash` is also implemented. - -0.84.0 Release notes (2014-08-28) -============================================================= - -### API breaking changes - -* The timer used to trigger notifications has been removed. Notifications are now - only triggered by commits made in other threads, and can not currently be triggered - by changes made by other processes. Interprocess notifications will be re-added in - a future commit with an improved design. - -### Enhancements - -* Updating to core library version 0.82.2. -* Add property `deletedFromRealm` to RLMObject to indicate objects which have been deleted. -* Add support for the IN operator in predicates. -* Add support for the BETWEEN operator in link queries. -* Add support for multi-level link queries in predicates (e.g. `foo.bar.baz = 5`). -* Switch to building the SDK from source when using CocoaPods and add a - Realm.Headers subspec for use in targets that should not link a copy of Realm - (such as test targets). -* Allow unregistering from change notifications in the change notification - handler block. -* Significant performance improvements when holding onto large numbers of RLMObjects. -* Realm-Xcode6.xcodeproj now only builds using Xcode6-Beta6. -* Improved performance during RLMArray iteration, especially when mutating - contained objects. - -### Bugfixes - -* Fix crashes and assorted bugs when sorting or querying a RLMArray returned - from a query. -* Notifications are no longer sent when initializing new RLMRealm instances on background - threads. -* Handle object cycles in -[RLMObject description] and -[RLMArray description]. -* Lowered the deployment target for the Xcode 6 projects and Swift examples to - iOS 7.0, as they didn't actually require 8.0. -* Support setting model properties starting with the letter 'z' -* Fixed crashes that could result from switching between Debug and Relase - builds of Realm. - -0.83.0 Release notes (2014-08-13) -============================================================= - -### API breaking changes - -* Realm-Xcode6.xcodeproj now only builds using Xcode6-Beta5. -* Properties to be persisted in Swift classes must be explicitly declared as `dynamic`. -* Subclasses of RLMObject subclasses now throw an exception on startup, rather - than when added to a Realm. - -### Enhancements - -* Add support for querying for nil object properties. -* Improve error message when specifying invalid literals when creating or - initializing RLMObjects. -* Throw an exception when an RLMObject is used from the incorrect thread rather - than crashing in confusing ways. -* Speed up RLMRealm instantiation and array property iteration. -* Allow array and objection relation properties to be missing or null when - creating a RLMObject from a NSDictionary. - -### Bugfixes - -* Fixed a memory leak when querying for objects. -* Fixed initializing array properties on standalone Swift RLMObject subclasses. -* Fix for queries on 64bit integers. - -0.82.0 Release notes (2014-08-05) -============================================================= - -### API breaking changes - -* Realm-Xcode6.xcodeproj now only builds using Xcode6-Beta4. - -### Enhancements - -* Updating to core library version 0.80.5. -* Now support disabling the `autorefresh` property on RLMRealm instances. -* Building Realm-Xcode6 for iOS now builds a universal framework for Simulator & Device. -* Using NSNumber properties (unsupported) now throws a more informative exception. -* Added `[RLMRealm defaultRealmPath]` -* Proper implementation for [RLMArray indexOfObjectWhere:] -* The default Realm path on OS X is now ~/Library/Application Support/[bundle - identifier]/default.realm rather than ~/Documents -* We now check that the correct framework (ios or osx) is used at compile time. - -### Bugfixes - -* Fixed rapid growth of the realm file size. -* Fixed a bug which could cause a crash during RLMArray destruction after a query. -* Fixed bug related to querying on float properties: `floatProperty = 1.7` now works. -* Fixed potential bug related to the handling of array properties (RLMArray). -* Fixed bug where array properties accessed the wrong property. -* Fixed bug that prevented objects with custom getters to be added to a Realm. -* Fixed a bug where initializing a standalone object with an array literal would - trigger an exception. -* Clarified exception messages when using unsupported NSPredicate operators. -* Clarified exception messages when using unsupported property types on RLMObject subclasses. -* Fixed a memory leak when breaking out of a for-in loop on RLMArray. -* Fixed a memory leak when removing objects from a RLMArray property. -* Fixed a memory leak when querying for objects. - - -0.81.0 Release notes (2014-07-22) -============================================================= - -### API breaking changes - -* None. - -### Enhancements - -* Updating to core library version 0.80.3. -* Added support for basic querying of RLMObject and RLMArray properties (one-to-one and one-to-many relationships). - e.g. `[Person objectsWhere:@"dog.name == 'Alfonso'"]` or `[Person objectsWhere:@"ANY dogs.name == 'Alfonso'"]` - Supports all normal operators for numeric and date types. Does not support NSData properties or `BEGINSWITH`, `ENDSWITH`, `CONTAINS` - and other options for string properties. -* Added support for querying for object equality in RLMObject and RLMArray properties (one-to-one and one-to-many relationships). - e.g. `[Person objectsWhere:@"dog == %@", myDog]` `[Person objectsWhere:@"ANY dogs == %@", myDog]` `[Person objectsWhere:@"ANY friends.dog == %@", dog]` - Only supports comparing objects for equality (i.e. ==) -* Added a helper method to RLMRealm to perform a block inside a transaction. -* OSX framework now supported in CocoaPods. - -### Bugfixes - -* Fixed Unicode support in property names and string contents (Chinese, Russian, etc.). Closing #612 and #604. -* Fixed bugs related to migration when properties are removed. -* Fixed keyed subscripting for standalone RLMObjects. -* Fixed bug related to double clicking on a .realm file to launch the Realm Browser (thanks to Dean Moore). - - -0.80.0 Release notes (2014-07-15) -============================================================= - -### API breaking changes - -* Rename migration methods to -migrateDefaultRealmWithBlock: and -migrateRealmAtPath:withBlock: -* Moved Realm specific query methods from RLMRealm to class methods on RLMObject (-allObjects: to +allObjectsInRealm: ect.) - -### Enhancements - -* Added +createInDefaultRealmWithObject: method to RLMObject. -* Added support for array and object literals when calling -createWithObject: and -initWithObject: variants. -* Added method -deleteObjects: to batch delete objects from a Realm -* Support for defining RLMObject models entirely in Swift (experimental, see known issues). -* RLMArrays in Swift support Sequence-style enumeration (for obj in array). -* Implemented -indexOfObject: for RLMArray - -### Known Issues for Swift-defined models - -* Properties other than String, NSData and NSDate require a default value in the model. This can be an empty (but typed) array for array properties. -* The previous caveat also implies that not all models defined in Objective-C can be used for object properties. Only Objective-C models with only implicit (i.e. primitives) or explicit default values can be used. However, any Objective-C model object can be used in a Swift array property. -* Array property accessors don't work until its parent object has been added to a realm. -* Realm-Bridging-Header.h is temporarily exposed as a public header. This is temporary and will be private again once rdar://17633863 is fixed. -* Does not leverage Swift generics and still uses RLM-prefix everywhere. This is coming in #549. - - -0.22.0 Release notes -============================================================= - -### API breaking changes - -* Rename schemaForObject: to schemaForClassName: on RLMSchema -* Removed -objects:where: and -objects:orderedBy:where: from RLMRealm -* Removed -indexOfObjectWhere:, -objectsWhere: and -objectsOrderedBy:where: from RLMArray -* Removed +objectsWhere: and +objectsOrderedBy:where: from RLMObject - -### Enhancements - -* New Xcode 6 project for experimental swift support. -* New Realm Editor app for reading and editing Realm db files. -* Added support for migrations. -* Added support for RLMArray properties on objects. -* Added support for creating in-memory default Realm. -* Added -objectsWithClassName:predicateFormat: and -objectsWithClassName:predicate: to RLMRealm -* Added -indexOfObjectWithPredicateFormat:, -indexOfObjectWithPredicate:, -objectsWithPredicateFormat:, -objectsWithPredi -* Added +objectsWithPredicateFormat: and +objectsWithPredicate: to RLMObject -* Now allows predicates comparing two object properties of the same type. - - -0.20.0 Release notes (2014-05-28) -============================================================= - -Completely rewritten to be much more object oriented. - -### API breaking changes - -* Everything - -### Enhancements - -* None. - -### Bugfixes - -* None. - - -0.11.0 Release notes (not released) -============================================================= - -The Objective-C API has been updated and your code will break! - -### API breaking changes - -* `RLMTable` objects can only be created with an `RLMRealm` object. -* Renamed `RLMContext` to `RLMTransactionManager` -* Renamed `RLMContextDidChangeNotification` to `RLMRealmDidChangeNotification` -* Renamed `contextWithDefaultPersistence` to `managerForDefaultRealm` -* Renamed `contextPersistedAtPath:` to `managerForRealmWithPath:` -* Renamed `realmWithDefaultPersistence` to `defaultRealm` -* Renamed `realmWithDefaultPersistenceAndInitBlock` to `defaultRealmWithInitBlock` -* Renamed `find:` to `firstWhere:` -* Renamed `where:` to `allWhere:` -* Renamed `where:orderBy:` to `allWhere:orderBy:` - -### Enhancements - -* Added `countWhere:` on `RLMTable` -* Added `sumOfColumn:where:` on `RLMTable` -* Added `averageOfColumn:where:` on `RLMTable` -* Added `minOfProperty:where:` on `RLMTable` -* Added `maxOfProperty:where:` on `RLMTable` -* Added `toJSONString` on `RLMRealm`, `RLMTable` and `RLMView` -* Added support for `NOT` operator in predicates -* Added support for default values -* Added validation support in `createInRealm:withObject:` - -### Bugfixes - -* None. - - -0.10.0 Release notes (2014-04-23) -============================================================= - -TightDB is now Realm! The Objective-C API has been updated -and your code will break! - -### API breaking changes - -* All references to TightDB have been changed to Realm. -* All prefixes changed from `TDB` to `RLM`. -* `TDBTransaction` and `TDBSmartContext` have merged into `RLMRealm`. -* Write transactions now take an optional rollback parameter (rather than needing to return a boolean). -* `addColumnWithName:` and variant methods now return the index of the newly created column if successful, `NSNotFound` otherwise. - -### Enhancements - -* `createTableWithName:columns:` has been added to `RLMRealm`. -* Added keyed subscripting for RLMTable's first column if column is of type RLMPropertyTypeString. -* `setRow:atIndex:` has been added to `RLMTable`. -* `RLMRealm` constructors now have variants that take an writable initialization block -* New object interface - tables created/retrieved using `tableWithName:objectClass:` return custom objects - -### Bugfixes - -* None. - - -0.6.0 Release notes (2014-04-11) -============================================================= - -### API breaking changes - -* `contextWithPersistenceToFile:error:` renamed to `contextPersistedAtPath:error:` in `TDBContext` -* `readWithBlock:` renamed to `readUsingBlock:` in `TDBContext` -* `writeWithBlock:error:` renamed to `writeUsingBlock:error:` in `TDBContext` -* `readTable:withBlock:` renamed to `readTable:usingBlock:` in `TDBContext` -* `writeTable:withBlock:error:` renamed to `writeTable:usingBlock:error:` in `TDBContext` -* `findFirstRow` renamed to `indexOfFirstMatchingRow` on `TDBQuery`. -* `findFirstRowFromIndex:` renamed to `indexOfFirstMatchingRowFromIndex:` on `TDBQuery`. -* Return `NSNotFound` instead of -1 when appropriate. -* Renamed `castClass` to `castToTytpedTableClass` on `TDBTable`. -* `removeAllRows`, `removeRowAtIndex`, `removeLastRow`, `addRow` and `insertRow` methods - on table now return void instead of BOOL. - -### Enhancements -* A `TDBTable` can now be queried using `where:` and `where:orderBy:` taking - `NSPredicate` and `NSSortDescriptor` as arguments. -* Added `find:` method on `TDBTable` to find first row matching predicate. -* `contextWithDefaultPersistence` class method added to `TDBContext`. Will create a context persisted - to a file in app/documents folder. -* `renameColumnWithIndex:to:` has been added to `TDBTable`. -* `distinctValuesInColumnWithIndex` has been added to `TDBTable`. -* `dateIsBetween::`, `doubleIsBetween::`, `floatIsBetween::` and `intIsBetween::` - have been added to `TDBQuery`. -* Column names in Typed Tables can begin with non-capital letters too. The generated `addX` - selector can look odd. For example, a table with one column with name `age`, - appending a new row will look like `[table addage:7]`. -* Mixed typed values are better validated when rows are added, inserted, - or modified as object literals. -* `addRow`, `insertRow`, and row updates can be done using objects - derived from `NSObject`. -* `where` has been added to `TDBView`and `TDBViewProtocol`. -* Adding support for "smart" contexts (`TDBSmartContext`). - -### Bugfixes - -* Modifications of a `TDBView` and `TDBQuery` now throw an exception in a readtransaction. - - -0.5.0 Release notes (2014-04-02) -============================================================= - -The Objective-C API has been updated and your code will break! -Of notable changes a fast interface has been added. -This interface includes specific methods to get and set values into Tightdb. -To use these methods import ``. - -### API breaking changes - -* `getTableWithName:` renamed to `tableWithName:` in `TDBTransaction`. -* `addColumnWithName:andType:` renamed to `addColumnWithName:type:` in `TDBTable`. -* `columnTypeOfColumn:` renamed to `columnTypeOfColumnWithIndex` in `TDBTable`. -* `columnNameOfColumn:` renamed to `nameOfColumnWithIndex:` in `TDBTable`. -* `addColumnWithName:andType:` renamed to `addColumnWithName:type:` in `TDBDescriptor`. -* Fast getters and setters moved from `TDBRow.h` to `TDBRowFast.h`. - -### Enhancements - -* Added `minDateInColumnWithIndex` and `maxDateInColumnWithIndex` to `TDBQuery`. -* Transactions can now be started directly on named tables. -* You can create dynamic tables with initial schema. -* `TDBTable` and `TDBView` now have a shared protocol so they can easier be used interchangeably. - -### Bugfixes - -* Fixed bug in 64 bit iOS when inserting BOOL as NSNumber. - - -0.4.0 Release notes (2014-03-26) -============================================================= - -### API breaking changes - -* Typed interface Cursor has now been renamed to Row. -* TDBGroup has been renamed to TDBTransaction. -* Header files are renamed so names match class names. -* Underscore (_) removed from generated typed table classes. -* TDBBinary has been removed; use NSData instead. -* Underscope (_) removed from generated typed table classes. -* Constructor for TDBContext has been renamed to contextWithPersistenceToFile: -* Table findFirstRow and min/max/sum/avg operations has been hidden. -* Table.appendRow has been renamed to addRow. -* getOrCreateTable on Transaction has been removed. -* set*:inColumnWithIndex:atRowIndex: methods have been prefixed with TDB -* *:inColumnWithIndex:atRowIndex: methods have been prefixed with TDB -* addEmptyRow on table has been removed. Use [table addRow:nil] instead. -* TDBMixed removed. Use id and NSObject instead. -* insertEmptyRow has been removed from table. Use insertRow:nil atIndex:index instead. - -#### Enhancements - -* Added firstRow, lastRow selectors on view. -* firstRow and lastRow on table now return nil if table is empty. -* getTableWithName selector added on group. -* getting and creating table methods on group no longer take error argument. -* [TDBQuery parent] and [TDBQuery subtable:] selectors now return self. -* createTable method added on Transaction. Throws exception if table with same name already exists. -* Experimental support for pinning transactions on Context. -* TDBView now has support for object subscripting. - -### Bugfixes - -* None. - - -0.3.0 Release notes (2014-03-14) -============================================================= - -The Objective-C API has been updated and your code will break! - -### API breaking changes - -* Most selectors have been renamed in the binding! -* Prepend TDB-prefix on all classes and types. - -### Enhancements - -* Return types and parameters changed from size_t to NSUInteger. -* Adding setObject to TightdbTable (t[2] = @[@1, @"Hello"] is possible). -* Adding insertRow to TightdbTable. -* Extending appendRow to accept NSDictionary. - -### Bugfixes - -* None. - - -0.2.0 Release notes (2014-03-07) -============================================================= - -The Objective-C API has been updated and your code will break! - -### API breaking changes - -* addRow renamed to addEmptyRow - -### Enhancements - -* Adding a simple class for version numbering. -* Adding get-version and set-version targets to build.sh. -* tableview now supports sort on column with column type bool, date and int -* tableview has method for checking the column type of a specified column -* tableview has method for getting the number of columns -* Adding methods getVersion, getCoreVersion and isAtLeast. -* Adding appendRow to TightdbTable. -* Adding object subscripting. -* Adding method removeColumn on table. - -### Bugfixes - -* None. diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/RLMArray.h b/Carthage/Build/watchOS/Realm.framework/Headers/RLMArray.h deleted file mode 100644 index c1fe14a..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/RLMArray.h +++ /dev/null @@ -1,364 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMObject, RLMRealm, RLMResults RLM_GENERIC_COLLECTION, RLMNotificationToken; - -/** - - RLMArray is the container type in Realm used to define to-many relationships. - - Unlike an NSArray, RLMArrays hold a single type, specified by the `objectClassName` property. - This is referred to in these docs as the “type” of the array. - - When declaring an RLMArray property, the type must be marked as conforming to a - protocol by the same name as the objects it should contain (see the - `RLM_ARRAY_TYPE` macro). RLMArray properties can also use Objective-C generics - if available. For example: - - RLM_ARRAY_TYPE(ObjectType) - ... - @property RLMArray *arrayOfObjectTypes; - - RLMArrays can be queried with the same predicates as RLMObject and RLMResults. - - RLMArrays cannot be created directly. RLMArray properties on RLMObjects are - lazily created when accessed, or can be obtained by querying a Realm. - - ### Key-Value Observing - - RLMArray supports array key-value observing on RLMArray properties on RLMObject - subclasses, and the `invalidated` property on RLMArray instances themselves is - key-value observing compliant when the RLMArray is attached to a persisted - RLMObject (RLMArrays on standalone RLMObjects will never become invalidated). - - Because RLMArrays are attached to the object which they are a property of, they - do not require using the mutable collection proxy objects from - `-mutableArrayValueForKey:` or KVC-compatible mutation methods on the containing - object. Instead, you can call the mutation methods on the RLMArray directly. - */ - -@interface RLMArray RLM_GENERIC_COLLECTION : NSObject - -#pragma mark - Properties - -/** - Number of objects in the array. - */ -@property (nonatomic, readonly, assign) NSUInteger count; - -/** - The class name (i.e. type) of the RLMObjects contained in this RLMArray. - */ -@property (nonatomic, readonly, copy) NSString *objectClassName; - -/** - The Realm in which this array is persisted. Returns nil for standalone arrays. - */ -@property (nonatomic, readonly, nullable) RLMRealm *realm; - -/** - Indicates if an array can no longer be accessed. - */ -@property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated; - -#pragma mark - Accessing Objects from an Array - -/** - Returns the object at the index specified. - - @param index The index to look up. - - @return An RLMObject of the type contained in this RLMArray. - */ -- (RLMObjectType)objectAtIndex:(NSUInteger)index; - -/** - Returns the first object in the array. - - Returns `nil` if called on an empty RLMArray. - - @return An RLMObject of the type contained in this RLMArray. - */ -- (nullable RLMObjectType)firstObject; - -/** - Returns the last object in the array. - - Returns `nil` if called on an empty RLMArray. - - @return An RLMObject of the type contained in this RLMArray. - */ -- (nullable RLMObjectType)lastObject; - - - -#pragma mark - Adding, Removing, and Replacing Objects in an Array - -/** - Adds an object to the end of the array. - - @warning This method can only be called during a write transaction. - - @param object An RLMObject of the type contained in this RLMArray. - */ -- (void)addObject:(RLMObjectArgument)object; - -/** - Adds an array of objects at the end of the array. - - @warning This method can only be called during a write transaction. - - @param objects An enumerable object such as NSArray or RLMResults which contains objects of the - same class as this RLMArray. - */ -- (void)addObjects:(id)objects; - -/** - Inserts an object at the given index. - - Throws an exception when the index exceeds the bounds of this RLMArray. - - @warning This method can only be called during a write transaction. - - @param anObject An RLMObject of the type contained in this RLMArray. - @param index The array index at which the object is inserted. - */ -- (void)insertObject:(RLMObjectArgument)anObject atIndex:(NSUInteger)index; - -/** - Removes an object at a given index. - - Throws an exception when the index exceeds the bounds of this RLMArray. - - @warning This method can only be called during a write transaction. - - @param index The array index identifying the object to be removed. - */ -- (void)removeObjectAtIndex:(NSUInteger)index; - -/** - Removes the last object in an RLMArray. - - @warning This method can only be called during a write transaction. -*/ -- (void)removeLastObject; - -/** - Removes all objects from an RLMArray. - - @warning This method can only be called during a write transaction. - */ -- (void)removeAllObjects; - -/** - Replaces an object at the given index with a new object. - - Throws an exception when the index exceeds the bounds of this RLMArray. - - @warning This method can only be called during a write transaction. - - @param index The array index of the object to be replaced. - @param anObject An object (of the same type as returned from the objectClassName selector). - */ -- (void)replaceObjectAtIndex:(NSUInteger)index withObject:(RLMObjectArgument)anObject; - -/** - Moves the object at the given source index to the given destination index. - - Throws an exception when the index exceeds the bounds of this RLMArray. - - @warning This method can only be called during a write transaction. - - @param sourceIndex The index of the object to be moved. - @param destinationIndex The index to which the object at `sourceIndex` should be moved. - */ -- (void)moveObjectAtIndex:(NSUInteger)sourceIndex toIndex:(NSUInteger)destinationIndex; - -/** - Exchanges the objects in the array at given indexes. - - Throws an exception when either index exceeds the bounds of this RLMArray. - - @warning This method can only be called during a write transaction. - - @param index1 The index of the object with which to replace the object at index `index2`. - @param index2 The index of the object with which to replace the object at index `index1`. - */ -- (void)exchangeObjectAtIndex:(NSUInteger)index1 withObjectAtIndex:(NSUInteger)index2; - -#pragma mark - Querying an Array - -/** - Gets the index of an object. - - Returns NSNotFound if the object is not found in this RLMArray. - - @param object An object (of the same type as returned from the objectClassName selector). - */ -- (NSUInteger)indexOfObject:(RLMObjectArgument)object; - -/** - Gets the index of the first object matching the predicate. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return Index of object or NSNotFound if the object is not found in this RLMArray. - */ -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Gets the index of the first object matching the predicate. - - @param predicate The predicate to filter the objects. - - @return Index of object or NSNotFound if the object is not found in this RLMArray. - */ -- (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate; - -/** - Get objects matching the given predicate in the RLMArray. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Get objects matching the given predicate in the RLMArray. - - @param predicate The predicate to filter the objects. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults RLM_GENERIC_RETURN*)objectsWithPredicate:(NSPredicate *)predicate; - -/** - Get a sorted RLMResults from an RLMArray - - @param property The property name to sort by. - @param ascending The direction to sort by. - - @return An RLMResults sorted by the specified property. - */ -- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending; - -/** - Get a sorted RLMResults from an RLMArray - - @param properties An array of `RLMSortDescriptor`s to sort by. - - @return An RLMResults sorted by the specified properties. - */ -- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingDescriptors:(NSArray *)properties; - -/// :nodoc: -- (RLMObjectType)objectAtIndexedSubscript:(NSUInteger)index; - -/// :nodoc: -- (void)setObject:(RLMObjectType)newValue atIndexedSubscript:(NSUInteger)index; - -#pragma mark - Notifications - -/** - Register a block to be called each time the RLMArray changes. - - The block will be asynchronously called with the initial array, and then - called again after each write transaction which changes the array or any - items contained in the array. You must retain the returned token for as long as - you want the block to continue to be called. To stop receiving updates, call - `-stop` on the token. - - The error parameter will always be `nil`, and is present only for compatiblity - with the RLMResults version of this method, which can potentially fail. - - @param block The block to be called each time the array changes. - @return A token which must be held for as long as you want notifications to be delivered. - */ -- (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMArray RLM_GENERIC_RETURN *array, NSError *))block RLM_WARN_UNUSED_RESULT; - -#pragma mark - Unavailable Methods - -/** - -[RLMArray init] is not available because RLMArrays cannot be created directly. - RLMArray properties on RLMObjects are lazily created when accessed, or can be obtained by querying a Realm. - */ -- (instancetype)init __attribute__((unavailable("RLMArrays cannot be created directly"))); - -/** - +[RLMArray new] is not available because RLMArrays cannot be created directly. - RLMArray properties on RLMObjects are lazily created when accessed, or can be obtained by querying a Realm. - */ -+ (instancetype)new __attribute__((unavailable("RLMArrays cannot be created directly"))); - -@end - -/** - An RLMSortDescriptor stores a property name and a sort order for use with - `sortedResultsUsingDescriptors:`. It is similar to NSSortDescriptor, but supports - only the subset of functionality which can be efficiently run by the query - engine. RLMSortDescriptor instances are immutable. - */ -@interface RLMSortDescriptor : NSObject - -#pragma mark - Properties - -/** - The name of the property which this sort descriptor orders results by. - */ -@property (nonatomic, readonly) NSString *property; - -/** - Whether this descriptor sorts in ascending or descending order. - */ -@property (nonatomic, readonly) BOOL ascending; - -#pragma mark - Methods - -/** - Returns a new sort descriptor for the given property name and order. - */ -+ (instancetype)sortDescriptorWithProperty:(NSString *)propertyName ascending:(BOOL)ascending; - -/** - Returns a copy of the receiver with the sort order reversed. - */ -- (instancetype)reversedSortDescriptor; - -@end - -/// :nodoc: -@interface RLMArray (Swift) -// for use only in Swift class definitions -- (instancetype)initWithObjectClassName:(NSString *)objectClassName; -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/RLMCollection.h b/Carthage/Build/watchOS/Realm.framework/Headers/RLMCollection.h deleted file mode 100644 index a1a4efb..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/RLMCollection.h +++ /dev/null @@ -1,184 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMRealm, RLMResults, RLMObject, RLMSortDescriptor, RLMNotificationToken; - -/** - A homogenous collection of `RLMObject`s like `RLMArray` or `RLMResults`. - */ -@protocol RLMCollection - -@required - -#pragma mark - Properties - -/** - Number of objects in the collection. - */ -@property (nonatomic, readonly, assign) NSUInteger count; - -/** - The class name (i.e. type) of the RLMObjects contained in this RLMCollection. - */ -@property (nonatomic, readonly, copy) NSString *objectClassName; - -/** - The Realm in which this collection is persisted. Returns nil for standalone collections. - */ -@property (nonatomic, readonly) RLMRealm *realm; - -#pragma mark - Accessing Objects from a Collection - -/** - Returns the object at the index specified. - - @param index The index to look up. - - @return An RLMObject of the type contained in this RLMCollection. - */ -- (id)objectAtIndex:(NSUInteger)index; - -/** - Returns the first object in the collection. - - Returns `nil` if called on an empty RLMCollection. - - @return An RLMObject of the type contained in this RLMCollection. - */ -- (nullable id)firstObject; - -/** - Returns the last object in the collection. - - Returns `nil` if called on an empty RLMCollection. - - @return An RLMObject of the type contained in this RLMCollection. - */ -- (nullable id)lastObject; - -#pragma mark - Querying a Collection - -/** - Gets the index of an object. - - Returns NSNotFound if the object is not found in this RLMCollection. - - @param object An object (of the same type as returned from the objectClassName selector). - */ -- (NSUInteger)indexOfObject:(RLMObject *)object; - -/** - Gets the index of the first object matching the predicate. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return Index of object or NSNotFound if the object is not found in this RLMCollection. - */ -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Gets the index of the first object matching the predicate. - - @param predicate The predicate to filter the objects. - - @return Index of object or NSNotFound if the object is not found in this RLMCollection. - */ -- (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate; - -/** - Get objects matching the given predicate in the RLMCollection. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults *)objectsWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (RLMResults *)objectsWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Get objects matching the given predicate in the RLMCollection. - - @param predicate The predicate to filter the objects. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults *)objectsWithPredicate:(NSPredicate *)predicate; - -/** - Get a sorted RLMResults from an RLMCollection. - - @param property The property name to sort by. - @param ascending The direction to sort by. - - @return An RLMResults sorted by the specified property. - */ -- (RLMResults *)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending; - -/** - Get a sorted RLMResults from an RLMCollection. - - @param properties An array of `RLMSortDescriptor`s to sort by. - - @return An RLMResults sorted by the specified properties. - */ -- (RLMResults *)sortedResultsUsingDescriptors:(NSArray RLM_GENERIC(RLMSortDescriptor *) *)properties; - -/// :nodoc: -- (id)objectAtIndexedSubscript:(NSUInteger)index; - -/** - Returns an NSArray containing the results of invoking `valueForKey:` using key on each of the collection's objects. - - @param key The name of the property. - - @return NSArray containing the results of invoking `valueForKey:` using key on each of the collection's objects. - */ -- (nullable id)valueForKey:(NSString *)key; - -/** - 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. - - @param value The object value. - @param key The name of the property. - */ -- (void)setValue:(nullable id)value forKey:(NSString *)key; - -#pragma mark - Notifications - -/** - Register a block to be called each time the collection changes. - - @param block The block to be called each time the collection changes. - @return A token which must be held for as long as you want notifications to be delivered. - */ -- (RLMNotificationToken *)addNotificationBlock:(void (^)(id collection))block RLM_WARN_UNUSED_RESULT; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/RLMConstants.h b/Carthage/Build/watchOS/Realm.framework/Headers/RLMConstants.h deleted file mode 100644 index 3befba1..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/RLMConstants.h +++ /dev/null @@ -1,131 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#pragma mark - Enums - -/** - Property types supported in Realm models. - - See [Realm Models](https://realm.io/docs/objc/latest/#models) - */ -// Make sure numbers match those in -typedef NS_ENUM(int32_t, RLMPropertyType) { - -#pragma mark - Primitive types - - /** Integer type: NSInteger, int, long, Int (Swift) */ - RLMPropertyTypeInt = 0, - /** Boolean type: BOOL, bool, Bool (Swift) */ - RLMPropertyTypeBool = 1, - /** Float type: float, Float (Swift) */ - RLMPropertyTypeFloat = 9, - /** Double type: double, Double (Swift) */ - RLMPropertyTypeDouble = 10, - -#pragma mark - Object types - - /** String type: NSString, String (Swift) */ - RLMPropertyTypeString = 2, - /** Data type: NSData */ - RLMPropertyTypeData = 4, - /** Any type: id, **not supported in Swift** */ - RLMPropertyTypeAny = 6, - /** Date type: NSDate */ - RLMPropertyTypeDate = 7, - -#pragma mark - Array/Linked object types - - /** Object type. See [Realm Models](https://realm.io/docs/objc/latest/#models) */ - RLMPropertyTypeObject = 12, - /** Array type. See [Realm Models](http://realms.io/docs/objc/latest/#models) */ - RLMPropertyTypeArray = 13, -}; - -/** - Enum representing all recoverable errors in Realm. - */ -typedef NS_ENUM(NSInteger, RLMError) { - /** Returned by RLMRealm if no other specific error is returned when a realm is opened. */ - RLMErrorFail = 1, - /** Returned by RLMRealm for any I/O related exception scenarios when a realm is opened. */ - RLMErrorFileAccess = 2, - /** Returned by RLMRealm if the user does not have permission to open or create - the specified file in the specified access mode when the realm is opened. */ - RLMErrorFilePermissionDenied = 3, - /** Returned by RLMRealm if the file already exists when a copy should be written. */ - RLMErrorFileExists = 4, - /** Returned by RLMRealm if no file was found when a realm was opened as - read-only or if the directory part of the specified path was not - found when a copy should be written. */ - RLMErrorFileNotFound = 5, - /** Returned by RLMRealm if a file format upgrade is required to open the file, but upgrades were explicilty disabled. */ - RLMErrorFileFormatUpgradeRequired = 6, - /** Returned by RLMRealm if the database file is currently open in another - process which cannot share with the current process due to an - architecture mismatch. */ - RLMErrorIncompatibleLockFile = 8, -}; - -#pragma mark - Constants - -#pragma mark - Notification Constants - -/** - Posted by RLMRealm when the data in the realm has changed. - - DidChange are posted after a realm has been refreshed to reflect a write - transaction, i.e. when an autorefresh occurs, `[RLMRealm refresh]` is - called, after an implicit refresh from `[RLMRealm beginWriteTransaction]`, - and after a local write transaction is committed. - */ -extern NSString * const RLMRealmRefreshRequiredNotification; - -/** - Posted by RLMRealm when a write transaction has been committed to an RLMRealm on - a different thread for the same file. This is not posted if - `[RLMRealm autorefresh]` is enabled or if the RLMRealm is - refreshed before the notifcation has a chance to run. - - Realms with autorefresh disabled should normally have a handler for this - notification which calls `[RLMRealm refresh]` after doing some work. - While not refreshing is allowed, it may lead to large Realm files as Realm has - to keep an extra copy of the data for the un-refreshed RLMRealm. - */ -extern NSString * const RLMRealmDidChangeNotification; - -#pragma mark - Other Constants - -/** Schema version used for uninitialized Realms */ -extern const uint64_t RLMNotVersioned; - -/** Error domain used in Realm. */ -extern NSString * const RLMErrorDomain; - -/** Key for name of Realm exceptions. */ -extern NSString * const RLMExceptionName; - -/** Key for Realm file version. */ -extern NSString * const RLMRealmVersionKey; - -/** Key for Realm core version. */ -extern NSString * const RLMRealmCoreVersionKey; - -/** Key for Realm invalidated property name. */ -extern NSString * const RLMInvalidatedKey; diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/RLMDefines.h b/Carthage/Build/watchOS/Realm.framework/Headers/RLMDefines.h deleted file mode 100644 index 73afc03..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/RLMDefines.h +++ /dev/null @@ -1,95 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2015 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMObject; - -#ifndef __has_feature -#define __has_feature(x) 0 -#endif - -#pragma mark - Generics - -#if __has_extension(objc_generics) -#define RLM_GENERIC(...) <__VA_ARGS__> -#define RLM_GENERIC_COLLECTION -#define RLM_GENERIC_RETURN -#define RLMObjectArgument RLMObjectType -#else -#define RLM_GENERIC(...) -#define RLM_GENERIC_COLLECTION -#define RLM_GENERIC_RETURN -typedef id RLMObjectType; -typedef RLMObject * RLMObjectArgument; -#endif - -#pragma mark - Nullability - -#if !__has_feature(nullability) -#ifndef __nullable -#define __nullable -#endif -#ifndef __nonnull -#define __nonnull -#endif -#ifndef __null_unspecified -#define __null_unspecified -#endif -#ifndef nullable -#define nullable -#endif -#ifndef nonnull -#define nonnull -#endif -#ifndef null_unspecified -#define null_unspecified -#endif -#endif - -#if defined(NS_ASSUME_NONNULL_BEGIN) && defined(NS_ASSUME_NONNULL_END) -#define RLM_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_BEGIN -#define RLM_ASSUME_NONNULL_END NS_ASSUME_NONNULL_END -#else -#define RLM_ASSUME_NONNULL_BEGIN -#define RLM_ASSUME_NONNULL_END -#endif - -#pragma mark - Escaping - -#if __has_attribute(noescape) -# define RLM_NOESCAPE __attribute__((noescape)) -#else -# define RLM_NOESCAPE -#endif - -#pragma mark - Unused Result - -#if __has_attribute(warn_unused_result) -# define RLM_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define RLM_WARN_UNUSED_RESULT -#endif - -#pragma mark - Swift Availability - -#if defined(NS_SWIFT_UNAVAILABLE) -# define RLM_SWIFT_UNAVAILABLE(msg) NS_SWIFT_UNAVAILABLE(msg) -#else -# define RLM_SWIFT_UNAVAILABLE(msg) -#endif diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/RLMMigration.h b/Carthage/Build/watchOS/Realm.framework/Headers/RLMMigration.h deleted file mode 100644 index 3eb9b67..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/RLMMigration.h +++ /dev/null @@ -1,107 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMSchema; -@class RLMArray; -@class RLMObject; - -/** -Provides both the old and new versions of an object in this Realm. Object properties can only be -accessed using keyed subscripting. - -@param oldObject Object in original RLMRealm (read-only). -@param newObject Object in migrated RLMRealm (read-write). -*/ -typedef void (^RLMObjectMigrationBlock)(RLMObject * __nullable oldObject, RLMObject * __nullable newObject); - -/** - RLMMigration is the object passed into a user defined RLMMigrationBlock when updating the version - of an RLMRealm instance. - - This object provides access to the RLMSchema current to this migration. - */ -@interface RLMMigration : NSObject - -#pragma mark - Properties - -/** - Get the old RLMSchema for the migration. This is the schema which describes the RLMRealm before the - migration is applied. - */ -@property (nonatomic, readonly) RLMSchema *oldSchema; - -/** - Get the new RLMSchema for the migration. This is the schema which describes the RLMRealm after applying - a migration. - */ -@property (nonatomic, readonly) RLMSchema *newSchema; - - -#pragma mark - Altering Objects during a Migration - -/** - Enumerates objects of a given type in this Realm, providing both the old and new versions of each object. - Objects properties can be accessed using keyed subscripting. - - @param className The name of the RLMObject class to enumerate. - - @warning All objects returned are of a type specific to the current migration and should not be casted - to className. Instead you should access them as RLMObjects and use keyed subscripting to access - properties. - */ -- (void)enumerateObjects:(NSString *)className block:(RLMObjectMigrationBlock)block; - -/** - Create an RLMObject of type `className` in the Realm being migrated. - - @param className The name of the RLMObject class to create. - @param value The value used to populate the created object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. - */ --(RLMObject *)createObject:(NSString *)className withValue:(id)value; - -/** - Delete an object from a Realm during a migration. This can be called within `enumerateObjects:block:`. - - @param object Object to be deleted from the Realm being migrated. - */ -- (void)deleteObject:(RLMObject *)object; - -/** - Deletes the data for the class with the given name. - This deletes all objects of the given class, and if the RLMObject subclass no longer exists in your program, - cleans up any remaining metadata for the class in the Realm file. - - @param name The name of the RLMObject class to delete. - - @return whether there was any data to delete. - */ -- (BOOL)deleteDataForClassName:(NSString *)name; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/RLMObject.h b/Carthage/Build/watchOS/Realm.framework/Headers/RLMObject.h deleted file mode 100644 index 0047be1..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/RLMObject.h +++ /dev/null @@ -1,425 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMRealm; -@class RLMResults; -@class RLMObjectSchema; - -/** - - In Realm you define your model classes by subclassing `RLMObject` and adding properties to be persisted. - You then instantiate and use your custom subclasses instead of using the `RLMObject` class directly. - - // Dog.h - @interface Dog : RLMObject - @property NSString *name; - @property BOOL adopted; - @end - - // Dog.m - @implementation Dog - @end //none needed - - ### Supported property types - - - `NSString` - - `NSInteger`, `int`, `long`, `float`, and `double` - - `BOOL` or `bool` - - `NSDate` - - `NSData` - - `NSNumber`, where X is one of RLMInt, RLMFloat, RLMDouble or RLMBool, for optional number properties - - `RLMObject` subclasses, so you can have many-to-one relationships. - - `RLMArray`, where X is an `RLMObject` subclass, so you can have many-to-many relationships. - - ### Querying - - You can query an object directly via the class methods: `allObjects`, `objectsWhere:`, and `objectsWithPredicate:`. - These methods allow you to easily query a custom subclass for instances of this class in the - default Realm. To search in a Realm other than the default Realm use the interface on an RLMRealm instance. - - ### Relationships - - See our [Cocoa guide](https://realm.io/docs/objc/latest#relationships) for more details. - - ### Key-Value Observing - - All `RLMObject` properties (including properties you create in subclasses) are - [Key-Value Observing compliant](https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/KeyValueObserving/KeyValueObserving.html), - except for `realm` and `objectSchema`. There are several Realm-specific things - to keep in mind when observing Realm objects: - - 1. Unlike `NSMutableArray` properties, `RLMArray` properties do not require - using the proxy object returned from `-mutableArrayValueForKey:`, or defining - KVC mutation methods on the containing class. You can simply call methods on - the RLMArray directly and the changes will be observed by the containing - object. - 2. Standalone `RLMObjects` cannot be added to a Realm while they have any - observed properties. - 3. Modifying persisted `RLMObjects` in `-observeValueForKeyPath:ofObject:change:context:` - is problematic. Properties may change when the Realm is not in a write - transaction (for example, when `-[RLMRealm refresh]` is called after changes - are made on a different thread), and notifications sent prior to the change - being applied (when `NSKeyValueObservingOptionPrior` is used) may be sent at - times when you *cannot* begin a write transaction. - */ - -@interface RLMObject : RLMObjectBase - -#pragma mark - Creating & Initializing Objects - -/** - Initialize a standalone RLMObject - - Initialize an unpersisted instance of this object. - Call addObject: on an RLMRealm to add standalone object to a realm. - - @see [RLMRealm addObject:]: - */ -- (instancetype)init NS_DESIGNATED_INITIALIZER; - - -/** - Initialize a standalone RLMObject with values from an NSArray or NSDictionary - - Initialize an unpersisted instance of this object. - Call addObject: on an RLMRealm to add standalone object to a realm. - - @see [RLMRealm addObject:]: - */ -- (instancetype)initWithValue:(id)value NS_DESIGNATED_INITIALIZER; - - -/** - Helper to return the class name for an RLMObject subclass. - - @warning Do not override. Realm relies on this method returning the exact class - name. - - @return The class name for the model class. - */ -+ (NSString *)className; - -/** - Create an RLMObject in the default Realm with a given value. - - Creates an instance of this object and adds it to the default Realm populating - the object with the given value. - - If nested objects are included in the argument, `createInDefaultRealmWithValue:` will be called - on them. - - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. - - @see defaultPropertyValues - */ -+ (instancetype)createInDefaultRealmWithValue:(id)value; - -/** - Create an RLMObject in a Realm with a given object. - - Creates an instance of this object and adds it to the given Realm populating - the object with the given object. - - If nested objects are included in the argument, `createInRealm:withValue:` will be called - on them. - - @param realm The Realm in which this object is persisted. - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. - - @see defaultPropertyValues - */ -+ (instancetype)createInRealm:(RLMRealm *)realm withValue:(id)value; - -/** - Create or update an RLMObject in the default Realm with a given object. - - This method can only be called on object types with a primary key defined. If there is already - an object with the same primary key value in the default RLMRealm its values are updated and the object - is returned. Otherwise this creates and populates a new instance of this object in the default Realm. - - If nested objects are included in the argument, `createOrUpdateInDefaultRealmWithValue:` will be - called on them if have a primary key (`createInDefaultRealmWithValue:` otherwise). - - This is a no-op if the argument is an RLMObject of the same type already backed by the target realm. - - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. - - @see defaultPropertyValues, primaryKey - */ -+ (instancetype)createOrUpdateInDefaultRealmWithValue:(id)value; - -/** - Create or update an RLMObject with a given object. - - This method can only be called on object types with a primary key defined. If there is already - an object with the same primary key value in the provided RLMRealm its values are updated and the object - is returned. Otherwise this creates and populates a new instance of this object in the provided Realm. - - If nested objects are included in the argument, `createOrUpdateInRealm:withValue:` will be - called on them if have a primary key (`createInRealm:withValue:` otherwise). - - This is a no-op if the argument is an RLMObject of the same type already backed by the target realm. - - @param realm The Realm in which this object is persisted. - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model. - - @see defaultPropertyValues, primaryKey - */ -+ (instancetype)createOrUpdateInRealm:(RLMRealm *)realm withValue:(id)value; - -#pragma mark - Properties - -/** - The Realm in which this object is persisted. Returns nil for standalone objects. - */ -@property (nonatomic, readonly, nullable) RLMRealm *realm; - -/** - The ObjectSchema which lists the persisted properties for this object. - */ -@property (nonatomic, readonly) RLMObjectSchema *objectSchema; - -/** - Indicates if an object can no longer be accessed. - - An object can no longer be accessed if the object has been deleted from the containing `realm` or - if `invalidate` is called on the containing `realm`. - */ -@property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated; - - -#pragma mark - Customizing your Objects - -/** - Return an array of property names for properties which should be indexed. Only supported - for string and int properties. - @return NSArray of property names. - */ -+ (NSArray RLM_GENERIC(NSString *) *)indexedProperties; - -/** - Implement to indicate the default values to be used for each property. - - @return NSDictionary mapping property names to their default values. - */ -+ (nullable NSDictionary *)defaultPropertyValues; - -/** - Implement to designate a property as the primary key for an RLMObject subclass. Only properties of - type RLMPropertyTypeString and RLMPropertyTypeInt can be designated as the primary key. Primary key - properties enforce uniqueness for each value whenever the property is set which incurs some overhead. - Indexes are created automatically for primary key properties. - - @return Name of the property designated as the primary key. - */ -+ (nullable NSString *)primaryKey; - -/** - Implement to return an array of property names to ignore. These properties will not be persisted - and are treated as transient. - - @return NSArray of property names to ignore. - */ -+ (nullable NSArray RLM_GENERIC(NSString *) *)ignoredProperties; - -/** - Implement to return an array of property names that should not allow storing nil. - - By default, all properties of a type that support storing nil are considered optional properties. - To require that an object in a Realm always have a non-nil value for a property, - add the name of the property to the array returned from this method. - - Currently Object properties cannot be required. Array and NSNumber properties - can, but it makes little sense to do so: arrays do not support storing nil, and - if you want a non-optional number you should instead use the primitive type. - - @return NSArray of property names that are required. - */ -+ (NSArray RLM_GENERIC(NSString *) *)requiredProperties; - - -#pragma mark - Getting & Querying Objects from the Default Realm - -/** - Get all objects of this type from the default Realm. - - @return An RLMResults of all objects of this type in the default Realm. - */ -+ (RLMResults *)allObjects; - -/** - Get objects matching the given predicate for this type from the default Realm. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return An RLMResults of objects of the subclass type in the default Realm that match the given predicate - */ -+ (RLMResults *)objectsWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -+ (RLMResults *)objectsWhere:(NSString *)predicateFormat args:(va_list)args; - - -/** - Get objects matching the given predicate for this type from the default Realm. - - @param predicate The predicate to filter the objects. - - @return An RLMResults of objects of the subclass type in the default Realm that match the given predicate - */ -+ (RLMResults *)objectsWithPredicate:(nullable NSPredicate *)predicate; - -/** - Get the single object with the given primary key from the default Realm. - - Returns the object from the default Realm which has the given primary key, or - `nil` if the object does not exist. This is slightly faster than the otherwise - equivalent `[[SubclassName objectsWhere:@"primaryKeyPropertyName = %@", key] firstObject]`. - - This method requires that `primaryKey` be overridden on the receiving subclass. - - @return An object of the subclass type or nil if an object with the given primary key does not exist. - @see -primaryKey - */ -+ (nullable instancetype)objectForPrimaryKey:(nullable id)primaryKey; - - -#pragma mark - Querying Specific Realms - -/** - Get all objects of this type from the specified Realm. - - @param realm The Realm instance to query. - - @return An RLMResults of all objects of this type in the specified Realm. - */ -+ (RLMResults *)allObjectsInRealm:(RLMRealm *)realm; - -/** - Get objects matching the given predicate for this type from the specified Realm. - - @param predicateFormat The predicate format string which can accept variable arguments. - @param realm The Realm instance to query. - - @return An RLMResults of objects of the subclass type in the specified Realm that match the given predicate - */ -+ (RLMResults *)objectsInRealm:(RLMRealm *)realm where:(NSString *)predicateFormat, ...; - -/// :nodoc: -+ (RLMResults *)objectsInRealm:(RLMRealm *)realm where:(NSString *)predicateFormat args:(va_list)args; - -/** - Get objects matching the given predicate for this type from the specified Realm. - - @param predicate The predicate to filter the objects. - @param realm The Realm instance to query. - - @return An RLMResults of objects of the subclass type in the specified Realm that match the given predicate - */ -+ (RLMResults *)objectsInRealm:(RLMRealm *)realm withPredicate:(nullable NSPredicate *)predicate; - -/** - Get the single object with the given primary key from the specified Realm. - - Returns the object from the specified Realm which has the given primary key, or - `nil` if the object does not exist. This is slightly faster than the otherwise - equivalent `[[SubclassName objectsInRealm:realm where:@"primaryKeyPropertyName = %@", key] firstObject]`. - - This method requires that `primaryKey` be overridden on the receiving subclass. - - @return An object of the subclass type or nil if an object with the given primary key does not exist. - @see -primaryKey - */ -+ (nullable instancetype)objectInRealm:(RLMRealm *)realm forPrimaryKey:(nullable id)primaryKey; - -#pragma mark - Other Instance Methods - -/** - Get an `NSArray` of objects of type `className` which have this object as the given property value. This can - be used to get the inverse relationship value for `RLMObject` and `RLMArray` properties. - - @param className The type of object on which the relationship to query is defined. - @param property The name of the property which defines the relationship. - - @return An NSArray of objects of type `className` which have this object as their value for the `property` property. - */ -- (NSArray *)linkingObjectsOfClass:(NSString *)className forProperty:(NSString *)property; - -/** - Returns YES if another RLMObject points to the same object in an RLMRealm. For RLMObject types - with a primary, key, `isEqual:` is overridden to use this method (along with a corresponding - implementation for `hash`. - - @param object The object to compare to. - - @return YES if the object represents the same object in the same RLMRealm. - */ -- (BOOL)isEqualToObject:(RLMObject *)object; - -#pragma mark - Dynamic Accessors - -/// :nodoc: -- (nullable id)objectForKeyedSubscript:(NSString *)key; - -/// :nodoc: -- (void)setObject:(nullable id)obj forKeyedSubscript:(NSString *)key; - -@end - -#pragma mark - RLMArray Property Declaration - -/** - Properties on RLMObjects of type RLMArray must have an associated type. A type is associated - with an RLMArray property by defining a protocol for the object type which the RLMArray will - hold. To define the protocol for an object you can use the macro RLM_ARRAY_TYPE: - - RLM_ARRAY_TYPE(ObjectType) - ... - @property RLMArray *arrayOfObjectTypes; - */ -#define RLM_ARRAY_TYPE(RLM_OBJECT_SUBCLASS)\ -@protocol RLM_OBJECT_SUBCLASS \ -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/RLMObjectBase.h b/Carthage/Build/watchOS/Realm.framework/Headers/RLMObjectBase.h deleted file mode 100644 index 739e0f0..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/RLMObjectBase.h +++ /dev/null @@ -1,42 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMRealm; -@class RLMSchema; -@class RLMObjectSchema; - -/// :nodoc: -@interface RLMObjectBase : NSObject - -@property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated; - -- (instancetype)init; - -+ (NSString *)className; - -// Returns whether the class is included in the default set of classes persisted in a Realm. -+ (BOOL)shouldIncludeInDefaultSchema; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/RLMObjectBase_Dynamic.h b/Carthage/Build/watchOS/Realm.framework/Headers/RLMObjectBase_Dynamic.h deleted file mode 100644 index 247bdf1..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/RLMObjectBase_Dynamic.h +++ /dev/null @@ -1,84 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMObjectSchema, RLMRealm; - -/** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to retrieve `realm` via `RLMObject`. - - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - - @return The Realm in which this object is persisted. Returns nil for standalone objects. - */ -FOUNDATION_EXTERN RLMRealm *RLMObjectBaseRealm(RLMObjectBase *object); - -/** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to retrieve `objectSchema` via `RLMObject`. - - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - - @return The ObjectSchema which lists the persisted properties for this object. - */ -FOUNDATION_EXTERN RLMObjectSchema *RLMObjectBaseObjectSchema(RLMObjectBase *object); - -/** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to retrieve the linking objects via `RLMObject`. - - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - @param className The type of object on which the relationship to query is defined. - @param property The name of the property which defines the relationship. - - @return An NSArray of objects of type `className` which have this object as their value for the `property` property. - */ -FOUNDATION_EXTERN NSArray *RLMObjectBaseLinkingObjectsOfClass(RLMObjectBase *object, NSString *className, NSString *property); - -/** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to retrieve key values via `RLMObject`. - - @warning Will throw `NSUndefinedKeyException` if key is not present on the object - - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - @param key The name of the property - - @return the object for the property requested - */ -FOUNDATION_EXTERN id RLMObjectBaseObjectForKeyedSubscript(RLMObjectBase *object, NSString *key); - -/** - This function is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to set key values via `RLMObject`. - - @warning Will throw `NSUndefinedKeyException` if key is not present on the object - - @param object an RLMObjectBase obtained via a Swift Object or RLMObject - @param key The name of the property - @param obj The object to set as the value of the key - */ -FOUNDATION_EXTERN void RLMObjectBaseSetObjectForKeyedSubscript(RLMObjectBase *object, NSString *key, id obj); - diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/RLMObjectSchema.h b/Carthage/Build/watchOS/Realm.framework/Headers/RLMObjectSchema.h deleted file mode 100644 index 3aa15d7..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/RLMObjectSchema.h +++ /dev/null @@ -1,73 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMProperty; - -/** - This class represents Realm model object schemas. - - When using Realm, RLMObjectSchema objects allow performing migrations and - introspecting the database's schema. - - Object schemas map to tables in the core database. - */ -@interface RLMObjectSchema : NSObject - -#pragma mark - Properties - -/** - Array of persisted RLMProperty objects for an object. - - @see RLMProperty - */ -@property (nonatomic, readonly, copy) NSArray RLM_GENERIC(RLMProperty *) *properties; - -/** - The name of the class this schema describes. - */ -@property (nonatomic, readonly) NSString *className; - -/** - The property which is the primary key for this object (if any). - */ -@property (nonatomic, readonly, nullable) RLMProperty *primaryKeyProperty; - -#pragma mark - Methods - -/** - Retrieve an RLMProperty object by name. - - @param propertyName The property's name. - - @return RLMProperty object or nil if there is no property with the given name. - */ -- (nullable RLMProperty *)objectForKeyedSubscript:(id )propertyName; - -/** - Returns YES if equal to objectSchema -*/ -- (BOOL)isEqualToObjectSchema:(RLMObjectSchema *)objectSchema; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/RLMPlatform.h b/Carthage/Build/watchOS/Realm.framework/Headers/RLMPlatform.h deleted file mode 100644 index 6f3a2dd..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/RLMPlatform.h +++ /dev/null @@ -1,22 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#if !TARGET_OS_IPHONE -#error Attempting to use Realm's iOS framework in an OSX project. -#endif - diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/RLMProperty.h b/Carthage/Build/watchOS/Realm.framework/Headers/RLMProperty.h deleted file mode 100644 index 2f61020..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/RLMProperty.h +++ /dev/null @@ -1,95 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -/// :nodoc: -@protocol RLMInt -@end - -/// :nodoc: -@protocol RLMBool -@end - -/// :nodoc: -@protocol RLMDouble -@end - -/// :nodoc: -@protocol RLMFloat -@end - -/// :nodoc: -@interface NSNumber () -@end - -/** - This class models properties persisted to Realm in an RLMObjectSchema. - - When using Realm, RLMProperty objects allow performing migrations and - introspecting the database's schema. - - These properties map to columns in the core database. - */ -@interface RLMProperty : NSObject - -#pragma mark - Properties - -/** - Property name. - */ -@property (nonatomic, readonly) NSString *name; - -/** - Property type. - - @see RLMPropertyType - */ -@property (nonatomic, readonly) RLMPropertyType type; - -/** - Indicates if this property is indexed. - - @see RLMObject - */ -@property (nonatomic, readonly) BOOL indexed; - -/** - Object class name - specify object types for RLMObject and RLMArray properties. - */ -@property (nonatomic, readonly, copy, nullable) NSString *objectClassName; - -/** - Whether this property is optional. - */ -@property (nonatomic, readonly) BOOL optional; - -#pragma mark - Methods - -/** - Returns YES if property objects are equal. - */ -- (BOOL)isEqualToProperty:(RLMProperty *)property; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/RLMRealm.h b/Carthage/Build/watchOS/Realm.framework/Headers/RLMRealm.h deleted file mode 100644 index 0672725..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/RLMRealm.h +++ /dev/null @@ -1,519 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -@class RLMRealmConfiguration, RLMObject, RLMSchema, RLMMigration, RLMNotificationToken; - -RLM_ASSUME_NONNULL_BEGIN - -/** - An RLMRealm instance (also referred to as "a realm") represents a Realm - database. - - Realms can either be stored on disk (see +[RLMRealm realmWithPath:]) or in - memory (see RLMRealmConfiguration). - - RLMRealm instances are cached internally, and constructing equivalent RLMRealm - objects (with the same path or identifier) multiple times on a single thread - within a single iteration of the run loop will normally return the same - RLMRealm object. If you specifically want to ensure a RLMRealm object is - destroyed (for example, if you wish to open a realm, check some property, and - then possibly delete the realm file and re-open it), place the code which uses - the realm within an `@autoreleasepool {}` and ensure you have no other - strong references to it. - - @warning RLMRealm instances are not thread safe and can not be shared across - threads or dispatch queues. You must call this method on each thread you want - to interact with the realm on. For dispatch queues, this means that you must - call it in each block which is dispatched, as a queue is not guaranteed to run - on a consistent thread. - */ - -@interface RLMRealm : NSObject - -#pragma mark - Creating & Initializing a Realm - -/** - Obtains an instance of the default Realm. - - The default Realm is used by the `RLMObject` class methods - which do not take a `RLMRealm` parameter, but is otherwise not special. The - default Realm is persisted as default.realm under the Documents directory of - your Application on iOS, and in your application's Application Support - directory on OS X. - - The default Realm is created using the default `RLMRealmConfiguration`, which - can be changed via `+[RLMRealmConfiguration setDefaultConfiguration:]`. - - @return The default `RLMRealm` instance for the current thread. - */ -+ (instancetype)defaultRealm; - -/** - Obtains an `RLMRealm` instance with the given configuration. - - @param configuration The configuration for the realm. - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. - - @return An `RLMRealm` instance. - */ -+ (nullable instancetype)realmWithConfiguration:(RLMRealmConfiguration *)configuration error:(NSError **)error; - -/** - Obtains an `RLMRealm` instance persisted at a specific file path. - - @param path Path to the file you want the data saved in. - - @return An `RLMRealm` instance. - */ -+ (instancetype)realmWithPath:(NSString *)path; - -/** - Path to the file where this Realm is persisted. - */ -@property (nonatomic, readonly) NSString *path; - -/** - Indicates if this Realm was opened in read-only mode. - */ -@property (nonatomic, readonly, getter = isReadOnly) BOOL readOnly; - -/** - The RLMSchema used by this RLMRealm. - */ -@property (nonatomic, readonly, null_unspecified) RLMSchema *schema; - -/** - Indicates if this Realm is currently in a write transaction. - - @warning Wrapping mutating operations in a write transaction if this property returns `NO` - may cause a large number of write transactions to be created, which could negatively - impact Realm's performance. Always prefer performing multiple mutations in a single - transaction when possible. - */ -@property (nonatomic, readonly) BOOL inWriteTransaction; - -/** - Returns the `RLMRealmConfiguration` that was used to create this `RLMRealm` instance. - */ -@property (nonatomic, readonly) RLMRealmConfiguration *configuration; - -/** - Indicates if this Realm contains any objects. - */ -@property (nonatomic, readonly) BOOL isEmpty; - -#pragma mark - Notifications - -/// Block to run when the data in a Realm was modified. -typedef void (^RLMNotificationBlock)(NSString *notification, RLMRealm *realm); - -#pragma mark - Receiving Notification when a Realm Changes - -/** - Add a notification handler for changes in this RLMRealm. - - Notification handlers are called after each write transaction is committed, - either on the current thread or other threads. The block is called on the same - thread as they were added on, and can only be added on threads which are - currently within a run loop. Unless you are specifically creating and running a - run loop on a background thread, this normally will only be the main thread. - - The block has the following definition: - - typedef void(^RLMNotificationBlock)(NSString *notification, RLMRealm *realm); - - It receives the following parameters: - - - `NSString` \***notification**: The name of the incoming notification. See - RLMRealmNotification for information on what - notifications are sent. - - `RLMRealm` \***realm**: The realm for which this notification occurred - - @param block A block which is called to process RLMRealm notifications. - - @return A token object which must be stored as long as you wish to continue - receiving change notifications. - */ -- (RLMNotificationToken *)addNotificationBlock:(RLMNotificationBlock)block RLM_WARN_UNUSED_RESULT; - -/** - Remove a previously registered notification handler using the token returned - from `-addNotificationBlock:` - - @param notificationToken The token returned from `-addNotificationBlock:` - corresponding to the notification block to remove. - */ -- (void)removeNotification:(RLMNotificationToken *)notificationToken; - -#pragma mark - Transactions - - -#pragma mark - Writing to a Realm - -/** - Begins a write transaction in an `RLMRealm`. - - Only one write transaction can be open at a time. Write transactions cannot be - nested, and trying to begin a write transaction on a `RLMRealm` which is - already in a write transaction will throw an exception. Calls to - `beginWriteTransaction` from `RLMRealm` instances in other threads will block - until the current write transaction completes. - - Before beginning the write transaction, `beginWriteTransaction` updates the - `RLMRealm` to the latest Realm version, as if refresh was called, and - generates notifications if applicable. This has no effect if the `RLMRealm` - was already up to date. - - It is rarely a good idea to have write transactions span multiple cycles of - the run loop, but if you do wish to do so you will need to ensure that the - `RLMRealm` in the write transaction is kept alive until the write transaction - is committed. - */ -- (void)beginWriteTransaction; - -/** - Commits all write operations in the current write transaction, and ends the - transaction. - - @warning This method can only be called during a write transaction. - */ -- (void)commitWriteTransaction RLM_SWIFT_UNAVAILABLE(""); - -/** - Commits all write operations in the current write transaction, and ends the - transaction. - - @warning This method can only be called during a write transaction. - - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. - - @return Whether the transaction succeeded. - */ -- (BOOL)commitWriteTransaction:(NSError **)error; - -/** - Reverts all writes made in the current write transaction and ends the transaction. - - This rolls back all objects in the Realm to the state they were in at the - beginning of the write transaction, and then ends the transaction. - - This restores the data for deleted objects, but does not revive invalidated - object instances. Any `RLMObject`s which were added to the Realm will be - invalidated rather than switching back to standalone objects. - Given the following code: - - ObjectType *oldObject = [[ObjectType objectsWhere:@"..."] firstObject]; - ObjectType *newObject = [[ObjectType alloc] init]; - - [realm beginWriteTransaction]; - [realm addObject:newObject]; - [realm deleteObject:oldObject]; - [realm cancelWriteTransaction]; - - Both `oldObject` and `newObject` will return `YES` for `isInvalidated`, - but re-running the query which provided `oldObject` will once again return - the valid object. - - @warning This method can only be called during a write transaction. - */ -- (void)cancelWriteTransaction; - -/** - Helper to perform a block within a transaction. - */ -- (void)transactionWithBlock:(RLM_NOESCAPE void(^)(void))block RLM_SWIFT_UNAVAILABLE(""); - -/** - Performs actions contained within the given block inside a write transation. - - Write transactions cannot be nested, and trying to execute a write transaction - on a `RLMRealm` which is already in a write transaction will throw an - exception. Calls to `transactionWithBlock:` from `RLMRealm` instances in other - threads will block until the current write transaction completes. - - Before beginning the write transaction, `transactionWithBlock:` updates the - `RLMRealm` to the latest Realm version, as if refresh was called, and - generates notifications if applicable. This has no effect if the `RLMRealm` - was already up to date. - - @param block The block to perform. - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. - - @return Whether the transaction succeeded. - */ -- (BOOL)transactionWithBlock:(RLM_NOESCAPE void(^)(void))block error:(NSError **)error; - -/** - Update an `RLMRealm` and outstanding objects to point to the most recent data for this `RLMRealm`. - - @return Whether the realm had any updates. Note that this may return YES even if no data has actually changed. - */ -- (BOOL)refresh; - -/** - Set to YES to automatically update this Realm when changes happen in other threads. - - If set to YES (the default), changes made on other threads will be reflected - in this Realm on the next cycle of the run loop after the changes are - committed. If set to NO, you must manually call `-refresh` on the Realm to - update it to get the latest version. - - Note that by default, background threads do not have an active run loop and you - will need to manually call `-refresh` in order to update to the latest version, - even if `autorefresh` is set to `true`. - - Even with this enabled, you can still call `-refresh` at any time to update the - Realm before the automatic refresh would occur. - - Notifications are sent when a write transaction is committed whether or not - this is enabled. - - Disabling this on an `RLMRealm` without any strong references to it will not - have any effect, and it will switch back to YES the next time the `RLMRealm` - object is created. This is normally irrelevant as it means that there is - nothing to refresh (as persisted `RLMObject`s, `RLMArray`s, and `RLMResults` have strong - references to the containing `RLMRealm`), but it means that setting - `RLMRealm.defaultRealm.autorefresh = NO` in - `application:didFinishLaunchingWithOptions:` and only later storing Realm - objects will not work. - - Defaults to YES. - */ -@property (nonatomic) BOOL autorefresh; - -/** - Write a compacted copy of the RLMRealm to the given path. - - The destination file cannot already exist. - - Note that if this is called from within a write transaction it writes the - *current* data, and not data when the last write transaction was committed. - - @param path Path to save the Realm to. - @param error On input, a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information. - @return YES if the realm was copied successfully. Returns NO if an error occurred. -*/ -- (BOOL)writeCopyToPath:(NSString *)path error:(NSError **)error; - -/** - Write an encrypted and compacted copy of the RLMRealm to the given path. - - The destination file cannot already exist. - - Note that if this is called from within a write transaction it writes the - *current* data, and not data when the last write transaction was committed. - - @param path Path to save the Realm to. - @param key 64-byte encryption key to encrypt the new file with - @param error On input, a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information. - @return YES if the realm was copied successfully. Returns NO if an error occurred. -*/ -- (BOOL)writeCopyToPath:(NSString *)path encryptionKey:(NSData *)key error:(NSError **)error; - -/** - Invalidate all RLMObjects and RLMResults read from this Realm. - - An RLMRealm holds a read lock on the version of the data accessed by it, so - that changes made to the Realm on different threads do not modify or delete the - data seen by this RLMRealm. Calling this method releases the read lock, - allowing the space used on disk to be reused by later write transactions rather - than growing the file. This method should be called before performing long - blocking operations on a background thread on which you previously read data - from the Realm which you no longer need. - - All `RLMObject`, `RLMResults` and `RLMArray` instances obtained from this - `RLMRealm` on the current thread are invalidated, and can not longer be used. - The `RLMRealm` itself remains valid, and a new read transaction is implicitly - begun the next time data is read from the Realm. - - Calling this method multiple times in a row without reading any data from the - Realm, or before ever reading any data from the Realm is a no-op. This method - cannot be called on a read-only Realm. - */ -- (void)invalidate; - -#pragma mark - Accessing Objects - - -#pragma mark - Adding and Removing Objects from a Realm - -/** - Adds an object to be persisted in this Realm. - - Once added, this object can be retrieved using the `objectsWhere:` selectors - on `RLMRealm` and on subclasses of `RLMObject`. When added, all (child) - relationships referenced by this object will also be added to the Realm if they are - not already in it. If the object or any related objects already belong to a - different Realm an exception will be thrown. Use - `-[RLMObject createInRealm:withObject]` to insert a copy of a persisted object - into a different Realm. - - The object to be added must be valid and cannot have been previously deleted - from a Realm (i.e. `isInvalidated`) must be false. - - @warning This method can only be called during a write transaction. - - @param object Object to be added to this Realm. - */ -- (void)addObject:(RLMObject *)object; - -/** - Adds objects in the given array to be persisted in this Realm. - - This is the equivalent of `addObject:` except for an array of objects. - - @warning This method can only be called during a write transaction. - - @param array An enumerable object such as NSArray or RLMResults which contains objects to be added to - this Realm. - - @see addObject: - */ -- (void)addObjects:(id)array; - -/** - Adds or updates an object to be persisted in this Realm. The object provided must have a designated - primary key. If no objects exist in the RLMRealm instance with the same primary key value, the object is - inserted. Otherwise, the existing object is updated with any changed values. - - As with `addObject:`, the object cannot already be persisted in a different - Realm. Use `-[RLMObject createOrUpdateInRealm:withValue:]` to copy values to - a different Realm. - - @warning This method can only be called during a write transaction. - - @param object Object to be added or updated. - */ -- (void)addOrUpdateObject:(RLMObject *)object; - -/** - Adds or updates objects in the given array to be persisted in this Realm. - - This is the equivalent of `addOrUpdateObject:` except for an array of objects. - - @warning This method can only be called during a write transaction. - - @param array `NSArray`, `RLMArray`, or `RLMResults` of `RLMObject`s (or subclasses) to be added to this Realm. - - @see addOrUpdateObject: - */ -- (void)addOrUpdateObjectsFromArray:(id)array; - -/** - Delete an object from this Realm. - - @warning This method can only be called during a write transaction. - - @param object Object to be deleted from this Realm. - */ -- (void)deleteObject:(RLMObject *)object; - -/** - Delete an `NSArray`, `RLMArray`, or `RLMResults` of objects from this Realm. - - @warning This method can only be called during a write transaction. - - @param array `RLMArray`, `NSArray`, or `RLMResults` of `RLMObject`s to be deleted. - */ -- (void)deleteObjects:(id)array; - -/** - Deletes all objects in this Realm. - - @warning This method can only be called during a write transaction. - */ -- (void)deleteAllObjects; - - -#pragma mark - Migrations - -/** - Migration block used to migrate a Realm. - - @param migration `RLMMigration` object used to perform the migration. The - migration object allows you to enumerate and alter any - existing objects which require migration. - - @param oldSchemaVersion The schema version of the `RLMRealm` being migrated. - */ -typedef void (^RLMMigrationBlock)(RLMMigration *migration, uint64_t oldSchemaVersion); - -/** - Get the schema version for a Realm at a given path. - - @param realmPath Path to a Realm file - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. - - @return The version of the Realm at `realmPath` or RLMNotVersioned if the version cannot be read. - */ -+ (uint64_t)schemaVersionAtPath:(NSString *)realmPath error:(NSError **)error; - -/** - Get the schema version for an encrypted Realm at a given path. - - @param realmPath Path to a Realm file - @param key 64-byte encryption key. - @param error If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in `NULL`. - - @return The version of the Realm at `realmPath` or RLMNotVersioned if the version cannot be read. - */ -+ (uint64_t)schemaVersionAtPath:(NSString *)realmPath encryptionKey:(nullable NSData *)key error:(NSError **)error; - -/** - Performs the given Realm configuration's migration block on a Realm at the given path. - - This method is called automatically when opening a Realm for the first time and does - not need to be called explicitly. You can choose to call this method to control - exactly when and how migrations are performed. - - @param configuration The Realm configuration used to open and migrate the Realm. - @return The error that occurred while applying the migration, if any. - - @see RLMMigration - */ -+ (NSError *)migrateRealm:(RLMRealmConfiguration *)configuration; - -@end - -/** - A token which is returned from methods which subscribe to changes to a Realm. - - Change subscriptions in Realm return an RLMNotificationToken which can be used - to unsubscribe from the changes. You must store a strong reference to the token - for as long as you want to continue to receive notifications. When you wish to - stop, call the `-stop` method. - */ -@interface RLMNotificationToken : NSObject -/// Stop receiving notifications for the subcription that returned this token. -- (void)stop; -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/RLMRealmConfiguration.h b/Carthage/Build/watchOS/Realm.framework/Headers/RLMRealmConfiguration.h deleted file mode 100644 index 094016f..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/RLMRealmConfiguration.h +++ /dev/null @@ -1,79 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2015 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -/** - An `RLMRealmConfiguration` is used to describe the different options used to - create an `RLMRealm` instance. - - `RLMRealmConfiguration` instances are just plain NSObjects, and unlike RLMRealm - and RLMObjects can be freely shared between threads as long as you do not - mutate them. Creating configuration objects for class subsets (by setting the - `objectClasses` property) can be expensive, and so you will normally want to - cache and reuse a single configuration object for each distinct configuration - that you are using rather than creating a new one each time you open a Realm. - */ -@interface RLMRealmConfiguration : NSObject - -#pragma mark - Default Configuration - -/** - Returns the default configuration used to create Realms when no other - configuration is explicitly specified (i.e. `+[RLMRealm defaultRealm]`). - - @return The default Realm configuration. - */ -+ (instancetype)defaultConfiguration; - -/** - Sets the default configuration to the given `RLMRealmConfiguration`. - - @param configuration The new default Realm configuration. - */ -+ (void)setDefaultConfiguration:(RLMRealmConfiguration *)configuration; - -#pragma mark - Properties - -/// The path to the realm file. Mutually exclusive with `inMemoryIdentifier`. -@property (nonatomic, copy, nullable) NSString *path; - -/// A string used to identify a particular in-memory Realm. Mutually exclusive with `path`. -@property (nonatomic, copy, nullable) NSString *inMemoryIdentifier; - -/// 64-byte key to use to encrypt the data. -@property (nonatomic, copy, nullable) NSData *encryptionKey; - -/// Whether the Realm is read-only (must be YES for read-only files). -@property (nonatomic) BOOL readOnly; - -/// The current schema version. -@property (nonatomic) uint64_t schemaVersion; - -/// The block which migrates the Realm to the current version. -@property (nonatomic, copy, nullable) RLMMigrationBlock migrationBlock; - -/// The classes persisted in the Realm. -@property (nonatomic, copy, nullable) NSArray *objectClasses; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/RLMRealm_Dynamic.h b/Carthage/Build/watchOS/Realm.framework/Headers/RLMRealm_Dynamic.h deleted file mode 100644 index d778678..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/RLMRealm_Dynamic.h +++ /dev/null @@ -1,130 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import -#import - -@class RLMResults; - -@interface RLMRealm (Dynamic) - -#pragma mark - Getting Objects from a Realm - -/** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use the class methods on `RLMObject`. - - Get all objects of a given type in this Realm. - - The preferred way to get objects of a single class is to use the class methods on RLMObject. - - @warning This method is useful only in specialized circumstances. - - @param className The name of the RLMObject subclass to retrieve on e.g. `MyClass.className`. - - @return An RLMResults of all objects in this realm of the given type. - - @see RLMObject allObjects - */ -- (RLMResults *)allObjects:(NSString *)className; - -/** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use the class methods on `RLMObject`. - - Get objects matching the given predicate from the this Realm. - - The preferred way to get objects of a single class is to use the class methods on RLMObject. - - @warning This method is useful only in specialized circumstances. - - @param className The type of objects you are looking for (name of the class). - @param predicateFormat The predicate format string which can accept variable arguments. - - @return An RLMResults of results matching the given predicate. - - @see RLMObject objectsWhere: - */ -- (RLMResults *)objects:(NSString *)className where:(NSString *)predicateFormat, ...; - -/** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use the class methods on `RLMObject`. - - Get objects matching the given predicate from the this Realm. - - The preferred way to get objects of a single class is to use the class methods on RLMObject. - - @warning This method is useful only in specialized circumstances. - - @param className The type of objects you are looking for (name of the class). - @param predicate The predicate to filter the objects. - - @return An RLMResults of results matching the given predicate. - - @see RLMObject objectsWhere: - */ -- (RLMResults *)objects:(NSString *)className withPredicate:(NSPredicate *)predicate; - -/** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use the class methods on `RLMObject`. - - Get an object of a given class name with a primary key - - The preferred way to get an object of a single class is to use the class methods on RLMObject. - - @warning This method is useful only in specialized circumstances. - - @param className The class name for the object you are looking for - @param primaryKey The primary key value for the object you are looking for - - @return An object or nil if an object with the given primary key does not exist. - - @see RLMObject objectForPrimaryKey: - */ -- (RLMObject *)objectWithClassName:(NSString *)className forPrimaryKey:(id)primaryKey; - -/** - This method is useful only in specialized circumstances, for example, when building components - that integrate with Realm. If you are simply building an app on Realm, it is - recommended to use [RLMObject createInDefaultRealmWithValue:]. - - Create an RLMObject of type `className` in the Realm with a given object. - - @warning This method is useful only in specialized circumstances. - - @param value The value used to populate the object. This can be any key/value coding compliant - object, or a JSON object such as those returned from the methods in NSJSONSerialization, or - an NSArray with one object for each persisted property. An exception will be - thrown if any required properties are not present and no default is set. - - When passing in an NSArray, all properties must be present, valid and in the same order as - the properties defined in the model. - - @return An RLMObject of type `className` - */ --(RLMObject *)createObject:(NSString *)className withValue:(id)value; - -@end diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/RLMResults.h b/Carthage/Build/watchOS/Realm.framework/Headers/RLMResults.h deleted file mode 100644 index 6f355fe..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/RLMResults.h +++ /dev/null @@ -1,280 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMObject, RLMRealm, RLMNotificationToken; - -/** - RLMResults is an auto-updating container type in Realm returned from object - queries. - - RLMResults can be queried with the same predicates as RLMObject and RLMArray - and you can chain queries to further filter query results. - - RLMResults always reflect the current state of the Realm on the current thread, - including during write transactions on the current thread. The one exception to - this is when using `for...in` fast enumeration, which will always enumerate - over the objects which matched the query when the enumeration is begun, even if - some of them are deleted or modified to be excluded by the filter during the - enumeration. - - RLMResults are initially lazily evaluated, and only run queries when the result - of the query is requested. This means that chaining several temporary - RLMResults to sort and filter your data does not perform any extra work - processing the intermediate state. - - Once the results have been evaluated or a notification block has been added, - the results are eagerly kept up-to-date, with the work done to keep them - up-to-date done on a background thread whenever possible. - - RLMResults cannot be created directly. - */ -@interface RLMResults RLM_GENERIC_COLLECTION : NSObject - -#pragma mark - Properties - -/** - Number of objects in the results. - */ -@property (nonatomic, readonly, assign) NSUInteger count; - -/** - The class name (i.e. type) of the RLMObjects contained in this RLMResults. - */ -@property (nonatomic, readonly, copy) NSString *objectClassName; - -/** - The Realm this `RLMResults` is associated with. - */ -@property (nonatomic, readonly) RLMRealm *realm; - -#pragma mark - Accessing Objects from an RLMResults - -/** - Returns the object at the index specified. - - @param index The index to look up. - - @return An RLMObject of the type contained in this RLMResults. - */ -- (RLMObjectType)objectAtIndex:(NSUInteger)index; - -/** - Returns the first object in the results. - - Returns `nil` if called on an empty RLMResults. - - @return An RLMObject of the type contained in this RLMResults. - */ -- (nullable RLMObjectType)firstObject; - -/** - Returns the last object in the results. - - Returns `nil` if called on an empty RLMResults. - - @return An RLMObject of the type contained in this RLMResults. - */ -- (nullable RLMObjectType)lastObject; - -#pragma mark - Querying Results - -/** - Gets the index of an object. - - Returns NSNotFound if the object is not found in this RLMResults. - - @param object An object (of the same type as returned from the objectClassName selector). - */ -- (NSUInteger)indexOfObject:(RLMObjectArgument)object; - -/** - Gets the index of the first object matching the predicate. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return Index of object or NSNotFound if the object is not found in this RLMResults. - */ -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Gets the index of the first object matching the predicate. - - @param predicate The predicate to filter the objects. - - @return Index of object or NSNotFound if the object is not found in this RLMResults. - */ -- (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate; - -/** - Get objects matching the given predicate in the RLMResults. - - @param predicateFormat The predicate format string which can accept variable arguments. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat, ...; - -/// :nodoc: -- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat args:(va_list)args; - -/** - Get objects matching the given predicate in the RLMResults. - - @param predicate The predicate to filter the objects. - - @return An RLMResults of objects that match the given predicate - */ -- (RLMResults RLM_GENERIC_RETURN*)objectsWithPredicate:(NSPredicate *)predicate; - -/** - Get a sorted `RLMResults` from an existing `RLMResults` sorted by a property. - - @param property The property name to sort by. - @param ascending The direction to sort by. - - @return An RLMResults sorted by the specified property. - */ -- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending; - -/** - Get a sorted `RLMResults` from an existing `RLMResults` sorted by an `NSArray`` of `RLMSortDescriptor`s. - - @param properties An array of `RLMSortDescriptor`s to sort by. - - @return An RLMResults sorted by the specified properties. - */ -- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingDescriptors:(NSArray *)properties; - -#pragma mark - Notifications - -/** - Register a block to be called each time the RLMResults changes. - - The block will be asynchronously called with the initial results, and then - called again after each write transaction which causes the results to change. - You must retain the returned token for as long as you want the results to - continue to be sent to the block. To stop receiving updates, call -stop on the - token. - - The determination for whether or not a write transaction has changed the - results is currently very coarse, and the block may be called even if no - changes occurred. The opposite (not being called despite changes) will not - happen. This will become more precise in future versions. - - If an error occurs the block will be called with `nil` for the results - parameter and a non-`nil` error. Currently the only errors that can occur are - when opening the RLMRealm on the background worker thread or the destination - queue fails. - - At the time when the block is called, the RLMResults object will be fully - evaluated and up-to-date, and as long as you do not perform a write transaction - on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will - never perform blocking work. - - @warning This method cannot be called during a write transaction, or when the - containing realm is read-only. - - @param block The block to be called with the evaluated results. - @return A token which must be held for as long as you want query results to be delivered. - */ -- (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults RLM_GENERIC_RETURN *__nullable results, NSError *__nullable error))block RLM_WARN_UNUSED_RESULT; - -#pragma mark - Aggregating Property Values - -/** - Returns the minimum (lowest) value of the given property - - NSNumber *min = [results minOfProperty:@"age"]; - - @warning You cannot use this method on RLMObject, RLMArray, and NSData properties. - - @param property The property to look for a minimum on. Only properties of type int, float, double and NSDate are supported. - - @return The minimum value for the property amongst objects in an RLMResults. - */ -- (nullable id)minOfProperty:(NSString *)property; - -/** - Returns the maximum (highest) value of the given property of objects in an RLMResults - - NSNumber *max = [results maxOfProperty:@"age"]; - - @warning You cannot use this method on RLMObject, RLMArray, and NSData properties. - - @param property The property to look for a maximum on. Only properties of type int, float, double and NSDate are supported. - - @return The maximum value for the property amongst objects in an RLMResults - */ -- (nullable id)maxOfProperty:(NSString *)property; - -/** - Returns the sum of the given property for objects in an RLMResults. - - NSNumber *sum = [results sumOfProperty:@"age"]; - - @warning You cannot use this method on RLMObject, RLMArray, and NSData properties. - - @param property The property to calculate sum on. Only properties of type int, float and double are supported. - - @return The sum of the given property over all objects in an RLMResults. - */ -- (NSNumber *)sumOfProperty:(NSString *)property; - -/** - Returns the average of a given property for objects in an RLMResults. - - NSNumber *average = [results averageOfProperty:@"age"]; - - @warning You cannot use this method on RLMObject, RLMArray, and NSData properties. - - @param property The property to calculate average on. Only properties of type int, float and double are supported. - - @return The average for the given property amongst objects in an RLMResults. This will be of type double for both - float and double properties. - */ -- (nullable NSNumber *)averageOfProperty:(NSString *)property; - -/// :nodoc: -- (id)objectAtIndexedSubscript:(NSUInteger)index; - -#pragma mark - Unavailable Methods - -/** - -[RLMResults init] is not available because RLMResults cannot be created directly. - RLMResults can be obtained by querying a Realm. - */ -- (instancetype)init __attribute__((unavailable("RLMResults cannot be created directly"))); - -/** - +[RLMResults new] is not available because RLMResults cannot be created directly. - RLMResults can be obtained by querying a Realm. - */ -+ (instancetype)new __attribute__((unavailable("RLMResults cannot be created directly"))); - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/RLMSchema.h b/Carthage/Build/watchOS/Realm.framework/Headers/RLMSchema.h deleted file mode 100644 index 6549706..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/RLMSchema.h +++ /dev/null @@ -1,76 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMObjectSchema; - -/** - This class represents the collection of model object schemas persisted to Realm. - - When using Realm, RLMSchema objects allow performing migrations and - introspecting the database's schema. - - Schemas map to collections of tables in the core database. - */ -@interface RLMSchema : NSObject - -#pragma mark - Properties - -/** - An NSArray containing RLMObjectSchemas for all object types in this Realm. Meant - to be used during migrations for dynamic introspection. - - @see RLMObjectSchema - */ -@property (nonatomic, readonly, copy) NSArray RLM_GENERIC(RLMObjectSchema *) *objectSchema; - -#pragma mark - Methods - -/** - Returns an RLMObjectSchema for the given class name in this RLMSchema. - - @param className The object class name. - @return RLMObjectSchema for the given class in this RLMSchema. - - @see RLMObjectSchema - */ -- (nullable RLMObjectSchema *)schemaForClassName:(NSString *)className; - -/** - Look up an RLMObjectSchema for the given class name in this Realm. Throws - an exception if there is no object of type className in this RLMSchema instance. - - @param className The object class name. - @return RLMObjectSchema for the given class in this Realm. - - @see RLMObjectSchema - */ -- (RLMObjectSchema *)objectForKeyedSubscript:(id )className; - -/** - Returns YES if equal to schema - */ -- (BOOL)isEqualToSchema:(RLMSchema *)schema; - -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/watchOS/Realm.framework/Headers/Realm.h b/Carthage/Build/watchOS/Realm.framework/Headers/Realm.h deleted file mode 100644 index 886f19e..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Headers/Realm.h +++ /dev/null @@ -1,30 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import diff --git a/Carthage/Build/watchOS/Realm.framework/Info.plist b/Carthage/Build/watchOS/Realm.framework/Info.plist deleted file mode 100644 index 877b739..0000000 Binary files a/Carthage/Build/watchOS/Realm.framework/Info.plist and /dev/null differ diff --git a/Carthage/Build/watchOS/Realm.framework/LICENSE b/Carthage/Build/watchOS/Realm.framework/LICENSE deleted file mode 100644 index a194346..0000000 --- a/Carthage/Build/watchOS/Realm.framework/LICENSE +++ /dev/null @@ -1,269 +0,0 @@ -TABLE OF CONTENTS - -1. Apache License version 2.0 -2. Realm Components -3. Export Compliance - -------------------------------------------------------------------------------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -REALM COMPONENTS - -This software contains components with separate copyright and license terms. -Your use of these components is subject to the terms and conditions of the -following licenses. - -For the Realm Core component - - Realm Core Binary License - - Copyright (c) 2011-2014 Realm Inc All rights reserved - - Redistribution and use in binary form, with or without modification, is - permitted provided that the following conditions are met: - - 1. You agree not to attempt to decompile, disassemble, reverse engineer or - otherwise discover the source code from which the binary code was derived. - You may, however, access and obtain a separate license for most of the - source code from which this Software was created, at - http://realm.io/pricing/. - - 2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - 3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -EXPORT COMPLIANCE - -You understand that the Software may contain cryptographic functions that may be -subject to export restrictions, and you represent and warrant that you are not -located in a country that is subject to United States export restriction or embargo, -including Cuba, Iran, North Korea, Sudan, Syria or the Crimea region, and that you -are not on the Department of Commerce list of Denied Persons, Unverified Parties, -or affiliated with a Restricted Entity. - -You agree to comply with all export, re-export and import restrictions and -regulations of the Department of Commerce or other agency or authority of the -United States or other applicable countries. You also agree not to transfer, or -authorize the transfer of, directly or indirectly, the Software to any prohibited -country, including Cuba, Iran, North Korea, Sudan, Syria or the Crimea region, -or to any person or organization on or affiliated with the Department of -Commerce lists of Denied Persons, Unverified Parties or Restricted Entities, or -otherwise in violation of any such restrictions or regulations. diff --git a/Carthage/Build/watchOS/Realm.framework/Modules/module.modulemap b/Carthage/Build/watchOS/Realm.framework/Modules/module.modulemap deleted file mode 100644 index 18b5e2e..0000000 --- a/Carthage/Build/watchOS/Realm.framework/Modules/module.modulemap +++ /dev/null @@ -1,27 +0,0 @@ -framework module Realm { - umbrella header "Realm.h" - - export * - module * { export * } - - explicit module Private { - header "RLMAccessor.h" - header "RLMArray_Private.h" - header "RLMListBase.h" - header "RLMMigration_Private.h" - header "RLMObjectSchema_Private.h" - header "RLMObjectStore.h" - header "RLMObject_Private.h" - header "RLMOptionalBase.h" - header "RLMProperty_Private.h" - header "RLMRealmConfiguration_Private.h" - header "RLMRealm_Private.h" - header "RLMResults_Private.h" - header "RLMSchema_Private.h" - } - - explicit module Dynamic { - header "RLMRealm_Dynamic.h" - header "RLMObjectBase_Dynamic.h" - } -} diff --git a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMAccessor.h b/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMAccessor.h deleted file mode 100644 index 23a4317..0000000 --- a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMAccessor.h +++ /dev/null @@ -1,64 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import - -@class RLMObjectSchema, RLMProperty, RLMObjectBase, RLMProperty; - -#ifdef __cplusplus -typedef NSUInteger RLMCreationOptions; -#else -typedef NS_OPTIONS(NSUInteger, RLMCreationOptions); -#endif - -RLM_ASSUME_NONNULL_BEGIN - -// -// Accessors Class Creation/Caching -// - -// get accessor classes for an object class - generates classes if not cached -Class RLMAccessorClassForObjectClass(Class objectClass, RLMObjectSchema *schema, NSString *prefix); -Class RLMStandaloneAccessorClassForObjectClass(Class objectClass, RLMObjectSchema *schema); - -// Check if a given class is a generated accessor class -bool RLMIsGeneratedClass(Class cls); - -// -// Dynamic getters/setters -// -FOUNDATION_EXTERN void RLMDynamicValidatedSet(RLMObjectBase *obj, NSString *propName, id __nullable val); -FOUNDATION_EXTERN RLMProperty *RLMValidatedGetProperty(RLMObjectBase *obj, NSString *propName); -FOUNDATION_EXTERN id __nullable RLMDynamicGet(RLMObjectBase *obj, RLMProperty *prop); - -// by property/column -FOUNDATION_EXTERN void RLMDynamicSet(RLMObjectBase *obj, RLMProperty *prop, id val, RLMCreationOptions options); - -// -// Class modification -// - -// Replace className method for the given class -void RLMReplaceClassNameMethod(Class accessorClass, NSString *className); - -// Replace sharedSchema method for the given class -void RLMReplaceSharedSchemaMethod(Class accessorClass, RLMObjectSchema * __nullable schema); - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMArray_Private.h b/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMArray_Private.h deleted file mode 100644 index 592dd57..0000000 --- a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMArray_Private.h +++ /dev/null @@ -1,24 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@interface RLMArray () -- (instancetype)initWithObjectClassName:(NSString *)objectClassName; -- (NSString *)descriptionWithMaxDepth:(NSUInteger)depth; -@end diff --git a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMListBase.h b/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMListBase.h deleted file mode 100644 index a8057a6..0000000 --- a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMListBase.h +++ /dev/null @@ -1,29 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMArray; - -// A base class for Swift generic Lists to make it possible to interact with -// them from obj-c -@interface RLMListBase : NSObject -@property (nonatomic, strong) RLMArray *_rlmArray; - -- (instancetype)initWithArray:(RLMArray *)array; -@end diff --git a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMMigration_Private.h b/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMMigration_Private.h deleted file mode 100644 index 4b54c89..0000000 --- a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMMigration_Private.h +++ /dev/null @@ -1,34 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import -#import - -typedef void (^RLMObjectBaseMigrationBlock)(RLMObjectBase *oldObject, RLMObjectBase *newObject); - -@interface RLMMigration () - -@property (nonatomic, strong) RLMRealm *oldRealm; -@property (nonatomic, strong) RLMRealm *realm; - -- (instancetype)initWithRealm:(RLMRealm *)realm oldRealm:(RLMRealm *)oldRealm; - -- (void)execute:(RLMMigrationBlock)block; - -@end diff --git a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h b/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h deleted file mode 100644 index 10b6473..0000000 --- a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h +++ /dev/null @@ -1,70 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMRealm; - -// RLMObjectSchema private -@interface RLMObjectSchema () - -// writable redecleration -@property (nonatomic, readwrite, copy) NSArray RLM_GENERIC(RLMProperty *) *properties; -@property (nonatomic, readwrite, assign) bool isSwiftClass; - -// class used for this object schema -@property (nonatomic, readwrite, assign) Class objectClass; -@property (nonatomic, readwrite, assign) Class accessorClass; -@property (nonatomic, readwrite, assign) Class standaloneClass; - -@property (nonatomic, readwrite, nullable) RLMProperty *primaryKeyProperty; - -@property (nonatomic, readonly) NSArray RLM_GENERIC(RLMProperty *) *propertiesInDeclaredOrder; - -// The Realm retains its object schemas, so they need to not retain the Realm -@property (nonatomic, unsafe_unretained, nullable) RLMRealm *realm; -// returns a cached or new schema for a given object class -+ (instancetype)schemaForObjectClass:(Class)objectClass; - -- (void)sortPropertiesByColumn; - -@end - -@interface RLMObjectSchema (Dynamic) -/** - This method is useful only in specialized circumstances, for example, when accessing objects - in a Realm produced externally. If you are simply building an app on Realm, it is not recommened - to use this method as an [RLMObjectSchema](RLMObjectSchema) is generated automatically for every [RLMObject](RLMObject) subclass. - - Initialize an RLMObjectSchema with classname, objectClass, and an array of properties - - @warning This method is useful only in specialized circumstances. - - @param objectClassName The name of the class used to refer to objects of this type. - @param objectClass The objective-c class used when creating instances of this type. - @param properties An array RLMProperty describing the persisted properties for this type. - - @return An initialized instance of RLMObjectSchema. - */ -- (instancetype)initWithClassName:(NSString *)objectClassName objectClass:(Class)objectClass properties:(NSArray *)properties; -@end - -RLM_ASSUME_NONNULL_END diff --git a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMObjectStore.h b/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMObjectStore.h deleted file mode 100644 index 590d0ef..0000000 --- a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMObjectStore.h +++ /dev/null @@ -1,99 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#ifdef __cplusplus -extern "C" { -#endif - -@class RLMRealm, RLMSchema, RLMObjectSchema, RLMObjectBase, RLMResults, RLMProperty; - -// -// Accessor Creation -// - -// create or get cached accessors for the given schema -void RLMRealmCreateAccessors(RLMSchema *schema); - -// Clear the cache of created accessor classes -void RLMClearAccessorCache(); - - -// -// Options for object creation -// -typedef NS_OPTIONS(NSUInteger, RLMCreationOptions) { - // Normal object creation - RLMCreationOptionsNone = 0, - // If the property is a link or array property, upsert the linked objects - // if they have a primary key, and insert them otherwise. - RLMCreationOptionsCreateOrUpdate = 1 << 0, - // Allow standalone objects to be promoted to persisted objects - // if false objects are copied during object creation - RLMCreationOptionsPromoteStandalone = 1 << 1, -}; - - -// -// Adding, Removing, Getting Objects -// - -// add an object to the given realm -void RLMAddObjectToRealm(RLMObjectBase *object, RLMRealm *realm, bool createOrUpdate); - -// delete an object from its realm -void RLMDeleteObjectFromRealm(RLMObjectBase *object, RLMRealm *realm); - -// deletes all objects from a realm -void RLMDeleteAllObjectsFromRealm(RLMRealm *realm); - -// get objects of a given class -RLMResults *RLMGetObjects(RLMRealm *realm, NSString *objectClassName, NSPredicate *predicate) NS_RETURNS_RETAINED; - -// get an object with the given primary key -id RLMGetObject(RLMRealm *realm, NSString *objectClassName, id key) NS_RETURNS_RETAINED; - -// create object from array or dictionary -RLMObjectBase *RLMCreateObjectInRealmWithValue(RLMRealm *realm, NSString *className, id value, bool createOrUpdate) NS_RETURNS_RETAINED; - - -// -// Accessor Creation -// - - -// switch List<> properties from being backed by standalone RLMArrays to RLMArrayLinkView -void RLMInitializeSwiftAccessorGenerics(RLMObjectBase *object); - -#ifdef __cplusplus -} - -namespace realm { - class Table; - template class BasicRowExpr; - using RowExpr = BasicRowExpr
    ; -} -// Create accessors -RLMObjectBase *RLMCreateObjectAccessor(RLMRealm *realm, - RLMObjectSchema *objectSchema, - NSUInteger index) NS_RETURNS_RETAINED; -RLMObjectBase *RLMCreateObjectAccessor(RLMRealm *realm, - RLMObjectSchema *objectSchema, - realm::RowExpr row) NS_RETURNS_RETAINED; -#endif diff --git a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMObject_Private.h b/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMObject_Private.h deleted file mode 100644 index 2c7e96f..0000000 --- a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMObject_Private.h +++ /dev/null @@ -1,89 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -// RLMObject accessor and read/write realm -@interface RLMObjectBase () { - @public - RLMRealm *_realm; - // objectSchema is a cached pointer to an object stored in the RLMSchema - // owned by _realm, so it's guaranteed to stay alive as long as this object - // without retaining it (and retaining it makes iteration slower) - __unsafe_unretained RLMObjectSchema *_objectSchema; -} - -// standalone initializer -- (instancetype)initWithValue:(id)value schema:(RLMSchema *)schema; - -// live accessor initializer -- (instancetype)initWithRealm:(__unsafe_unretained RLMRealm *const)realm - schema:(__unsafe_unretained RLMObjectSchema *const)schema; - -// shared schema for this class -+ (RLMObjectSchema *)sharedSchema; - -// provide injection point for alternative Swift object util class -+ (Class)objectUtilClass:(BOOL)isSwift; - -@end - -@interface RLMDynamicObject : RLMObject - -@end - -// -// Getters and setters for RLMObjectBase ivars for realm and objectSchema -// -FOUNDATION_EXTERN void RLMObjectBaseSetRealm(RLMObjectBase *object, RLMRealm *realm); -FOUNDATION_EXTERN RLMRealm *RLMObjectBaseRealm(RLMObjectBase *object); -FOUNDATION_EXTERN void RLMObjectBaseSetObjectSchema(RLMObjectBase *object, RLMObjectSchema *objectSchema); -FOUNDATION_EXTERN RLMObjectSchema *RLMObjectBaseObjectSchema(RLMObjectBase *object); - -// Get linking objects for an RLMObjectBase -FOUNDATION_EXTERN NSArray *RLMObjectBaseLinkingObjectsOfClass(RLMObjectBase *object, NSString *className, NSString *property); - -// Dynamic access to RLMObjectBase properties -FOUNDATION_EXTERN id RLMObjectBaseObjectForKeyedSubscript(RLMObjectBase *object, NSString *key); -FOUNDATION_EXTERN void RLMObjectBaseSetObjectForKeyedSubscript(RLMObjectBase *object, NSString *key, id obj); - -// Calls valueForKey: and re-raises NSUndefinedKeyExceptions -FOUNDATION_EXTERN id RLMValidatedValueForProperty(id object, NSString *key, NSString *className); - -// Compare two RLObjectBases -FOUNDATION_EXTERN BOOL RLMObjectBaseAreEqual(RLMObjectBase *o1, RLMObjectBase *o2); - -// Get ObjectUil class for objc or swift -FOUNDATION_EXTERN Class RLMObjectUtilClass(BOOL isSwift); - -FOUNDATION_EXTERN const NSUInteger RLMDescriptionMaxDepth; - -@class RLMProperty, RLMArray; -@interface RLMObjectUtil : NSObject - -+ (NSArray RLM_GENERIC(NSString *) *)ignoredPropertiesForClass:(Class)cls; -+ (NSArray RLM_GENERIC(NSString *) *)indexedPropertiesForClass:(Class)cls; - -+ (NSArray RLM_GENERIC(NSString *) *)getGenericListPropertyNames:(id)obj; -+ (void)initializeListProperty:(RLMObjectBase *)object property:(RLMProperty *)property array:(RLMArray *)array; -+ (void)initializeOptionalProperty:(RLMObjectBase *)object property:(RLMProperty *)property; - -+ (NSDictionary RLM_GENERIC(NSString *, NSNumber *) *)getOptionalProperties:(id)obj; -+ (NSArray RLM_GENERIC(NSString *) *)requiredPropertiesForClass:(Class)cls; - -@end diff --git a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMOptionalBase.h b/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMOptionalBase.h deleted file mode 100644 index bab04a5..0000000 --- a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMOptionalBase.h +++ /dev/null @@ -1,34 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2015 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import - -@class RLMObjectBase, RLMProperty; - -@interface RLMOptionalBase : NSProxy - -- (instancetype)init; - -@property (nonatomic, weak) RLMObjectBase *object; - -@property (nonatomic, unsafe_unretained) RLMProperty *property; - -@property (nonatomic, strong) id underlyingValue; - -@end diff --git a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMProperty_Private.h b/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMProperty_Private.h deleted file mode 100644 index 5223764..0000000 --- a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMProperty_Private.h +++ /dev/null @@ -1,93 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -#import - -@class RLMObjectBase; - -FOUNDATION_EXTERN BOOL RLMPropertyTypeIsNullable(RLMPropertyType propertyType); -FOUNDATION_EXTERN BOOL RLMPropertyTypeIsNumeric(RLMPropertyType propertyType); - -// private property interface -@interface RLMProperty () - -- (instancetype)initWithName:(NSString *)name - indexed:(BOOL)indexed - property:(objc_property_t)property; - -- (instancetype)initSwiftPropertyWithName:(NSString *)name - indexed:(BOOL)indexed - property:(objc_property_t)property - instance:(RLMObjectBase *)objectInstance; - -- (instancetype)initSwiftListPropertyWithName:(NSString *)name - ivar:(Ivar)ivar - objectClassName:(NSString *)objectClassName; - -- (instancetype)initSwiftOptionalPropertyWithName:(NSString *)name - indexed:(BOOL)indexed - ivar:(Ivar)ivar - propertyType:(RLMPropertyType)propertyType; - -// private setters -@property (nonatomic, assign) NSUInteger column; -@property (nonatomic, readwrite, assign) RLMPropertyType type; -@property (nonatomic, readwrite) BOOL indexed; -@property (nonatomic, readwrite) BOOL optional; -@property (nonatomic, copy) NSString *objectClassName; - -// private properties -@property (nonatomic, assign) char objcType; -@property (nonatomic, copy) NSString *objcRawType; -@property (nonatomic, assign) BOOL isPrimary; -@property (nonatomic, assign) Ivar swiftIvar; -@property (nonatomic, assign) NSUInteger declarationIndex; - -// getter and setter names -@property (nonatomic, copy) NSString *getterName; -@property (nonatomic, copy) NSString *setterName; -@property (nonatomic) SEL getterSel; -@property (nonatomic) SEL setterSel; - -@end - -@interface RLMProperty (Dynamic) -/** - This method is useful only in specialized circumstances, for example, in conjunction with - +[RLMObjectSchema initWithClassName:objectClass:properties:]. If you are simply building an - app on Realm, it is not recommened to use this method. - - Initialize an RLMProperty - - @warning This method is useful only in specialized circumstances. - - @param name The property name. - @param type The property type. - @param objectClassName The object type used for Object and Array types. - - @return An initialized instance of RLMProperty. - */ -- (instancetype)initWithName:(NSString *)name - type:(RLMPropertyType)type - objectClassName:(NSString *)objectClassName - indexed:(BOOL)indexed - optional:(BOOL)optional; -@end - diff --git a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMRealmConfiguration_Private.h b/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMRealmConfiguration_Private.h deleted file mode 100644 index 91770a2..0000000 --- a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMRealmConfiguration_Private.h +++ /dev/null @@ -1,38 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2015 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMSchema; - -@interface RLMRealmConfiguration () - -@property (nonatomic, readwrite) bool cache; -@property (nonatomic, readwrite) bool dynamic; -@property (nonatomic, readwrite) bool disableFormatUpgrade; -@property (nonatomic, copy) RLMSchema *customSchema; - -// Get the default confiugration without copying it -+ (RLMRealmConfiguration *)rawDefaultConfiguration; - -+ (void)resetRealmConfigurationState; -@end - -// Get a path in the platform-appropriate documents directory with the given filename -FOUNDATION_EXTERN NSString *RLMRealmPathForFile(NSString *fileName); -FOUNDATION_EXTERN NSString *RLMRealmPathForFileAndBundleIdentifier(NSString *fileName, NSString *mainBundleIdentifier); diff --git a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMRealmUtil.hpp b/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMRealmUtil.hpp deleted file mode 100644 index b69c727..0000000 --- a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMRealmUtil.hpp +++ /dev/null @@ -1,42 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import -#import -#import - -@class RLMRealm; - -namespace realm { - class BindingContext; -} - -// Add a Realm to the weak cache -void RLMCacheRealm(std::string const& path, RLMRealm *realm); -// Get a Realm for the given path which can be used on the current thread -RLMRealm *RLMGetThreadLocalCachedRealmForPath(std::string const& path); -// Get a Realm for the given path -RLMRealm *RLMGetAnyCachedRealmForPath(std::string const& path); -// Clear the weak cache of Realms -void RLMClearRealmCache(); - -// Install an uncaught exception handler that cancels write transactions -// for all cached realms on the current thread -void RLMInstallUncaughtExceptionHandler(); - -std::unique_ptr RLMCreateBindingContext(RLMRealm *realm); diff --git a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMRealm_Private.h b/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMRealm_Private.h deleted file mode 100644 index 68b3b82..0000000 --- a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMRealm_Private.h +++ /dev/null @@ -1,86 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMFastEnumerator; - -// Disable syncing files to disk. Cannot be re-enabled. Use only for tests. -FOUNDATION_EXTERN void RLMDisableSyncToDisk(); - -FOUNDATION_EXTERN NSData *RLMRealmValidatedEncryptionKey(NSData *key); - -// Translate an in-flight exception resulting from opening a SharedGroup to -// an NSError or NSException (if error is nil) -void RLMRealmTranslateException(NSError **error); - -// RLMRealm private members -@interface RLMRealm () - -@property (nonatomic, readonly) BOOL dynamic; -@property (nonatomic, readwrite) RLMSchema *schema; - -+ (void)resetRealmState; - -/** - This method is useful only in specialized circumstances, for example, when opening Realm files - retrieved externally that contain a different schema than defined in your application. - If you are simply building an app on Realm you should consider using: - [defaultRealm]([RLMRealm defaultRealm]) or [realmWithPath:]([RLMRealm realmWithPath:]) - - Obtains an `RLMRealm` instance with persistence to a specific file path with - options. - - @warning This method is useful only in specialized circumstances. - - @param path Path to the file you want the data saved in. - @param key 64-byte key to use to encrypt the data. - @param readonly `BOOL` indicating if this Realm is read-only (must use for read-only files) - @param inMemory `BOOL` indicating if this Realm is in-memory - @param dynamic `BOOL` indicating if this Realm is dynamic - @param customSchema `RLMSchema` object representing the schema for the Realm - @param outError If an error occurs, upon return contains an `NSError` object - that describes the problem. If you are not interested in - possible errors, pass in NULL. - - @return An `RLMRealm` instance. - - @see RLMRealm defaultRealm - @see RLMRealm realmWithPath: - @see RLMRealm realmWithPath:readOnly:error: - @see RLMRealm realmWithPath:encryptionKey:readOnly:error: - */ -+ (instancetype)realmWithPath:(NSString *)path - key:(NSData *)key - readOnly:(BOOL)readonly - inMemory:(BOOL)inMemory - dynamic:(BOOL)dynamic - schema:(RLMSchema *)customSchema - error:(NSError **)outError; - -- (void)registerEnumerator:(RLMFastEnumerator *)enumerator; -- (void)unregisterEnumerator:(RLMFastEnumerator *)enumerator; -- (void)detachAllEnumerators; - -- (void)sendNotifications:(NSString *)notification; -- (void)verifyThread; -- (void)verifyNotificationsAreSupported; - -+ (NSString *)writeableTemporaryPathForFile:(NSString *)fileName; - -@end diff --git a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMResults_Private.h b/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMResults_Private.h deleted file mode 100644 index 7bdfa84..0000000 --- a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMResults_Private.h +++ /dev/null @@ -1,25 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#import - -@class RLMObjectSchema; - -@interface RLMResults () -@property (nonatomic, unsafe_unretained) RLMObjectSchema *objectSchema; -@end diff --git a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMSchema_Private.h b/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMSchema_Private.h deleted file mode 100644 index e951553..0000000 --- a/Carthage/Build/watchOS/Realm.framework/PrivateHeaders/RLMSchema_Private.h +++ /dev/null @@ -1,66 +0,0 @@ -//////////////////////////////////////////////////////////////////////////// -// -// Copyright 2014 Realm Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////// - -#ifdef __cplusplus -extern "C" { -#endif - -#import -#import - -RLM_ASSUME_NONNULL_BEGIN - -@class RLMRealm; - -// -// RLMSchema private interface -// -@interface RLMSchema () - -/** - Returns an `RLMSchema` containing only the given `RLMObject` subclasses. - - @param classes The classes to be included in the schema. - - @return An `RLMSchema` containing only the given classes. - */ -+ (instancetype)schemaWithObjectClasses:(NSArray RLM_GENERIC(Class) *)classes; - -@property (nonatomic, readwrite, copy) NSArray RLM_GENERIC(RLMObjectSchema *) *objectSchema; - -// schema based on runtime objects -+ (instancetype)sharedSchema; - -// schema based upon all currently registered object classes -+ (instancetype)partialSharedSchema; - -// class for string -+ (nullable Class)classForString:(NSString *)className; - -// shallow copy for reusing schema properties accross the same Realm on multiple threads -- (instancetype)shallowCopy; - -+ (RLMObjectSchema *)sharedSchemaForClass:(Class)cls; - -@end - -RLM_ASSUME_NONNULL_END - -#ifdef __cplusplus -} -#endif diff --git a/Carthage/Build/watchOS/Realm.framework/Realm b/Carthage/Build/watchOS/Realm.framework/Realm deleted file mode 100755 index 61c30d0..0000000 Binary files a/Carthage/Build/watchOS/Realm.framework/Realm and /dev/null differ diff --git a/Carthage/Build/watchOS/Realm.framework/strip-frameworks.sh b/Carthage/Build/watchOS/Realm.framework/strip-frameworks.sh deleted file mode 100644 index 80814ab..0000000 --- a/Carthage/Build/watchOS/Realm.framework/strip-frameworks.sh +++ /dev/null @@ -1,72 +0,0 @@ -################################################################################ -# -# Copyright 2015 Realm Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -################################################################################ - -# This script strips all non-valid architectures from dynamic libraries in -# the application's `Frameworks` directory. -# -# The following environment variables are required: -# -# BUILT_PRODUCTS_DIR -# FRAMEWORKS_FOLDER_PATH -# VALID_ARCHS -# EXPANDED_CODE_SIGN_IDENTITY - - -# Signs a framework with the provided identity -code_sign() { - # Use the current code_sign_identitiy - echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" - echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements $1" - /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" -} - -# Set working directory to product’s embedded frameworks -cd "${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}" - -if [ "$ACTION" = "install" ]; then - echo "Copy .bcsymbolmap files to .xcarchive" - find . -name '*.bcsymbolmap' -type f -exec mv {} "${CONFIGURATION_BUILD_DIR}" \; -else - # Delete *.bcsymbolmap files from framework bundle unless archiving - find . -name '*.bcsymbolmap' -type f -exec rm -rf "{}" +\; -fi - -echo "Stripping frameworks" - -for file in $(find . -type f -perm +111); do - # Skip non-dynamic libraries - if ! [[ "$(file "$file")" == *"dynamically linked shared library"* ]]; then - continue - fi - # Get architectures for current file - archs="$(lipo -info "${file}" | rev | cut -d ':' -f1 | rev)" - stripped="" - for arch in $archs; do - if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then - # Strip non-valid architectures in-place - lipo -remove "$arch" -output "$file" "$file" || exit 1 - stripped="$stripped $arch" - fi - done - if [[ "$stripped" != "" ]]; then - echo "Stripped $file of architectures:$stripped" - if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then - code_sign "${file}" - fi - fi -done diff --git a/Carthage/Build/watchOS/RealmSwift.framework.dSYM/Contents/Info.plist b/Carthage/Build/watchOS/RealmSwift.framework.dSYM/Contents/Info.plist deleted file mode 100644 index fa8327b..0000000 --- a/Carthage/Build/watchOS/RealmSwift.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.io.realm.RealmSwit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 0.98.6 - CFBundleVersion - 0.98.6 - - diff --git a/Carthage/Build/watchOS/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift b/Carthage/Build/watchOS/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift deleted file mode 100644 index 420c69c..0000000 Binary files a/Carthage/Build/watchOS/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift and /dev/null differ diff --git a/Carthage/Build/watchOS/RealmSwift.framework/Headers/RealmSwift-Swift.h b/Carthage/Build/watchOS/RealmSwift.framework/Headers/RealmSwift-Swift.h deleted file mode 100644 index a478e34..0000000 --- a/Carthage/Build/watchOS/RealmSwift.framework/Headers/RealmSwift-Swift.h +++ /dev/null @@ -1,317 +0,0 @@ -// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.1 clang-703.0.29) -#pragma clang diagnostic push - -#if defined(__has_include) && __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if defined(__has_include) && __has_include() -# include -# elif !defined(__cplusplus) || __cplusplus < 201103L -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif - -#if defined(__has_attribute) && __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if defined(__has_attribute) && __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type -# if defined(__has_feature) && __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) -# endif -#endif -#if defined(__has_feature) && __has_feature(modules) -@import Realm; -@import Realm.Private; -@import Foundation; -@import ObjectiveC; -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -@class RLMRealm; -@class RLMObjectSchema; -@class RLMSchema; -@class RLMProperty; -@class RLMListBase; -@class RLMOptionalBase; - - -/// In Realm you define your model classes by subclassing Object and adding properties to be persisted. You then instantiate and use your custom subclasses instead of using the Object class directly. -/// -/// class Dog: Object { -/// dynamic var name: String = "" -/// dynamic var adopted: Bool = false -/// let siblings = List() -/// } -/// -/// -///

    Supported property types

    -///
    • String -/// , NSString -///
    • Int -///
    • Int8 -/// , Int16 -/// , Int32 -/// , Int64 -///
    • Float -///
    • Double -///
    • Bool -///
    • NSDate -///
    • NSData -///
    • RealmOptional -/// for optional numeric properties
    • Object -/// subclasses for to-one relationships
    • List -/// for to-many relationships
    -/// String -/// , NSString -/// , NSDate -/// , NSData -/// and Object -/// subclass properties can be -/// optional. Int -/// , Int8 -/// , Int16, Int32 -/// , Int64 -/// , Float -/// , Double -/// , Bool -/// -/// and List -/// properties cannot. To store an optional number, instead use -/// RealmOptional -/// , RealmOptional -/// , RealmOptional -/// , or -/// RealmOptional -/// instead, which wraps an optional value of the generic type. -/// -/// All property types except for List -/// and RealmOptional -/// must be declared as -/// dynamic var -/// . List -/// and RealmOptional -/// properties must be declared as -/// non-dynamic let -/// properties. -/// -///

    Querying

    -/// You can gets Results -/// of an Object subclass via the objects(_:) -/// instance -/// method on Realm -/// . -/// -///

    Relationships

    -/// See our Cocoa guide for more details. -SWIFT_CLASS_NAMED("Object") -@interface RealmSwiftObject : RLMObjectBase - -/// Initialize a standalone (unpersisted) Object. Call add(_:) on a Realm to add standalone objects to a realm. -/// -///
    • see: Realm().add(_:)
    -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - -/// Initialize a standalone (unpersisted) Object with values from an Array or Dictionary. Call add(_:) on a Realm to add standalone objects to a realm. -/// -/// \param value The value used to populate the object. This can be any key/value coding compliant -/// object, or a JSON object such as those returned from the methods in NSJSONSerialization -/// , -/// or an Array -/// with one object for each persisted property. An exception will be -/// thrown if any required properties are not present and no default is set. -- (nonnull instancetype)initWithValue:(id _Nonnull)value OBJC_DESIGNATED_INITIALIZER; - -/// Indicates if an object can no longer be accessed. -/// -/// An object can no longer be accessed if the object has been deleted from the containing -/// realm -/// or if invalidate -/// is called on the containing realm -/// . -@property (nonatomic, readonly, getter=isInvalidated) BOOL invalidated; - -/// Returns a human-readable description of this object. -@property (nonatomic, readonly, copy) NSString * _Nonnull description; - -/// Helper to return the class name for an Object subclass. -@property (nonatomic, readonly, copy) NSString * _Nonnull className; - -/// WARNING: This is an internal helper method not intended for public use. :nodoc: -+ (Class _Nonnull)objectUtilClass:(BOOL)isSwift; - -/// Override to designate a property as the primary key for an Object subclass. Only properties of type String and Int can be designated as the primary key. Primary key properties enforce uniqueness for each value whenever the property is set which incurs some overhead. Indexes are created automatically for primary key properties. -/// -/// \returns Name of the property designated as the primary key, or nil -/// if the model has no primary key. -+ (NSString * _Nullable)primaryKey; - -/// Override to return an array of property names to ignore. These properties will not be persisted and are treated as transient. -/// -/// \returns Array -/// of property names to ignore. -+ (NSArray * _Nonnull)ignoredProperties; - -/// Return an array of property names for properties which should be indexed. Only supported for string and int properties. -/// -/// \returns Array -/// of property names to index. -+ (NSArray * _Nonnull)indexedProperties; -- (id _Nullable)objectForKeyedSubscript:(NSString * _Nonnull)key; -- (void)setObject:(id _Nullable)value forKeyedSubscript:(NSString * _Nonnull)key; - -/// Returns whether both objects are equal. -/// -/// Objects are considered equal when they are both from the same Realm and point to the same -/// underlying object in the database. -/// -/// \param object Object to compare for equality. -- (BOOL)isEqual:(id _Nullable)object; - -/// WARNING: This is an internal initializer not intended for public use. :nodoc: -- (nonnull instancetype)initWithRealm:(RLMRealm * _Nonnull)realm schema:(RLMObjectSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER; - -/// WARNING: This is an internal initializer not intended for public use. :nodoc: -- (nonnull instancetype)initWithValue:(id _Nonnull)value schema:(RLMSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER; -- (RLMListBase * _Nonnull)listForProperty:(RLMProperty * _Nonnull)prop; -- (RLMOptionalBase * _Nonnull)optionalForProperty:(RLMProperty * _Nonnull)prop; -@end - - - -/// Object interface which allows untyped getters and setters for Objects. :nodoc: -SWIFT_CLASS("_TtC10RealmSwift13DynamicObject") -@interface DynamicObject : RealmSwiftObject -- (RLMListBase * _Nonnull)listForProperty:(RLMProperty * _Nonnull)prop; -- (RLMOptionalBase * _Nonnull)optionalForProperty:(RLMProperty * _Nonnull)prop; - -/// :nodoc: -- (id _Nullable)valueForUndefinedKey:(NSString * _Nonnull)key; - -/// :nodoc: -- (void)setValue:(id _Nullable)value forUndefinedKey:(NSString * _Nonnull)key; - -/// :nodoc: -+ (BOOL)shouldIncludeInDefaultSchema; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)initWithValue:(id _Nonnull)value OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)initWithRealm:(RLMRealm * _Nonnull)realm schema:(RLMObjectSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)initWithValue:(id _Nonnull)value schema:(RLMSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER; -@end - -@class RLMArray; - - -/// :nodoc: Internal class. Do not use directly. -SWIFT_CLASS("_TtC10RealmSwift8ListBase") -@interface ListBase : RLMListBase - -/// Returns a human-readable description of the objects contained in the List. -@property (nonatomic, readonly, copy) NSString * _Nonnull description; - -/// Returns the number of objects in this List. -@property (nonatomic, readonly) NSInteger count; -- (null_unspecified instancetype)initWithArray:(RLMArray * _Null_unspecified)array OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface NSDate (SWIFT_EXTENSION(RealmSwift)) -@end - - - - -/// :nodoc: Internal class. Do not use directly. -SWIFT_CLASS_NAMED("ObjectUtil") -@interface RealmSwiftObjectUtil : NSObject -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -@class RLMResults; - - -/// :nodoc: Internal class. Do not use directly. -SWIFT_CLASS("_TtC10RealmSwift11ResultsBase") -@interface ResultsBase : NSObject -@property (nonatomic, readonly, strong) RLMResults * _Nonnull rlmResults; - -/// Returns a human-readable description of the objects contained in these results. -@property (nonatomic, readonly, copy) NSString * _Nonnull description; -- (nonnull instancetype)init:(RLMResults * _Nonnull)rlmResults OBJC_DESIGNATED_INITIALIZER; -- (NSInteger)countByEnumeratingWithState:(NSFastEnumerationState * _Null_unspecified)state objects:(id _Nullable * _Null_unspecified)buffer count:(NSInteger)len; -@end - -#pragma clang diagnostic pop diff --git a/Carthage/Build/watchOS/RealmSwift.framework/Info.plist b/Carthage/Build/watchOS/RealmSwift.framework/Info.plist deleted file mode 100644 index 87e85da..0000000 Binary files a/Carthage/Build/watchOS/RealmSwift.framework/Info.plist and /dev/null differ diff --git a/Carthage/Build/watchOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftdoc b/Carthage/Build/watchOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftdoc deleted file mode 100644 index 231e119..0000000 Binary files a/Carthage/Build/watchOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftdoc and /dev/null differ diff --git a/Carthage/Build/watchOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftmodule b/Carthage/Build/watchOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftmodule deleted file mode 100644 index bc9d30d..0000000 Binary files a/Carthage/Build/watchOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftmodule and /dev/null differ diff --git a/Carthage/Build/watchOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftdoc b/Carthage/Build/watchOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftdoc deleted file mode 100644 index 90e1bcd..0000000 Binary files a/Carthage/Build/watchOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftdoc and /dev/null differ diff --git a/Carthage/Build/watchOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftmodule b/Carthage/Build/watchOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftmodule deleted file mode 100644 index 6329197..0000000 Binary files a/Carthage/Build/watchOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftmodule and /dev/null differ diff --git a/Carthage/Build/watchOS/RealmSwift.framework/Modules/module.modulemap b/Carthage/Build/watchOS/RealmSwift.framework/Modules/module.modulemap deleted file mode 100644 index 293772c..0000000 --- a/Carthage/Build/watchOS/RealmSwift.framework/Modules/module.modulemap +++ /dev/null @@ -1,3 +0,0 @@ -framework module RealmSwift { - header "RealmSwift-Swift.h" -} diff --git a/Carthage/Build/watchOS/RealmSwift.framework/RealmSwift b/Carthage/Build/watchOS/RealmSwift.framework/RealmSwift deleted file mode 100755 index 9c8a70f..0000000 Binary files a/Carthage/Build/watchOS/RealmSwift.framework/RealmSwift and /dev/null differ diff --git a/Example/RealmResultsController-iOSTests/RealmLoggerTests.swift b/Example/RealmResultsController-iOSTests/RealmLoggerTests.swift index 2de61a3..155c548 100644 --- a/Example/RealmResultsController-iOSTests/RealmLoggerTests.swift +++ b/Example/RealmResultsController-iOSTests/RealmLoggerTests.swift @@ -36,6 +36,7 @@ class RealmLoggerSpec: QuickSpec { override func spec() { var realm: Realm! var logger: RealmLogger! + beforeSuite { let configuration = Realm.Configuration(inMemoryIdentifier: "testingRealm") realm = try! Realm(configuration: configuration) @@ -91,7 +92,7 @@ class RealmLoggerSpec: QuickSpec { var createdObject: Bool = false var updatedObject: Bool = false var deletedObject: Bool = false - for object: RealmChange in notificationArray[realm.path]! { + for object: RealmChange in notificationArray[realm.realmIdentifier]! { if object.action == RealmAction.Add { createdObject = true} if object.action == RealmAction.Update { updatedObject = true} if object.action == RealmAction.Delete { deletedObject = true} @@ -126,7 +127,7 @@ class RealmLoggerSpec: QuickSpec { var createdObject: Bool = false var updatedObject: Bool = false var deletedObject: Bool = false - for object: RealmChange in notificationArray[realm.path]! { + for object: RealmChange in notificationArray[realm.realmIdentifier]! { if object.action == RealmAction.Add { createdObject = true} if object.action == RealmAction.Update { updatedObject = true} if object.action == RealmAction.Delete { deletedObject = true} diff --git a/Example/RealmResultsController-iOSTests/RealmResultsControllerTests.swift b/Example/RealmResultsController-iOSTests/RealmResultsControllerTests.swift index 75cb95a..dac8b68 100644 --- a/Example/RealmResultsController-iOSTests/RealmResultsControllerTests.swift +++ b/Example/RealmResultsController-iOSTests/RealmResultsControllerTests.swift @@ -360,7 +360,7 @@ class RealmResultsControllerSpec: QuickSpec { temporaryUpdated = RRC.temporaryUpdated temporaryDeleted = RRC.temporaryDeleted let createChange = RealmChange(type: User.self, action: .Add, mirror: User()) - RRC.didReceiveRealmChanges(NSNotification(name: "", object: [realm.path : [createChange]])) + RRC.didReceiveRealmChanges(NSNotification(name: "", object: [realm.realmIdentifier : [createChange]])) } it("ignores the object") { expect(temporaryAdded) == RRC.temporaryAdded @@ -406,7 +406,7 @@ class RealmResultsControllerSpec: QuickSpec { context("If the notification is EMPTY") { var notifObject: [String :[RealmChange]] = [:] beforeEach { - notifObject = [realm.path : [RealmChange]()] + notifObject = [realm.realmIdentifier : [RealmChange]()] RRC.didReceiveRealmChanges(NSNotification(name: "", object: notifObject)) } it("Should not have added anything to the cache") { @@ -437,7 +437,7 @@ class RealmResultsControllerSpec: QuickSpec { RRC.cache.sections.first?.objects.addObject(task3) updateChange = RealmChange(type: Task.self, action: .Update, mirror: task2.getMirror()) deleteChange = RealmChange(type: Task.self, action: .Delete, mirror: task3.getMirror()) - notifObject = [realm.path : [updateChange, deleteChange]] + notifObject = [realm.realmIdentifier : [updateChange, deleteChange]] RRC.didReceiveRealmChanges(NSNotification(name: "", object: notifObject)) } afterEach { @@ -471,7 +471,7 @@ class RealmResultsControllerSpec: QuickSpec { RRC.cache.sections.first?.objects.addObject(task2) createChange = RealmChange(type: Task.self, action: .Add, mirror: task1.getMirror()) updateChange = RealmChange(type: Task.self, action: .Update, mirror: task2.getMirror()) - notifObject = [realm.path : [createChange, updateChange]] + notifObject = [realm.realmIdentifier : [createChange, updateChange]] RRC.didReceiveRealmChanges(NSNotification(name: "", object: notifObject)) } afterEach { diff --git a/Example/RealmResultsController-iOSTests/RealmTestHelper.swift b/Example/RealmResultsController-iOSTests/RealmTestHelper.swift index 1887729..8409f27 100644 --- a/Example/RealmResultsController-iOSTests/RealmTestHelper.swift +++ b/Example/RealmResultsController-iOSTests/RealmTestHelper.swift @@ -16,7 +16,8 @@ struct RealmTestHelper { if !firstTime { return } firstTime = false - let defaultRealmPath = Realm.Configuration.defaultConfiguration.path! + let defaultRealmPath = Realm.Configuration.defaultConfiguration.fileURL!.absoluteString + .stringByReplacingOccurrencesOfString("file:///", withString: "/") let bundleReamPath: String? = NSBundle.mainBundle().resourcePath! + "/test.realm" if NSFileManager.defaultManager().fileExistsAtPath(defaultRealmPath) { diff --git a/Example/RealmResultsController/ViewController.swift b/Example/RealmResultsController/ViewController.swift index c50c040..063eb85 100644 --- a/Example/RealmResultsController/ViewController.swift +++ b/Example/RealmResultsController/ViewController.swift @@ -12,19 +12,21 @@ import RealmSwift import RealmResultsController class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate, RealmResultsControllerDelegate { - + let tableView: UITableView = UITableView(frame: CGRectZero, style: .Grouped) var rrc: RealmResultsController? var realm: Realm! let button: UIButton = UIButton() - - lazy var realmPath: String = { + + lazy var realmConfiguration: Realm.Configuration = { guard let doc = NSSearchPathForDirectoriesInDomains(NSSearchPathDirectory.DocumentDirectory, - NSSearchPathDomainMask.UserDomainMask, true).first else { return "" } + NSSearchPathDomainMask.UserDomainMask, true).first else { + return Realm.Configuration.defaultConfiguration + } let custom = doc.stringByAppendingString("/example.realm") - return custom + return Realm.Configuration(fileURL: NSURL(string: custom)) }() - + required init?(coder aDecoder: NSCoder) { super.init(coder: aDecoder) } @@ -34,8 +36,8 @@ class ViewController: UIViewController, UITableViewDataSource, UITableViewDelega if let _ = NSClassFromString("XCTest") { return } - - realm = try! Realm(path: realmPath) + + realm = try! Realm(configuration: realmConfiguration) try! realm.write { self.realm.deleteAll() @@ -92,7 +94,7 @@ class ViewController: UIViewController, UITableViewDataSource, UITableViewDelega let queue: dispatch_queue_t = dispatch_queue_create("label", nil) dispatch_async(queue) { autoreleasepool { - let realm = try! Realm(path: self.realmPath) + let realm = try! Realm(configuration: self.realmConfiguration) try! realm.write { let task = TaskModelObject() task.id = 12345 @@ -124,7 +126,7 @@ class ViewController: UIViewController, UITableViewDataSource, UITableViewDelega let queue: dispatch_queue_t = dispatch_queue_create("label", nil) dispatch_async(queue) { autoreleasepool { - let realm = try! Realm(path: self.realmPath) + let realm = try! Realm(configuration: self.realmConfiguration) try! realm.write { let task = TaskModelObject() task.id = Int(arc4random_uniform(9999)) diff --git a/README.md b/README.md index 2fe9c10..930f209 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ ![](https://img.shields.io/badge/language-swift-blue.svg) -![](https://img.shields.io/badge/version-0.4.3-red.svg) +![](https://img.shields.io/badge/version-0.4.4-red.svg) [![Build Status](https://travis-ci.org/redbooth/RealmResultsController.svg?branch=master)](https://travis-ci.org/redbooth/RealmResultsController) ![](Images/RRCHigh.png) @@ -259,7 +259,7 @@ To use the demo, just run the following command to install the Realm dependencie #### Carthage: ``` -github "redbooth/RealmResultsController" "0.4.3" +github "redbooth/RealmResultsController" "0.4.4" ``` #### CocoaPods: @@ -267,7 +267,7 @@ github "redbooth/RealmResultsController" "0.4.3" ``` use_frameworks! -pod 'RealmResultsController', '~> 0.4.3' +pod 'RealmResultsController', '~> 0.4.4' ``` #### Manual: diff --git a/RealmResultsController.podspec b/RealmResultsController.podspec index a0c7131..c916a10 100644 --- a/RealmResultsController.podspec +++ b/RealmResultsController.podspec @@ -11,5 +11,5 @@ Pod::Spec.new do |s| s.frameworks = 'UIKit' s.requires_arc = true s.social_media_url = 'https://twitter.com/redboothhq' - s.dependency 'RealmSwift', '0.98.6' + s.dependency 'RealmSwift', '1.0.0' end diff --git a/Source/RealmExtension.swift b/Source/RealmExtension.swift index 04815d2..948d0c6 100644 --- a/Source/RealmExtension.swift +++ b/Source/RealmExtension.swift @@ -10,7 +10,18 @@ import Foundation import RealmSwift extension Realm { - + + var realmIdentifier: String { + var realmIdentifier = "" + if let fileURL = configuration.fileURL { + realmIdentifier = fileURL.absoluteString + } + else if let identifier = configuration.inMemoryIdentifier { + realmIdentifier = identifier + } + return realmIdentifier + } + //MARK: Add /** diff --git a/Source/RealmLogger.swift b/Source/RealmLogger.swift index 06ca761..652bf51 100644 --- a/Source/RealmLogger.swift +++ b/Source/RealmLogger.swift @@ -47,8 +47,14 @@ class RealmLogger { Then clean the current state. */ func finishRealmTransaction() { - let name = realm.path.hasSuffix("testingRealm") ? "realmChangesTest" : "realmChanges" - NSNotificationCenter.defaultCenter().postNotificationName(name, object: [realm.path : temporary]) + let realmIdentifier = realm.realmIdentifier + var notificationName = "realmChanges" + + //For testing + if realmIdentifier == "testingRealm" { notificationName = "realmChangesTest" } + + NSNotificationCenter.defaultCenter().postNotificationName(notificationName, + object: [realmIdentifier : temporary]) postIndividualNotifications() cleanAll() } diff --git a/Source/RealmResultsController.swift b/Source/RealmResultsController.swift index ca311f4..33966c1 100644 --- a/Source/RealmResultsController.swift +++ b/Source/RealmResultsController.swift @@ -278,8 +278,8 @@ public class RealmResultsController : RealmResultsCache @objc func didReceiveRealmChanges(notification: NSNotification) { guard case let notificationObject as [String : [RealmChange]] = notification.object - where notificationObject.keys.first == request.realm.path, - let objects = notificationObject[self.request.realm.path] else { return } + where notificationObject.keys.first == request.realm.realmIdentifier, + let objects = notificationObject[self.request.realm.realmIdentifier] else { return } queueManager.addOperation { self.refetchObjects(objects) self.finishWriteTransaction()