class Origen::Value::X

Represents a single bit value of ‘X’

Public Instance Methods

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