module Functions
    class Csch < CMathFunction
      def initialize
        super("csch", Proc.new {|arg| 1 / CMath::sinh(arg)})
      end