export const isGt = (threshold) => {
  return ({value, getter}) => {
    return compareToThreshold(value, gt, threshold, getter, Errors.isGt)
  }
}