ydlib 1.2.1
A collection of utils
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
ydlib
Yeti's D Library
Some useful stuff I made for D
Links:
- Dub package page (Includes documentation)
Install
dub add ydlib
Libraries
ydlib.serialise
TODO: Explain this completely untested library
ydlib.sortedMap
This module gives you a sorted map class
Example
import std.stdio;
import ydlib.sortedMap;
void main() {
// first int is key type
// second is value type
auto map = new SortedMap!(int, int)();
map[0] = 6;
map[2] = 9;
map[1] = 0;
foreach (key, ref value ; map) {
writefln("%d: %d", key, value);
}
}
ydlib.common
Contains common functions that are missing from Phobos
Has a variety of functions, best to look at the documentation
- 1.2.1 released a year ago
- yeti0904/ydlib
- MIT
- Copyright © 2023, yeti0904
- Authors:
- Dependencies:
- none
- Versions:
-
1.3.10 2023-Oct-15 1.3.9 2023-Oct-15 1.3.8 2023-Oct-15 1.3.7 2023-Oct-15 1.3.6 2023-Oct-15 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
258 downloads total
-
- Score:
- 0.6
- Short URL:
- ydlib.dub.pm