Return a new Function object with the body_ attribute set to value.
pure int answer(); mixin( refract!(answer, "answer").withName("theAnswer") .withBody("{ return 42; }") .mixture); static assert(theAnswer() == 42);
See Implementation
Return a new Function object with the body_ attribute set to value.