別のキーワード
ライブラリ
- ビルトイン (104)
- mkmf (48)
-
net
/ http (24) -
net
/ imap (72) -
rdoc
/ generator / json _ index (24) - resolv (12)
-
rubygems
/ commands / dependency _ command (12) -
rubygems
/ commands / search _ command (12) -
rubygems
/ commands / which _ command (12) -
rubygems
/ gem _ path _ searcher (96) -
rubygems
/ source _ index (12) -
rubygems
/ source _ info _ cache (48) - strscan (12)
- uri (12)
クラス
- Array (44)
-
Encoding
:: Converter (24) -
Gem
:: Commands :: DependencyCommand (12) -
Gem
:: GemPathSearcher (84) -
Gem
:: SourceIndex (12) -
Gem
:: SourceInfoCache (48) -
Net
:: HTTP (24) -
Net
:: IMAP (72) -
RDoc
:: Generator :: JsonIndex (24) - Range (24)
-
Resolv
:: DNS (12) - String (12)
- StringScanner (12)
-
URI
:: HTTP (12)
モジュール
- Kernel (48)
キーワード
- GemPathSearcher (12)
-
NEWS for Ruby 2
. 0 . 0 (12) -
SEARCH
_ INDEX _ FILE (12) - SearchCommand (12)
- WhichCommand (12)
- bsearch (48)
-
bsearch
_ index (20) -
check
_ signedness (24) -
convertible
_ int (24) - convpath (12)
- find (12)
-
find
_ all (12) -
find
_ gems (12) - generate (12)
-
init
_ gemspecs (12) -
lib
_ dirs _ for (12) -
matching
_ file? (12) -
matching
_ files (12) -
net
/ http (12) -
net
/ imap (12) - new (24)
- post (24)
- rake (12)
-
rdoc
/ generator / json _ index (12) -
request
_ uri (12) - rss (12)
-
ruby 1
. 6 feature (12) - rubygems (12)
-
rubygems
/ commands / lock _ command (12) -
rubygems
/ commands / search _ command (12) -
rubygems
/ gem _ path _ searcher (12) -
search
_ convpath (12) -
search
_ full (12) -
search
_ method (12) -
search
_ with _ source (24) - sort (12)
- thread (12)
-
tr
_ s! (12) - tsort (12)
-
uid
_ search (12) -
uid
_ sort (12) -
uid
_ thread (12)
検索結果
先頭5件
- static NODE * search
_ method(VALUE klass , ID id , VALUE *origin) - Net
:: IMAP # search(keys , charset = nil) -> [Integer] - Gem
:: SourceInfoCache . search(*args) -> [Gem :: Specification] - Gem
:: SourceInfoCache # search(pattern , platform _ only = false , all = false) -> [Gem :: Specification] - Gem
:: SourceIndex # search(gem _ pattern , platform _ only = false) -> [Gem :: Specification]
-
static NODE * search
_ method(VALUE klass , ID id , VALUE *origin) (26100.0) -
クラス klass から id という名前のメソッドエントリを検索し、 返します。見付からなければ NULL を返します。
クラス klass から id という名前のメソッドエントリを検索し、
返します。見付からなければ NULL を返します。
このメソッドは undef を考慮しません。つまり m_tbl に
エントリがあるならその内容に関らず探索は成功します。 -
Net
:: IMAP # search(keys , charset = nil) -> [Integer] (18141.0) -
SEARCH コマンドを送り、条件に合うメッセージの message sequence number を配列で返します。
...SEARCH コマンドを送り、条件に合うメッセージの message sequence number
を配列で返します。
Net::IMAP#examine もしくは Net::IMAP#select で
指定したメールボックスを検索対象とします。
検索の条件は key に文字列の1次元配列もしくは......ます。
詳しくは 2060 の 6.4.4 を見てください。
例:
p imap.search(["SUBJECT", "hello"])
#=> [1, 6, 7, 8]
p imap.search(["SUBJECT", "hello", "FROM", "foo@example.com"])
#=> [6, 7]
p imap.search('SUBJECT "hello"')
#=> [1, 6, 7, 8]
@param key 検索キー(文字列の配......列もしくは文字列)
@param charset 検索に用いるcharset
@see Net::IMAP#search... -
Gem
:: SourceInfoCache . search(*args) -> [Gem :: Specification] (18113.0) -
与えられた条件を満たす Gem::Specification のリストを返します。
...与えられた条件を満たす Gem::Specification のリストを返します。
@param args 検索条件を指定します。Gem::SourceInfoCache#search と引数を合わせてください。
@see Gem::SourceInfoCache#search... -
Gem
:: SourceInfoCache # search(pattern , platform _ only = false , all = false) -> [Gem :: Specification] (18107.0) -
与えられた条件を満たす Gem::Specification のリストを返します。
...ンスを指定します。
@param platform_only 真を指定するとプラットフォームが一致するもののみを返します。デフォルトは偽です。
@param all 真を指定するとキャッシュを更新してから検索を実行します。
@see Gem::SourceIndex#search... -
Gem
:: SourceIndex # search(gem _ pattern , platform _ only = false) -> [Gem :: Specification] (18101.0) -
引数で指定された条件を満たす Gem のリストを返します。
引数で指定された条件を満たす Gem のリストを返します。
@param gem_pattern 検索したい Gem を表す Gem::Dependency のインスタンスを指定します。
@param platform_only 真を指定するとプラットフォームが一致するもののみを返します。デフォルトは偽です。 -
StringScanner
# search _ full(regexp , s , f) -> object (6143.0) -
regexp で指定された正規表現とマッチするまで文字列をスキャンします。
...になります。
* search_full(regexp, true, true) は StringScanner#scan_until と同等。
* search_full(regexp, true, false) は StringScanner#skip_until と同等。
* search_full(regexp, false, true) は StringScanner#check_until と同等。
* search_full(regexp, false, fals......ます。
//emlist[例][ruby]{
require 'strscan'
s = StringScanner.new('test string')
p s.search_full(/t/, true, true) #=> "t"
p s.search_full(/str/, false, true) #=> "est str"
p s.search_full(/string/, true, true) #=> "est string"
//}
@see StringScanner#scan_until StringScanner#ski... -
Net
:: IMAP # uid _ search(keys , charset = nil) -> [Integer] (6141.0) -
UID SEARCH コマンドを送り、条件に合うメッセージの UID を配列で返します。
...UID SEARCH コマンドを送り、条件に合うメッセージの UID
を配列で返します。
Net::IMAP#examine もしくは Net::IMAP#select で
指定したメールボックスを検索対象とします。
検索の条件は key に文字列の1次元配列もしくは文字列で渡......。
詳しくは 2060 の 6.4.4 を見てください。
例:
p imap.uid_search(["SUBJECT", "hello"])
#=> [1, 6, 7, 8]
p imap.uid_search(["SUBJECT", "hello", "FROM", "foo@example.com"])
#=> [6, 7]
p imap.uid_search('SUBJECT "hello"')
#=> [1, 6, 7, 8]
@param key 検索キー(文字列......の配列もしくは文字列)
@param charset 検索に用いるcharset
@see Net::IMAP#uid_search... -
Encoding
:: Converter . search _ convpath(source _ encoding , destination _ encoding , options) -> Array (6131.0) -
引数で指定した文字エンコーディングの変換の経路を配列にして返します。
...Encoding::Converter.search_convpath("ISO-8859-1", "EUC-JP")
# => [[#<Encoding:ISO-8859-1>, #<Encoding:UTF-8>],
# [#<Encoding:UTF-8>, #<Encoding:EUC-JP>]]
p Encoding::Converter.search_convpath("ISO-8859-1", "EUC-JP", universal_newline: true)
# or
p Encoding::Converter.search_convpath("ISO-8859-......],
# [#<Encoding:UTF-8>, #<Encoding:EUC-JP>],
# "universal_newline"]
p Encoding::Converter.search_convpath("ISO-8859-1", "UTF-32BE", universal_newline: true)
# or
p Encoding::Converter.search_convpath("ISO-8859-1", "UTF-32BE", newline: :universal)
# => [[#<Encoding:ISO-8859-1>, #<Encoding:U... -
Gem
:: SourceInfoCache . search _ with _ source(*args) -> Array (6113.0) -
与えられた条件を満たす Gem::Specification と URL のリストを返します。
...与えられた条件を満たす Gem::Specification と URL のリストを返します。
@param args 検索条件を指定します。Gem::SourceInfoCache#search_with_source と引数を合わせてください。
@see Gem::SourceInfoCache#search_with_source...