るりまサーチ

最速Rubyリファレンスマニュアル検索!
1544件ヒット [1-100件を表示] (0.108秒)
トップページ > クエリ:i[x] > クエリ:class[x] > クエリ:value[x]

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. csv to_i
  5. ipaddr to_i

ライブラリ

モジュール

検索結果

<< 1 2 3 ... > >>

static VALUE include_class_new(VALUE module, VALUE super) (32500.0)

super をスーパークラスとして モジュールの「化身」クラスを作成し返します。

super をスーパークラスとして
モジュールの「化身」クラスを作成し返します。

static int ins_methods_i(ID key, NODE *body, VALUE ary) (26216.0)

rb_class_instance_methods() のイテレータブロック (通常版)。

...rb_class_instance_methods() のイテレータブロック (通常版)。...

static int ins_methods_priv_i(ID key, NODE *body, VALUE ary) (26216.0)

rb_class_instance_methods() のイテレータブロック (private メソッド版)。

...rb_class_instance_methods() のイテレータブロック
(private メソッド版)。...

static int ins_methods_prot_i(ID key, NODE *body, VALUE ary) (26216.0)

rb_class_instance_methods() のイテレータブロック (protected メソッド版)。

...rb_class_instance_methods() のイテレータブロック
(protected メソッド版)。...

Net::HTTPResponse#value -> nil (18219.0)

レスポンスが 2xx(成功)でなかった場合に、対応する 例外を発生させます。

...せます。

@raise HTTPError レスポンスが 1xx であるか、 net/http が知らない
種類のレスポンスである場合に発生します。
@raise HTTPRetriableError レスポンスが 3xx である場合に発生します。
@raise HTTPServerException レスポン...
...す。
@raise HTTPFatalError レスポンスが 5xx である場合に発生します。

//emlist[例 レスポンスが 2xx(成功)][ruby]{
require 'net/http'

uri = "http://www.example.com/index.html"
response = Net::HTTP.get_response(URI.parse(uri))
response.value # => nil
//}

//emlist[例 レ...
...スポンスが 2xx以外][ruby]{
require 'net/http'

uri = "http://www.example.com/invalid.html"
response = Net::HTTP.get_response(URI.parse(uri))
begin
response.value
rescue => e
e.class # => Net::HTTPServerException
e.message # => 404 "Not Found"
end
//}...

絞り込み条件を変える

REXML::CData#value -> String (15219.0)

テキスト文字列を返します。

...テキスト文字列を返します。

@see REXML::Text#value, REXML::Text#to_s

//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root><![CDATA[foobar baz]]></root>
EOS
doc.root[0].class # => REXML::CData
doc.root[0].value # => "foobar baz"
//}...

OpenSSL::ASN1.#PrintableString(value) -> OpenSSL::ASN1::PrintableString -> OpenSSL::ASN1::PrintableString (12715.0)

ASN.1 の PrintableString 型の値を表現する Ruby のオブジェクトを 生成します。

....1 の PrintableString 型の値を表現する Ruby のオブジェクトを
生成します。

OpenSSL::ASN1::PrintableString.new と同じです。

@param value ASN.1 値を表す Ruby のオブジェクト(文字列)
@param tag タグ番号
@param tagging タグ付けの方法(:IMPLICIT もし...
...くは :EXPLICIT)
@param tag_class タグクラス(:UNIVERSAL, :CONTEXT_SPECIFIC, :APPLICATION, :PRIVATE のいずれか)...

OpenSSL::ASN1.#PrintableString(value, tag, tagging, tag_class) -> OpenSSL::ASN1::PrintableString (12715.0)

ASN.1 の PrintableString 型の値を表現する Ruby のオブジェクトを 生成します。

....1 の PrintableString 型の値を表現する Ruby のオブジェクトを
生成します。

OpenSSL::ASN1::PrintableString.new と同じです。

@param value ASN.1 値を表す Ruby のオブジェクト(文字列)
@param tag タグ番号
@param tagging タグ付けの方法(:IMPLICIT もし...
...くは :EXPLICIT)
@param tag_class タグクラス(:UNIVERSAL, :CONTEXT_SPECIFIC, :APPLICATION, :PRIVATE のいずれか)...

VALUE rb_class_new_instance(int argc, VALUE *argv, VALUE klass) (12616.0)

Class#new の実体です。

...
Class
#new の実体です。...

VALUE rb_class_instance_methods(int argc, VALUE *argv, VALUE mod) (12600.0)

Module#instance_methods の実体。 モジュール mod に定義されている public メソッド名の リストを文字列の配列で返します。

...Module#instance_methods の実体。
モジュール mod に定義されている public メソッド名の
リストを文字列の配列で返します。...

絞り込み条件を変える

<< 1 2 3 ... > >>