This is a fork of Ordered Associative Array, slightly modified by Rėdas Peškaitis.
- tuple based OAA constructor
- method to export array of (key : value) tuples
- methods to get, insert and delete values by integer index in the order of keys.
Repository: https://github.com/re-pe/d-oaa
Ordered Associative Array modeled from Python's OrderedDict. Subtypes built-in associative arrays.
It works by using an array to keep the key order in addition to a regular associative array.
Ordered Associative Array was created by Cédric Picard.
Email: cedric.picard@efrei.net
Repository: https://github.com/cym13/miscD
This program is under the GPLv3 License.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.