Sha256: 34cc48a847644cf8a53fb969ed99acfbd47cca0638d844328bb3adf360fb0e66

Contents?: true

Size: 622 Bytes

Versions: 14

Compression:

Stored size: 622 Bytes

Contents

module Wukong
  module Models
    Edge = TypedStruct.new(
      [:src,              Integer],
      [:dest,             Integer]
      )

    MultiEdge = TypedStruct.new(
      [:src,              Integer],
      [:dest,             Integer],
      [:a_follows_b,      Integer],
      [:b_follows_a,      Integer],
      [:a_replies_b,      Integer],
      [:b_replies_a,      Integer],
      [:a_atsigns_b,      Integer],
      [:b_atsigns_a,      Integer],
      [:a_retweets_b,     Integer],
      [:b_retweets_a,     Integer],
      [:a_favorites_b,    Integer],
      [:b_favorites_a,    Integer]
      )

  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
wukong-1.5.4 lib/wukong/models/graph.rb
wukong-1.5.3 lib/wukong/models/graph.rb
wukong-1.5.2 lib/wukong/models/graph.rb
wukong-1.5.1 lib/wukong/models/graph.rb
wukong-1.5.0 lib/wukong/models/graph.rb
wukong-1.4.12 lib/wukong/models/graph.rb
wukong-1.4.11 lib/wukong/models/graph.rb
wukong-1.4.10 lib/wukong/models/graph.rb
wukong-1.4.9 lib/wukong/models/graph.rb
wukong-1.4.7 lib/wukong/models/graph.rb
wukong-1.4.6 lib/wukong/models/graph.rb
wukong-1.4.5 lib/wukong/models/graph.rb
wukong-1.4.2 lib/wukong/models/graph.rb
wukong-1.4.1 lib/wukong/models/graph.rb