niknaks.functional

- Cleaned up
This commit is contained in:
Tristan B. Velloza Kildaire 2024-05-02 08:15:00 +02:00
parent e0e082dd69
commit 29064908e7
1 changed files with 2 additions and 4 deletions

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