|
1 | 1 | interface headers |
2 | | - const clone : (self) -> headers |
3 | | - const append : (self, string, string, nil|boolean) -> () |
4 | | - const each : (self) -> ((self) -> (string, string, boolean)) |
5 | | - const has : (self, string) -> (boolean) |
6 | | - const delete : (self, string) -> (boolean) |
7 | | - const geti : (self, integer) -> (string, string, boolean) |
8 | | - const get_as_sequence : (self, string) -> ({"n": integer, integer:string}) |
9 | | - const get : (self, string) -> (string*) |
10 | | - const get_comma_separated : (self, string) -> (string|nil) |
11 | | - const modifyi : (self, integer, string, boolean?) -> () |
12 | | - const upsert : (self, string, string, boolean?) -> () |
13 | | - const sort : (self) -> () |
14 | | - const dump : (self, nil|file, nil|string) -> () |
| 2 | + const clone: (self) -> (headers) |
| 3 | + const append: (self, string, string, boolean?) -> () |
| 4 | + const each: (self) -> ((self) -> (string, string, boolean)) |
| 5 | + const has: (self, string) -> (boolean) |
| 6 | + const delete: (self, string) -> (boolean) |
| 7 | + const geti: (self, integer) -> (string, string, boolean) |
| 8 | + const get_as_sequence: (self, string) -> ({"n": integer, integer:string}) |
| 9 | + const get: (self, string) -> (string*) |
| 10 | + const get_comma_separated: (self, string) -> (string|nil) |
| 11 | + const modifyi: (self, integer, string, boolean?) -> () |
| 12 | + const upsert: (self, string, string, boolean?) -> () |
| 13 | + const sort: (self) -> () |
| 14 | + const dump: (self, file?, string?) -> () |
15 | 15 | end |
16 | 16 |
|
17 | 17 | new : () -> (headers) |
0 commit comments