Pair.h 290 B

12345678910111213
  1. #import <Foundation/Foundation.h>
  2. #import "Sequence.h"
  3. @interface Pair : NSObject
  4. @property(nonatomic, readonly) id left;
  5. @property(nonatomic, readonly) id right;
  6. - (Pair *)initWithLeft:(id)aKey right:(id)aValue;
  7. - (Sequence *)toSequence;
  8. + (Pair *)left:(id)aLeft right:(id)aRight;
  9. @end