Class: Origen::Value::Z
Overview
Represents a single bit value of 'Y'
Instance Method Summary collapse
- #x? ⇒ Boolean (also: #undefined?)
- #x_or_z? ⇒ Boolean (also: #z_or_x?)
- #z? ⇒ Boolean (also: #hi_z?)
Instance Method Details
#x? ⇒ Boolean Also known as: undefined?
37 38 39 |
# File 'lib/origen/value.rb', line 37 def x? false end |
#x_or_z? ⇒ Boolean Also known as: z_or_x?
42 43 44 |
# File 'lib/origen/value.rb', line 42 def x_or_z? true end |
#z? ⇒ Boolean Also known as: hi_z?
32 33 34 |
# File 'lib/origen/value.rb', line 32 def z? true end |