339件ヒット
[1-100件を表示]
(0.099秒)
種類
- インスタンスメソッド (198)
- 関数 (96)
- クラス (30)
- 文書 (9)
- 特異メソッド (6)
ライブラリ
- ビルトイン (162)
-
rubygems
/ requirement (12) - shell (6)
-
shell
/ builtin-command (18) -
shell
/ command-processor (6) -
shell
/ filter (6) - strscan (24)
クラス
- Array (21)
-
Enumerator
:: Lazy (24) -
Gem
:: Requirement (12) - Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Concat (12) -
Shell
:: Filter (6) - String (33)
- StringScanner (24)
モジュール
- Enumerable (60)
キーワード
- << (24)
- Lazy (12)
-
NEWS for Ruby 2
. 4 . 0 (9) - String (12)
-
arg
_ concat (12) -
collect
_ concat (36) - concat (84)
- each (6)
-
flat
_ map (36) - lazy (12)
-
list
_ concat (12) -
literal
_ concat (12) -
literal
_ concat _ dstr (12) -
literal
_ concat _ list (12) -
literal
_ concat _ string (12) - new (6)
-
rb
_ ary _ concat (12) -
rb
_ str _ concat (12)
検索結果
先頭5件
-
Shell
:: Concat (24000.0) -
-
Shell
# concat(*jobs) -> Shell :: Concat (12302.0) -
@todo
...@todo... -
Shell
:: CommandProcessor # concat(*jobs) -> Shell :: Concat (12302.0) -
@todo
...@todo... -
Shell
:: Filter # concat(*jobs) -> Shell :: Concat (12302.0) -
@todo
...@todo... -
static NODE * list
_ concat(NODE *head , NODE *tail) (12300.0) -
NODE_LISTのリストheadにNODE_LISTのノードtailを連結し、 先頭ノードを返す。head、tailともにNULLであってはならない。
...NODE_LISTのリストheadにNODE_LISTのノードtailを連結し、
先頭ノードを返す。head、tailともにNULLであってはならない。... -
static NODE * literal
_ concat(NODE *head , NODE *tail) (12300.0) -
-
static NODE * literal
_ concat _ dstr(NODE *head , NODE *tail) (12300.0) -
-
static NODE * literal
_ concat _ list(NODE *head , NODE *tail) (12300.0) -
-
static NODE * literal
_ concat _ string(NODE *head , NODE *tail , VALUE str) (12300.0) -
-
Array
# concat(*other _ arrays) -> self (12233.0) -
other_arrays の要素を自身の末尾に破壊的に連結します。
...other_arrays の要素を自身の末尾に破壊的に連結します。
@param other_arrays 自身と連結したい配列を指定します。
//emlist[例][ruby]{
[ "a", "b" ].concat( ["c", "d"] ) #=> [ "a", "b", "c", "d" ]
[ "a" ].concat( ["b"], ["c", "d"] ) #=> [ "a", "b", "c", "d" ]
[ "a"......].concat #=> [ "a" ]
a = [ 1, 2, 3 ]
a.concat( [ 4, 5 ] )
a #=> [ 1, 2, 3, 4, 5 ]
a = [ 1, 2 ]
a.concat(a, a) #=> [1, 2, 1, 2, 1, 2]
//}
@see Array#+... -
VALUE rb
_ ary _ concat(VALUE ary , VALUE x) (12216.0) -
ary.concat x
...ary.concat x...