Invizory/sperm

View on GitHub
lib/sperm/groups/intmod.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Sperm::Groups
  # Represents Z/nZ group.
  #
  module Zn
    def include?(element)
      (0...modulo).include?(element)
    end
  end
end