Archived
1
This repository has been archived on 2022-08-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mathpad/MathPad/MPFunction.h
Kim Wittenburg 1daec37a25 Added Expression Tree Inspection Methods
Cleaned Code
2014-04-20 23:28:17 +02:00

57 lines
1.1 KiB
Objective-C

//
// MPFunction.h
// MathPad
//
// Created by Kim Wittenburg on 18.04.14.
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
//
@class MPFunction, MPExpression;
@interface MPFunction : NSObject <NSCopying, NSCoding>
#pragma mark Creation Methods
- (instancetype)init;
#pragma mark Working With the Expression Tree
@property (nonatomic, weak) MPExpression *parent; // Documentation: Do not set
- (void)childChanged:(MPExpression *)child
atLocalIndexPath:(NSIndexPath *)indexPath;
- (NSUInteger)numberOfChildren;
- (MPExpression *)childAtIndex:(NSUInteger)index;
- (void)setChild:(MPExpression *)child
atIndex:(NSUInteger)index;
#pragma mark Evaluating Functions
- (double)doubleValue;
#pragma mark Working With Functions
- (BOOL)isEqualToFunction:(MPFunction *)aFunction;
@end
@interface MPFunction (MPFunctionExtensionMethods)
#pragma mark Children
// May be overridden for performance improvements
- (NSArray *)children;
#pragma mark Evaluating Functions
- (float)floatValue;
- (int)intValue;
- (NSInteger)integerValue;
- (long long)longLongValue;
- (NSString *)description;
- (NSUInteger)hash;
@end