OWLQuantifiedObjectRestriction
@protocol OWLQuantifiedObjectRestriction <OWLQuantifiedRestriction>
#pragma mark OWLRestriction
/// The property/properties that the restriction acts along.
@property (nonatomic, strong, readonly) id<OWLObjectPropertyExpression> property;
#pragma mark OWLQuantifiedRestriction
/// The filler of this restriction.
@property (nonatomic, strong, readonly) id<OWLClassExpression> filler;
@end
Undocumented
-
The property/properties that the restriction acts along.
Declaration
Objective-C
@property (nonatomic, strong, readonly) id<OWLObjectPropertyExpression> _Nonnull property;Swift
var property: OWLObjectPropertyExpression { get }
-
The filler of this restriction.
Declaration
Objective-C
@property (nonatomic, strong, readonly) id<OWLClassExpression> _Nonnull filler;Swift
var filler: OWLClassExpression { get }
OWLQuantifiedObjectRestriction Protocol Reference