blob: c5948eb8437a5f5c7fbe33738634f409d3f1058f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// NSDictionary+LispExtensions.h
// Moxie
//
// Created by Brian Cully on Mon Sep 13 2004.
// Copyright (c) 2004 Brian Cully. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface NSDictionary (LispExtensions)
+ (NSMutableDictionary *)dictionaryWithAlist: (NSArray *)attrList;
- (NSString *)lispForm;
@end
|