Class: CodeCook::String

Inherits:
Object
  • Object
show all
Defined in:
手写代码必备手册(Ruby版).rb

Instance Method Summary (collapse)

Instance Method Details

- (Object) huffman



685
686
687
# File '手写代码必备手册(Ruby版).rb', line 685

def huffman
    @huffman ||= Greedy::HuffmanEncoding.new(self)
end