package tox func TernaryOperation(b bool, t, f interface{}) interface{} { if b { return t } return f }