Implemented missing functionality for NSPredicate and NSExpression.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@25183 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2007-05-23 13:11:55 +00:00
parent 492c861e29
commit db81f051db
4 changed files with 912 additions and 793 deletions

View file

@ -42,6 +42,10 @@ typedef enum _NSCompoundPredicateType
} NSCompoundPredicateType;
@interface NSCompoundPredicate : NSPredicate
{
NSCompoundPredicateType _type;
NSArray *_subs;
}
+ (NSPredicate *) andPredicateWithSubpredicates: (NSArray *)list;
+ (NSPredicate *) notPredicateWithSubpredicate: (NSPredicate *)predicate;