Overview
Comment: | storage_pools: new package for entities related to storage pools |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
0a176c90c463e17fd80efea064c17121 |
User & Date: | nat on 2014-02-10 19:50:20 |
Other Links: | manifest | tags |
Context
2014-02-11
| ||
20:57 | s_expressions-caches: instantiation of Natools.S_Expressions.Generic_Caches with default storage pool check-in: 2b97af7bf2 user: nat tags: trunk | |
2014-02-10
| ||
19:50 | storage_pools: new package for entities related to storage pools check-in: 0a176c90c4 user: nat tags: trunk | |
2014-02-09
| ||
20:52 | s_expressions-generic_caches: new package for simnple memory container of S-expression check-in: a23e614377 user: nat tags: trunk | |
Changes
Added src/natools-storage_pools.ads version [defed94c87].
|
Modified src/natools-string_slices.ads from [117c1cbe46] to [d5a97a28c2].
︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | + | ------------------------------------------------------------------------------ -- Natools.String_Slices provide an object that represents a substring of a -- -- shared parent string. -- ------------------------------------------------------------------------------ private with Natools.References; private with Natools.Storage_Pools; package Natools.String_Slices is pragma Preelaborate (String_Slices); ----------------------- -- String range type -- ----------------------- |
︙ | |||
173 174 175 176 177 178 179 | 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | - - - - - + + | function Duplicate (S : Slice) return Slice; -- Create a new parent string and a slice designating it. -- This does not copy parts of S parent string outside of S range. -- Semantically equivalent to (To_Slice (To_String (S))). private |