るりまサーチ

最速Rubyリファレンスマニュアル検索!
472件ヒット [1-100件を表示] (0.095秒)

別のキーワード

  1. openssl g
  2. openssl g=
  3. dh g
  4. dsa g
  5. dh g=

検索結果

<< 1 2 3 ... > >>

RSS::Maker::ImageBase#url (21103.0)

@todo

@todo

RSS::RDF::Image#url (21103.0)

@todo

@todo

RSS::Rss::Channel::Image#url (21103.0)

@todo

@todo

RSS::Maker::ImageBase#url=() (9103.0)

@todo

@todo

RSS::RDF::Image#url= (9103.0)

@todo

@todo

絞り込み条件を変える

RSS::Rss::Channel::Image#url= (9103.0)

@todo

@todo

URI::Generic#merge(rel) -> URI::Generic (6285.0)

自身と与えられたパス rel を連結した新しい URI オブジェクトを生成して返します。

...TP:0x201001c0 URL:http://example.com/foo/bar.html>
URI('http://a/b/c/d;p?q').merge('?y') #=> #<URI::HTTP:0xb7ca2e2c URL:http://a/b/c/d;p?y>
URI('http://a/b/c/d;p?q').merge('/./g') #=> #<URI::HTTP:0xb7ca2738 URL:http://a/g>
URI('http://a/b/c/d;p?q').merge('/../g') #=...
...> #<URI::HTTP:0xb7ca2008 URL:http://a/g>
URI('http://a/b/c/d;p?q').merge('../../../g') #=> #<URI::HTTP:0xb7ca1888 URL:http://a/g>
URI('http://a/b/c/d;p?q').merge('../../../../g') #=> #<URI::HTTP:0xb7ca10a4 URL:http://a/g>...

String#each_grapheme_cluster {|grapheme_cluster| block } -> self (6207.0)

文字列の書記素クラスタに対して繰り返します。

...String#each_char と違って、
Unicode Standard Annex #29 (https://unicode.org/reports/tr29/)
で定義された書記素クラスタに対して繰り返します。

//emlist[例][ruby]{
"a\u0300".each_char.to_a.size # => 2
"a\u0300".each_grapheme_cluster.to_a.size # => 1
//}

@see String#graphe...

WIN32OLE_METHOD#helpstring -> String | nil (6207.0)

メソッドのヘルプ文字列を取得します。

...メソッドのヘルプ文字列を取得します。

helpstringは、IDEがメソッドのバルーンヘルプを表示するような場合に利用可
能な、1行程度でメソッドを説明する文字列です。

@return ヘルプ文字列を返します。未定義ならばnilを返し...
...ます。

tobj = WIN32OLE_TYPE.new('Microsoft Internet Controls', 'IWebBrowser')
method = WIN32OLE_METHOD.new(tobj, 'Navigate')
puts method.helpstring # => Navigates to a URL or file....
<< 1 2 3 ... > >>