1229件ヒット
[201-300件を表示]
(0.075秒)
ライブラリ
- ビルトイン (667)
-
cgi
/ html (36) - date (24)
- getoptlong (24)
- json (72)
- openssl (24)
- optparse (24)
- prettyprint (12)
-
rexml
/ document (24) - rss (24)
- socket (108)
- stringio (12)
- thread (10)
- un (12)
-
webrick
/ server (12) -
win32
/ registry (96) - win32ole (12)
- zlib (12)
クラス
-
ARGF
. class (24) - Array (120)
- BasicSocket (48)
- Complex (12)
- Date (24)
-
Encoding
:: Converter (24) - Float (22)
- GetoptLong (24)
- IO (44)
- IPSocket (12)
- Integer (36)
-
JSON
:: State (72) - OptionParser (24)
- PrettyPrint (12)
-
REXML
:: Element (24) -
RSS
:: Maker :: ItemsBase (24) - Random (36)
- Range (104)
-
RubyVM
:: InstructionSequence (12) - Socket (24)
- String (12)
- StringIO (12)
-
Thread
:: SizedQueue (60) - UDPSocket (12)
- UNIXSocket (12)
-
WEBrick
:: Cookie (24) -
WEBrick
:: GenericServer (12) -
WIN32OLE
_ TYPE (12) -
Win32
:: Registry (96) -
Zlib
:: GzipReader (12)
モジュール
-
CGI
:: HtmlExtension (36) - Comparable (27)
- Enumerable (144)
- Kernel (12)
-
OpenSSL
:: Buffering (24)
キーワード
- << (12)
- between? (24)
-
check
_ circular? (12) - clamp (15)
- depth= (12)
-
descriptor
_ length (12) -
each
_ element _ with _ attribute (12) -
each
_ element _ with _ text (12) - enq (12)
-
file
_ field (12) - get (12)
-
get
_ option (12) - httpd (12)
- info (12)
- max= (12)
-
max
_ age (12) -
max
_ age= (12) -
max
_ by (48) -
max
_ key _ length (12) -
max
_ nesting (12) -
max
_ nesting= (12) -
max
_ size (12) -
max
_ size= (12) -
max
_ value _ length (12) -
max
_ value _ name _ length (12) - maxwidth (12)
- min (46)
- minmax (48)
-
minmax
_ by (24) -
next
_ float (11) -
num
_ keys (12) -
num
_ values (12) -
ole
_ type (12) -
password
_ field (12) - pread (8)
-
prev
_ float (11) - push (12)
- putback (24)
- rand (36)
-
read
_ nonblock (48) - readpartial (48)
- recv (12)
-
recv
_ nonblock (12) - recvfrom (36)
-
recvfrom
_ nonblock (24) - recvmsg (12)
-
recvmsg
_ nonblock (12) - sample (48)
- shuffle! (24)
- summarize (24)
- sysread (12)
-
text
_ field (12) -
to
_ a (12) -
to
_ f (12) -
to
_ h (12) -
to
_ hash (12) - tokens (12)
- upto (60)
- wtime (12)
検索結果
先頭5件
-
JSON
:: State # max _ nesting -> Integer (6126.0) -
生成される JSON 形式の文字列のネストの深さの最大値を返します。
...ew(max_nesting: 2)
json_state.max_nesting # => 2
JSON.generate([[]], json_state)
JSON.generate([[[]]], json_state) # => JSON::NestingError
//}
//emlist[例 ネストの深さチェックを行わない][ruby]{
require "json"
json_state = JSON::State.new(max_nesting: 0)
json_state.max_ne... -
JSON
:: State # max _ nesting=(depth) (6126.0) -
生成される JSON 形式の文字列のネストの深さの最大値をセットします。
...いません。
//emlist[例][ruby]{
require "json"
json_state = JSON::State.new(max_nesting: 2)
json_state.max_nesting # => 2
JSON.generate([[]], json_state)
json_state.max_nesting = 3
json_state.max_nesting # => 3
JSON.generate([[[[]]]], json_state) # => JSON::NestingError... -
Thread
:: SizedQueue # max=(n) (6120.0) -
キューの最大サイズを設定します。
...キューの最大サイズを設定します。
@param n キューの最大サイズを指定します。
//emlist[例][ruby]{
require 'thread'
q = SizedQueue.new(4)
q.max # => 4
q.max = 5
q.max # => 5
//}......キューの最大サイズを設定します。
@param n キューの最大サイズを指定します。
//emlist[例][ruby]{
q = SizedQueue.new(4)
q.max # => 4
q.max = 5
q.max # => 5
//}... -
RSS
:: Maker :: ItemsBase # max _ size (6118.0) -
@todo 現在のmax_sizeの値を取得します.デフォルトでは -1になっています.
...@todo
現在のmax_sizeの値を取得します.デフォルトでは
-1になっています.... -
WEBrick
:: Cookie # max _ age -> Integer (6103.0) -
クッキーの寿命を整数(単位は秒)で表すアクセサです。
クッキーの寿命を整数(単位は秒)で表すアクセサです。
@param value クッキーの寿命を正の整数で指定します。0 は直ちに破棄される事を意味する。 -
WEBrick
:: Cookie # max _ age=(value) (6103.0) -
クッキーの寿命を整数(単位は秒)で表すアクセサです。
クッキーの寿命を整数(単位は秒)で表すアクセサです。
@param value クッキーの寿命を正の整数で指定します。0 は直ちに破棄される事を意味する。 -
RSS
:: Maker :: ItemsBase # max _ size=() (6102.0) -
@todo 出力するitemの数の最大値を設定します.
@todo
出力するitemの数の最大値を設定します. -
Array
# minmax -> [object , object] (6101.0) -
自身の各要素のうち最小の要素と最大の要素を 要素とするサイズ 2 の配列を返します。
...同士の比較をブロックを用いて行います。
//emlist[例][ruby]{
a = %w(albatross dog horse)
a.minmax #=> ["albatross", "horse"]
a.minmax{|a,b| a.length <=> b.length } #=> ["dog", "albatross"]
[].minmax # => [nil, nil]
//}
@see Enumerable#minmax... -
Array
# minmax {|a , b| . . . } -> [object , object] (6101.0) -
自身の各要素のうち最小の要素と最大の要素を 要素とするサイズ 2 の配列を返します。
...同士の比較をブロックを用いて行います。
//emlist[例][ruby]{
a = %w(albatross dog horse)
a.minmax #=> ["albatross", "horse"]
a.minmax{|a,b| a.length <=> b.length } #=> ["dog", "albatross"]
[].minmax # => [nil, nil]
//}
@see Enumerable#minmax... -
Enumerable
# minmax -> [object , object] (6101.0) -
Enumerable オブジェクトの各要素のうち最小の要素と最大の要素を 要素とするサイズ 2 の配列を返します。
...素同士の比較を
ブロックを用いて行います。
//emlist[例][ruby]{
a = %w(albatross dog horse)
a.minmax #=> ["albatross", "horse"]
a.minmax{|a,b| a.length <=> b.length } #=> ["dog", "albatross"]
[].minmax # => [nil, nil]
//}
@see Enumerable#sort......較を
ブロックを用いて行います。
//emlist[例][ruby]{
a = %w(albatross dog horse)
a.minmax #=> ["albatross", "horse"]
a.minmax{|a,b| a.length <=> b.length } #=> ["dog", "albatross"]
[].minmax # => [nil, nil]
//}
@see Enumerable#sort, Array#minmax... -
Enumerable
# minmax {|a , b| . . . } -> [object , object] (6101.0) -
Enumerable オブジェクトの各要素のうち最小の要素と最大の要素を 要素とするサイズ 2 の配列を返します。
...素同士の比較を
ブロックを用いて行います。
//emlist[例][ruby]{
a = %w(albatross dog horse)
a.minmax #=> ["albatross", "horse"]
a.minmax{|a,b| a.length <=> b.length } #=> ["dog", "albatross"]
[].minmax # => [nil, nil]
//}
@see Enumerable#sort......較を
ブロックを用いて行います。
//emlist[例][ruby]{
a = %w(albatross dog horse)
a.minmax #=> ["albatross", "horse"]
a.minmax{|a,b| a.length <=> b.length } #=> ["dog", "albatross"]
[].minmax # => [nil, nil]
//}
@see Enumerable#sort, Array#minmax...