Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/igo/trie.rb

Overview

Stringクラスの拡張

Instance Method Summary collapse

Instance Method Details

#starts_with?(prefix) ⇒ Boolean

文字列がパラメタの接頭辞で開始するかどうかを返却する

prefix

接頭辞

return

true - 接頭辞で開始する

Returns:

  • (Boolean)


11
12
13
14
# File 'lib/igo/trie.rb', line 11

def starts_with?(prefix)
  prefix = prefix.to_s
  self[0, prefix.length] == prefix
end