Class: CodeCook::Find::HashSet::HashSetT
- Inherits:
-
CStruct
- Object
- CStruct
- CodeCook::Find::HashSet::HashSetT
- Defined in:
- 手写代码必备手册(Ruby版).rb
Overview
哈希集合
Defined Under Namespace
Classes: Node
Instance Attribute Summary (collapse)
-
- (Object) cmp
元素的比较函数.
-
- (Object) hash
元素的哈希函数.
Instance Attribute Details
- (Object) cmp
元素的比较函数
227 228 229 |
# File '手写代码必备手册(Ruby版).rb', line 227 def cmp @cmp end |
- (Object) hash
元素的哈希函数
225 226 227 |
# File '手写代码必备手册(Ruby版).rb', line 225 def hash @hash end |