class Origen::Value::Z

Represents a single bit value of ‘Y’

Public Instance Methods

hi_z?()
Alias for: z?
undefined?()
Alias for: x?
x?() click to toggle source
# File lib/origen/value.rb, line 37
def x?
  false
end
Also aliased as: undefined?
x_or_z?() click to toggle source
# File lib/origen/value.rb, line 42
def x_or_z?
  true
end
Also aliased as: z_or_x?
z?() click to toggle source
# File lib/origen/value.rb, line 32
def z?
  true
end
Also aliased as: hi_z?
z_or_x?()
Alias for: x_or_z?