Sha256: 69636d9341f4c26107dfb7f62026127af6464fad4e5943ce17aadeb3dbee3c34
Contents?: true
Size: 989 Bytes
Versions: 9
Compression:
Stored size: 989 Bytes
Contents
#import <Foundation/Foundation.h> #import "YapDatabaseExtensionConnection.h" @class YapDatabaseFullTextSearch; /** * Welcome to YapDatabase! * * https://github.com/yaptv/YapDatabase * * The project wiki has a wealth of documentation if you have any questions. * https://github.com/yaptv/YapDatabase/wiki * * YapDatabaseFullTextSearch is an extension for performing text based search. * Internally it uses sqlite's FTS module which was contributed by Google. * * As an extension, YapCollectiosnDatabaseFullTextSearchConnection is automatically * created by YapDatabaseConnnection. You can access this object via: * * [databaseConnection extension:@"myRegisteredExtensionName"] * * @see YapDatabaseFullTextSearch * @see YapDatabaseFullTextSearchTransaction **/ @interface YapDatabaseFullTextSearchConnection : YapDatabaseExtensionConnection /** * Returns the parent instance. **/ @property (nonatomic, strong, readonly) YapDatabaseFullTextSearch *fullTextSearch; @end
Version data entries
9 entries across 3 versions & 1 rubygems