Differences From Artifact [f476ab6e67]:
- File src/natools-s_expressions.ads — part of check-in [34988e159c] at 2014-03-17 20:00:34 on branch trunk — s_expression: new version of Descriptor.Next without event output (user: nat, size: 5313) [annotate] [blame] [check-ins using]
To Artifact [18694bf840]:
- File src/natools-s_expressions.ads — part of check-in [6f257a4f4d] at 2014-05-08 18:36:49 on branch trunk — Move atom comparison function from Natools.S_Expressions.Interpreters to Natools.S_Expressions (user: nat, size: 5373) [annotate] [blame] [check-ins using]
︙ | |||
52 53 54 55 56 57 58 59 60 61 62 63 64 65 | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | + + | subtype Count is Ada.Streams.Stream_Element_Count; subtype Atom is Ada.Streams.Stream_Element_Array; Null_Atom : constant Atom (1 .. 0) := (others => <>); function To_String (Data : in Atom) return String; function To_Atom (Data : in String) return Atom; function Less_Than (Left, Right : Atom) return Boolean; ----------------------------- -- S-expression Descriptor -- ----------------------------- |
︙ |