Compare commits

...

3 Commits

Author SHA1 Message Date
Tristan B. Velloza Kildaire 7adea716c4 Merge branch 'master' into feature/tree 2024-05-02 16:24:44 +02:00
Tristan B. Velloza Kildaire b6106883da ConfigEntry
- Space fix
2024-05-02 08:32:38 +02:00
Tristan B. Velloza Kildaire 29064908e7 niknaks.functional
- Cleaned up
2024-05-02 08:15:00 +02:00
2 changed files with 2 additions and 5 deletions

View File

@ -345,7 +345,6 @@ public struct ConfigEntry
{
return numeric();
}
else static if(__traits(isSame, T, string[]))
{
return array();

View File

@ -5,7 +5,8 @@
*/
module niknaks.functional;
import std.traits : isAssignable;
import std.traits : isAssignable, isFunction, isDelegate, ParameterTypeTuple, ReturnType;
import std.functional : toDelegate;
/**
* Predicate for testing an input type
@ -25,9 +26,6 @@ template Predicate(T)
alias Predicate = bool delegate(T);
}
import std.traits : isFunction, isDelegate, ParameterTypeTuple, isFunction, ReturnType;
import std.functional : toDelegate;
/**
* Given the symbol of a function or
* delegate this will return a new