方法
类公共方法
new(value) 链接
源代码: 显示 | 在 GitHub 上
# File activerecord/lib/active_record/connection_adapters/postgresql/oid/bit.rb, line 30 def initialize(value) @value = value end
实例公共方法
binary?() 链接
源代码: 显示 | 在 GitHub 上
# File activerecord/lib/active_record/connection_adapters/postgresql/oid/bit.rb, line 38 def binary? /\A[01]*\Z/.match?(value) end
hex?() 链接
源代码: 显示 | 在 GitHub 上
# File activerecord/lib/active_record/connection_adapters/postgresql/oid/bit.rb, line 42 def hex? /\A[0-9A-F]*\Z/i.match?(value) end
to_s() 链接
源代码: 显示 | 在 GitHub 上
# File activerecord/lib/active_record/connection_adapters/postgresql/oid/bit.rb, line 34 def to_s value end