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