401件ヒット
[1-100件を表示]
(0.056秒)
別のキーワード
ライブラリ
- ビルトイン (92)
-
cgi
/ html (12) - fcntl (12)
- logger (9)
-
mutex
_ m (12) -
net
/ ftp (10) -
net
/ imap (12) - rake (48)
- readline (24)
- shell (6)
-
shell
/ builtin-command (36) -
shell
/ command-processor (6) -
shell
/ filter (6) -
webrick
/ httputils (12)
クラス
- Array (16)
- Logger (9)
- Module (36)
-
Net
:: FTP :: MLSxEntry (10) -
Net
:: IMAP (12) -
Rake
:: InvocationChain (24) -
Rake
:: InvocationChain :: EmptyInvocationChain (12) - Shell (6)
-
Shell
:: AppendFile (12) -
Shell
:: AppendIO (12) -
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6) - String (4)
-
WEBrick
:: HTTPUtils :: FormData (12)
モジュール
-
CGI
:: TagMaker (12) - Fcntl (12)
-
File
:: Constants (12) - Kernel (24)
-
Mutex
_ m (12) - Readline (24)
キーワード
-
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) - << (1)
- AppendFile (6)
- AppendIO (6)
- InvocationChain (12)
-
NEWS for Ruby 2
. 5 . 0 (8) -
O
_ APPEND (12) - append (74)
-
append
_ as _ bytes (1) -
append
_ data (12) -
append
_ features (24) - appendable? (10)
-
block
_ append (12) -
completion
_ append _ character (12) -
completion
_ append _ character= (12) - concat (2)
- include (12)
- included (12)
- input= (12)
-
list
_ append (12) -
literal
_ append (12) -
local
_ append (12) -
nOE
_ element _ def (12) - new (21)
- open (24)
- push (8)
-
rb
_ mod _ append _ features (12) -
rb
_ parser _ append _ print (12) -
ruby 1
. 6 feature (12)
検索結果
先頭5件
-
File
:: Constants :: APPEND -> Integer (24201.0) -
追記モードでファイルを開くときに指定します。 File.openで使用します。
...追記モードでファイルを開くときに指定します。
File.openで使用します。... -
Shell
# append(to , filter) -> Shell :: AppendFile | Shell :: AppendIO (12601.0) -
@todo
...@todo
@param to 文字列か IO を指定します。
@param filter Shell::Filter のインスタンスを指定します。... -
Shell
:: CommandProcessor # append(to , filter) -> Shell :: AppendFile | Shell :: AppendIO (12601.0) -
@todo
...@todo
@param to 文字列か IO を指定します。
@param filter Shell::Filter のインスタンスを指定します。... -
Shell
:: Filter # append(to , filter) -> Shell :: AppendFile | Shell :: AppendIO (12601.0) -
@todo
...@todo
@param to 文字列か IO を指定します。
@param filter Shell::Filter のインスタンスを指定します。... -
Readline
. completion _ append _ character=(string) (12231.0) -
ユーザの入力の補完が完了した場合に、最後に付加する文字 string を指定します。
...ユーザの入力の補完が完了した場合に、最後に付加する文字 string を指定します。
@param string 1文字を指定します。
@raise NotImplementedError サポートしていない環境で発生します。
半角スペース「" "」などの単語を区切る文字......を指定すれば、
連続して入力する際に便利です。
require 'readline'
Readline.readline("> ", true)
Readline.completion_append_character = " "
> /var/li
ここで補完(TABキーを押す)を行う。
> /var/lib
最後に" "が追加されているため、すぐに......ることはできないため、
例えば、"string"を指定した場合は最初の文字である"s"だけを使用します。
require 'readline'
Readline.completion_append_character = "string"
p Readline.completion_append_character # => "s"
@see Readline.completion_append_character... -
Net
:: IMAP # append(mailbox , message , flags = nil , date _ time = nil) -> Net :: IMAP :: TaggedResponse (12223.0) -
APPEND コマンドを送ってメッセージをメールボックスの末尾に追加します。
...
APPEND コマンドを送ってメッセージをメールボックスの末尾に追加します。
例:
imap.append("inbox", <<EOF.gsub(/\n/, "\r\n"), [:Seen], Time.now)
Subject: hello
From: someone@example.com
To: somebody@example.com
hello world
EOF
@param mailbox メッセー......ボックス名(文字列)
@param message メッセージ文字列
@param flags メッセージに付加するフラグ(Symbol の配列)
@param date_time メッセージの時刻(Time オブジェクト)。省略時は現在時刻が使われる
@raise Net::IMAP::NoResponseError メールボック... -
Module
# append _ features(module _ or _ class) -> self (12219.0) -
モジュール(あるいはクラス)に self の機能を追加します。
...][ruby]{
def include(*modules)
modules.reverse_each do |mod|
# append_features や included はプライベートメソッドなので
# 直接 mod.append_features(self) などとは書けない
mod.__send__(:append_features, self)
mod.__send__(:included, self)
end
end
//}
@see... -
String
# append _ as _ bytes(*objects) -> self (12219.0) -
引数で与えたオブジェクトをバイト列として、self に破壊的に連結します。
...SCII-8BIT)>
s.append_as_bytes("い") # => "\xE3\x81\x82\xE3\x81\x84"
# s << "い" では連結できない
s << "い" # => "incompatible character encodings: BINARY (ASCII-8BIT) and UTF-8 (Encoding::CompatibilityError)
//}
//emlist[引数で整数を渡す例][ruby]{
t = ""
t.append_as_bytes(0x6......1) # => "a"
t.append_as_bytes(0x3062) # => "ab"
//}
@see String#<<, String#concat... -
void rb
_ parser _ append _ print(void) (12216.0) -
ruby の -p オプションの実装。 ループと print のノードを ruby_eval_tree に加えます。
...ruby の -p オプションの実装。
ループと print のノードを ruby_eval_tree に加えます。... -
Array
# append(*obj) -> self (12207.0) -
指定された obj を順番に配列の末尾に追加します。 引数を指定しなければ何もしません。
...なければ何もしません。
@param obj 自身に追加したいオブジェクトを指定します。
//emlist[例][ruby]{
array = [1, 2, 3]
array.push 4
array.push [5, 6]
array.push 7, 8
p array # => [1, 2, 3, 4, [5, 6], 7, 8]
//}
@see Array#pop, Array#shift, Array#unshift, Array... -
Mutex
_ m . append _ features(klass) -> Class | nil (12207.0) -
ユーザが直接、使うことはありません。
...ユーザが直接、使うことはありません。
@see Module#append_features... -
Rake
:: InvocationChain # append(task _ name) -> Rake :: InvocationChain (12207.0) -
与えられたタスク名を追加して新しい Rake::InvocationChain を返します。
...します。
@param task_name 追加するタスク名を指定します。
@raise RuntimeError 循環したタスクの呼び出しを検出した場合に発生します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
invocation_ch......ain= Rake::InvocationChain.new("task_a", Rake::InvocationChain::EMPTY)
invocation_chain.append("task_b") # => LL("task_b", "task_a")
end
//}...
