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