Class: Node::Base
- Inherits:
-
Object
- Object
- Node::Base
- Defined in:
- lib/igo/trie.rb
Overview
BASEノード用のメソッドが定義されているクラス
Class Method Summary collapse
-
.ids(nid) ⇒ Object
BASEノードに格納するID値をエンコードする.
Class Method Details
.ids(nid) ⇒ Object
BASEノードに格納するID値をエンコードする
19 20 21 |
# File 'lib/igo/trie.rb', line 19 def self.ids(nid) return (-1 * nid) - 1 end |