import type { FnIsReal, FnIsSquare } from "../interfaces/arithmetic" export const isReal: FnIsReal = (a) => true export const isSquare: FnIsSquare = (a) => a >= 0