1 /// 2 module plot2d.util; 3 4 public 5 { 6 import std.math; 7 import std.algorithm; 8 import std.range; 9 import std..string : format; 10 import std.conv : to, text; 11 import std.experimental.logger; 12 13 import plot2d.backend; 14 } 15 16 /// 17 void set(alias f, T)(ref T value, auto ref const T b) 18 { value = f(value, b); }