るりまサーチ

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

別のキーワード

  1. streamui ins
  2. rubygems/user_interaction ins
  3. ins
  4. ins_methods_i
  5. ins gem::streamui

モジュール

検索結果

<< 1 2 3 ... > >>

Gem::Installer#spec -> Gem::Specification (21202.0)

インストールしようとしている Gem に対応する Gem::Specification のインスタンスを返します。

...インストールしようとしている Gem に対応する Gem::Specification のインスタンスを返します。...

Gem::Uninstaller#spec -> Gem::Specification (21202.0)

Gem::Uninstaller#uninstall_gem の実行中のみセットされます。

...Gem::Uninstaller#uninstall_gem の実行中のみセットされます。...

IRB::Inspector#inspect_value(v) -> () (18201.0)

ライブラリ内部で使用します。

ライブラリ内部で使用します。

RubyVM::InstructionSequence#inspect -> String (15201.0)

self の情報をラベルとパスを含んだ人間に読みやすい文字列にして返します。

...んだ人間に読みやすい文字列にして返します。

//emlist[例][ruby]{
iseq = RubyVM::InstructionSequence.compile('num = 1 + 2')
iseq.inspect # => "<RubyVM::InstructionSequence:<compiled>@<compiled>>"
//}

@see RubyVM::InstructionSequence#label,
RubyVM::InstructionSequence#path...

ARGF.class#inspect -> String (12201.0)

常に文字列 "ARGF" を返します。

常に文字列 "ARGF" を返します。

絞り込み条件を変える

Addrinfo#inspect_sockaddr -> String (12201.0)

アドレスやポート番号などの情報を人間に読める形の文字列で返します。

...などの情報を人間に読める形の文字列で返します。

require 'socket'

Addrinfo.tcp("localhost", 80).inspect_sockaddr #=> "127.0.0.1:80"
Addrinfo.tcp("ip6-localhost", 80).inspect_sockaddr #=> "[::1]:80"
Addrinfo.unix("/tmp/sock").inspect_sockaddr #=> "/tmp/sock"...

Array#inspect -> String (12201.0)

自身の情報を人間に読みやすい文字列にして返します。

...自身の情報を人間に読みやすい文字列にして返します。

//emlist[例][ruby]{
[1, 2, 3, 4].to_s # => "[1, 2, 3, 4]"
[1, 2, 3, 4].inspect # => "[1, 2, 3, 4]"
//}...

BigDecimal#inspect -> String (12201.0)

BigDecimal オブジェクトを表す文字列を返します。

...BigDecimal オブジェクトを表す文字列を返します。

//emlist[][ruby]{
require "bigdecimal"
BigDecimal("1234.5678").inspect
# => "0.12345678e4"
//}...

Bignum#inspect(base = 10) -> String (12201.0)

self を引数で指定した基数の文字列表現に変換します。

self を引数で指定した基数の文字列表現に変換します。

@param base 基数を 2 から 36 の整数で指定します。

12345654321.to_s #=> "12345654321"
12345654321.to_s(2) #=> "1011011111110110111011110000110001"
12345654321.to_s(8) #=> "133766736061"
12345654321.to_s(16) #=> "2dfdbbc31"
78546939656932.to_s(36) ...

CSV#inspect -> String (12201.0)

ASCII 互換文字列で自身の情報を表したものを返します。

...ASCII 互換文字列で自身の情報を表したものを返します。

//emlist[例][ruby]{
require "csv"

csv = CSV.new("header1,header2\nrow1_1,row1_2")
csv.inspect # => "<#CSV io_type:StringIO encoding:UTF-8 lineno:0 col_sep:\",\" row_sep:\"\\n\" quote_char:\"\\\"\">"
//}...

絞り込み条件を変える

<< 1 2 3 ... > >>