class BlifUtils::Netlist::Component
Public Instance Methods
isGate?()
click to toggle source
# File lib/blifutils/netlist.rb, line 40 def isGate? return self.kind_of?(BlifUtils::Netlist::LogicGate) end
isLatch?()
click to toggle source
# File lib/blifutils/netlist.rb, line 44 def isLatch? return self.kind_of?(BlifUtils::Netlist::Latch) end
isSubcircuit?()
click to toggle source
# File lib/blifutils/netlist.rb, line 48 def isSubcircuit? return self.kind_of?(BlifUtils::Netlist::SubCircuit) end