Function.setReturnType

Set the return type.

struct Function
setReturnType
(
string value
)

Examples

pure int answer();
mixin(
  refract!(answer, "answer").setName("realAnswer")
  .setReturnType("real")
  .mixture);
static assert(is(typeof(realAnswer()) == real));

Meta