class BitcoinNode::Protocol::FieldStruct

Public Instance Methods

inspect()
Alias for: to_s
to_s() click to toggle source
# File lib/bitcoin_node/protocol/fields.rb, line 8
def to_s
  type = self.class.name ? self.class.name.split('::').last : '' 
  "#<struct #{type} #{values.join(', ')}>" 
end
Also aliased as: inspect