cmpMultiWord

Undocumented in source. Be warned that the author may not have intended to support it.
int
cmpMultiWord
(
in ulong[] l
,
in ulong[] r
)

Examples

import std.conv;
alias Uint = uintN!20;
auto x = Uint("31415926535897969393238462");
auto y = Uint("1145141919810893");
assert((x*y).to!string == "35975694425956177975650270094479894166566");
assert((x/y).to!string == "27434090039");

Meta