sS hcheckbox(S name, bool checked, O... params) { ret tag input("", paramsPlus(params, "type", "checkbox", "name", name, checked ? "checked" : null, "1")); } sS hcheckbox(S name) { ret hcheckbox(name, false); } sS hcheckbox(S name, S text) { ret hcheckboxWithText(name, text); }