るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.116秒)
トップページ > クエリ:Proc[x] > クエリ:command[x] > クエリ:Rubyで使われる記号の意味(正規表現の複雑な記号は除く)[x]

別のキーワード

  1. rubyで使われる記号の意味(正規表現の複雑な記号は除く)
  2. rubyで使われる記号の意味(正規表現の複雑な記号は除く) proc
  3. rubyで使われる記号の意味(正規表現の複雑な記号は除く) spec/call
  4. rubyで使われる記号の意味(正規表現の複雑な記号は除く) comparable
  5. rubyで使われる記号の意味(正規表現の複雑な記号は除く) spec/regexp

検索結果

Rubyで使われる記号の意味(正規表現の複雑な記号は除く) (15039.0)

Rubyで使われる記号の意味(正規表現の複雑な記号は除く) ex q num per and or  plus minus ast slash hat sq  period comma langl rangl eq tilde  dollar at under lbrarbra  lbra2rbra2 lbra3rbra3 dq colon ac  backslash semicolon

...Rubyで使われる記号の意味(正規表現の複雑な記号は除く)
ex q num per and or 
plus minus ast slash hat sq 
period comma langl rangl eq tilde 
dollar at under lbrarbra 
lbra2rbra2 lbra3rbra3 dq colon ac 
backslash semicol...
...> "nomad"
//}

: % ruby -e "puts 'Hello'"

コマンドラインへの入力を示す。rubyスクリプト上で入力を行うには `command` や system(command) などと書く

===[a:and] &

: xxx & yyy

論理積演算子。または類似の演算を行うメソッド。
//emlist{
p( 3...
...を返す。
//}

: def xxx(&yyy) ・・ &がついた引数

メソッド定義のブロック引数。d:spec/def#methodを参照。

: xxx(&b)

Proc
オブジェクトをブロックとして使う。d:spec/call#block を参照。

: xxx&.yyy

safe navigation operator(通称「ぼっち演算...