class Havox::Edge

Attributes

attributes[R]
from[R]
to[R]

Public Class Methods

new(from, to, attributes) click to toggle source
# File lib/havox/classes/edge.rb, line 5
def initialize(from, to, attributes)
  @from = from
  @to = to
  @attributes = attributes
end