ライブラリ
- ビルトイン (2)
- etc (2)
-
irb
/ cmd / chws (1) - openssl (1)
-
rdoc
/ parser / changelog (1)
クラス
-
Encoding
:: Converter (1) -
Etc
:: Passwd (2) -
IRB
:: ExtendCommand :: ChangeWorkspace (1) -
OpenSSL
:: SSL :: SSLContext (1) - Proc (1)
-
RDoc
:: Parser :: ChangeLog (1)
キーワード
- change= (1)
- execute (1)
-
insert
_ output (1) -
ruby2
_ keywords (1) - scan (1)
検索結果
先頭5件
-
Etc
:: Passwd # change -> Integer (63307.0) -
パスワード変更時間(整数)を返します。このメンバはシステム依存です。
パスワード変更時間(整数)を返します。このメンバはシステム依存です。 -
Etc
:: Passwd # change=(change) (27610.0) -
パスワード変更時間(整数)を設定します。このメンバはシステム依存です。
パスワード変更時間(整数)を設定します。このメンバはシステム依存です。 -
OpenSSL
:: SSL :: SSLContext # options=(options) (18622.0) -
オプションを設定します。
オプションを設定します。
以下の値の OR で指定します。
* OpenSSL::SSL::OP_ALL
* OpenSSL::SSL::OP_CIPHER_SERVER_PREFERENCE
* OpenSSL::SSL::OP_EPHEMERAL_RSA
* OpenSSL::SSL::OP_NETSCAPE_CA_DN_BUG
* OpenSSL::SSL::OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG
* OpenSSL::SSL::OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
* OpenSS... -
Encoding
:: Converter # insert _ output(string) -> nil (18394.0) -
変換器内のバッファに文字列を挿入します。 バッファに保持された文字列は、次の変換時の変換結果と一緒に返されます。
変換器内のバッファに文字列を挿入します。
バッファに保持された文字列は、次の変換時の変換結果と一緒に返されます。
変換先がステートフルなエンコーディングであった場合、
挿入された文字列は状態に基づいて変換され、状態を更新します。
このメソッドは変換に際してエラーが発生した際にのみ利用されるべきです。
@param string 挿入する文字列
//emlist[][ruby]{
ec = Encoding::Converter.new("utf-8", "iso-8859-1")
src = "HIRAGANA LETTER A is \u{3042}."
dst = ""
p ec.... -
RDoc
:: Parser :: ChangeLog # scan -> RDoc :: TopLevel (18304.0) -
ChangeLog ファイルを解析します。
ChangeLog ファイルを解析します。
@return RDoc::TopLevel オブジェクトを返します。 -
IRB
:: ExtendCommand :: ChangeWorkspace # execute(*obj) -> obj (18004.0) -
irb の self を obj で指定したオブジェクトに設定します。self に設定され たオブジェクトを返します。
irb の self を obj で指定したオブジェクトに設定します。self に設定され
たオブジェクトを返します。
@param obj 任意のオブジェクトを指定できます。複数指定した場合は先頭のオ
ブジェクトのみが設定されます。 -
Proc
# ruby2 _ keywords -> proc (9322.0) -
Marks the proc as passing keywords through a normal argument splat. This should only be called on procs that accept an argument splat (`*args`) but not explicit keywords or a keyword splat. It marks the proc such that if the proc is called with keyword arguments, the final hash argument is marked with a special flag such that if it is the final element of a normal argument splat to another method call, and that method call does not include explicit keywords or a keyword splat, the final element is interpreted as keywords. In other words, keywords will be passed through the proc to other methods.
Marks the proc as passing keywords through a normal argument splat. This
should only be called on procs that accept an argument splat (`*args`)
but not explicit keywords or a keyword splat. It marks the proc such
that if the proc is called with keyword arguments, the final hash
argument is marked ...