Sha256: 5bb3f738b6383bcdd84999b1a827b504860f829bd878f71f58f6dd0890c36dd8
Contents?: true
Size: 229 Bytes
Versions: 13
Compression:
Stored size: 229 Bytes
Contents
# -*- coding: utf-8 -*- module Xot module BitUtil module_function def bit(*bits) return nil if bits.compact.empty? bits.reduce(0) {|value, nth| value | (0x1 << nth)} end end# BitUtil end# Xot
Version data entries
13 entries across 13 versions & 1 rubygems