11件ヒット
[1-11件を表示]
(0.150秒)
ライブラリ
- ビルトイン (3)
-
cgi
/ html (1) -
net
/ imap (1) - shell (1)
-
shell
/ builtin-command (2) -
shell
/ command-processor (1) -
shell
/ filter (1) -
webrick
/ httputils (1)
クラス
- Module (3)
-
Net
:: IMAP (1) - Shell (1)
-
Shell
:: AppendFile (1) -
Shell
:: AppendIO (1) -
Shell
:: CommandProcessor (1) -
Shell
:: Filter (1) -
WEBrick
:: HTTPUtils :: FormData (1)
モジュール
-
CGI
:: TagMaker (1)
キーワード
-
append
_ data (1) -
append
_ features (1) - include (1)
- included (1)
- input= (2)
-
nOE
_ element _ def (1)
検索結果
先頭5件
- Shell
# append(to , filter) -> Shell :: AppendFile | Shell :: AppendIO - Shell
:: CommandProcessor # append(to , filter) -> Shell :: AppendFile | Shell :: AppendIO - Shell
:: Filter # append(to , filter) -> Shell :: AppendFile | Shell :: AppendIO - Net
:: IMAP # append(mailbox , message , flags = nil , date _ time = nil) -> Net :: IMAP :: TaggedResponse - Module
# append _ features(module _ or _ class) -> self
-
Shell
# append(to , filter) -> Shell :: AppendFile | Shell :: AppendIO (83107.0) -
@todo
@todo
@param to 文字列か IO を指定します。
@param filter Shell::Filter のインスタンスを指定します。 -
Shell
:: CommandProcessor # append(to , filter) -> Shell :: AppendFile | Shell :: AppendIO (83107.0) -
@todo
@todo
@param to 文字列か IO を指定します。
@param filter Shell::Filter のインスタンスを指定します。 -
Shell
:: Filter # append(to , filter) -> Shell :: AppendFile | Shell :: AppendIO (83107.0) -
@todo
@todo
@param to 文字列か IO を指定します。
@param filter Shell::Filter のインスタンスを指定します。 -
Net
:: IMAP # append(mailbox , message , flags = nil , date _ time = nil) -> Net :: IMAP :: TaggedResponse (72973.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 メッセージに付加するフラグ(S... -
Module
# append _ features(module _ or _ class) -> self (45997.0) -
モジュール(あるいはクラス)に self の機能を追加します。
モジュール(あるいはクラス)に self の機能を追加します。
このメソッドは Module#include の実体であり、
include を Ruby で書くと以下のように定義できます。
//emlist[例][ruby]{
def include(*modules)
modules.reverse_each do |mod|
# append_features や included はプライベートメソッドなので
# 直接 mod.append_features(self) などとは書けない
mod.__send__(:append_features, s... -
WEBrick
:: HTTPUtils :: FormData # append _ data(data) -> self (45907.0) -
WEBrick::HTTPUtils の内部で使われます。ユーザがこのメソッドを直接呼ぶことはありません。
WEBrick::HTTPUtils の内部で使われます。ユーザがこのメソッドを直接呼ぶことはありません。 -
Shell
:: AppendFile # input=(filter) (27304.0) -
@todo
@todo -
Shell
:: AppendIO # input=(filter) (27304.0) -
@todo
@todo -
CGI
:: TagMaker # nOE _ element _ def(element , append = nil) (19207.0) -
@todo
@todo -
Module
# include(*mod) -> self (18448.0) -
モジュール mod をインクルードします。
モジュール mod をインクルードします。
@param mod Module のインスタンス( Enumerable など)を指定します。
@raise ArgumentError 継承関係が循環してしまうような include を行った場合に発生します。
//emlist[例][ruby]{
module M
end
module M2
include M
end
module M
include M2
end
//}
実行結果:
-:3:in `append_features': cyclic include detected (ArgumentError)
... -
Module
# included(class _ or _ module) -> () (18376.0) -
self が Module#include されたときに対象のクラスまたはモジュー ルを引数にしてインタプリタがこのメソッドを呼び出します。
self が Module#include されたときに対象のクラスまたはモジュー
ルを引数にしてインタプリタがこのメソッドを呼び出します。
@param class_or_module Module#include を実行したオブジェクト
//emlist[例][ruby]{
module Foo
def self.included(mod)
p "#{mod} include #{self}"
end
end
class Bar
include Foo
end
# => "Bar include Foo"
//}
@see Module#append_featu...