1028件ヒット
[1-100件を表示]
(0.173秒)
種類
- インスタンスメソッド (854)
- 特異メソッド (114)
- クラス (36)
- 文書 (12)
- 関数 (12)
ライブラリ
- ビルトイン (277)
- fiddle (360)
-
fiddle
/ import (24) - openssl (252)
- pathname (12)
- shell (12)
-
shell
/ command-processor (12) -
shell
/ filter (12) - stringio (19)
- zlib (24)
クラス
-
ARGF
. class (38) - Data (6)
-
Fiddle
:: CStruct (12) -
Fiddle
:: Pointer (348) - IO (19)
- Module (12)
-
OpenSSL
:: PKey :: EC (36) -
OpenSSL
:: PKey :: EC :: Group (48) -
OpenSSL
:: PKey :: EC :: Point (144) - Pathname (12)
- Shell (12)
-
Shell
:: CommandProcessor (12) -
Shell
:: Filter (12) - String (24)
- StringIO (19)
- Struct (24)
- TracePoint (154)
-
Zlib
:: Inflate (24)
モジュール
-
Fiddle
:: Importer (12)
キーワード
- + (12)
- +@ (12)
- - (12)
- -@ (12)
- <=> (12)
- == (24)
- Error (12)
- Pointer (12)
- Ruby用語集 (12)
- [] (36)
- []= (24)
- binding (3)
-
callee
_ id (12) -
check
_ point (18) - codepoints (40)
- define (6)
-
defined
_ class (12) -
dh
_ compute _ key (12) - disable (24)
-
each
_ codepoint (60) - enable (24)
- enabled? (12)
- eql? (24)
-
eval
_ script (7) - event (12)
-
finish
_ all _ jobs (18) - free (12)
- free= (12)
- generator (12)
- group (12)
-
import
_ symbol (12) - infinity? (12)
- invert! (12)
-
is
_ pointer _ to _ heap (12) - lineno (12)
-
make
_ affine! (12) - malloc (12)
-
method
_ id (12) - mountpoint? (12)
- new (72)
- null? (12)
-
on
_ curve? (12) -
point
_ conversion _ form (12) -
point
_ conversion _ form= (12) - ptr (12)
-
public
_ key (12) -
public
_ key= (12) - ref (12)
-
return
_ value (12) -
ruby2
_ keywords (12) - self (12)
-
set
_ generator (12) -
set
_ to _ infinity! (12) - size (12)
- size= (12)
- sync (12)
-
sync
_ point? (12) -
to
_ bn (12) -
to
_ i (12) -
to
_ int (12) -
to
_ ptr (24) -
to
_ s (24) -
to
_ str (24) -
to
_ value (12)
検索結果
先頭5件
-
OpenSSL
:: PKey :: EC :: Point (21000.0) -
楕円曲線暗号の公開鍵となる曲線上の点を表します。
楕円曲線暗号の公開鍵となる曲線上の点を表します。 -
OpenSSL
:: PKey :: EC :: Group # point _ conversion _ form -> Symbol (9207.0) -
点のエンコーディング方式を返します。
...:compressed
* :uncompressed
* :hybrid
詳しくは X9.62 (ECDSA) などを参照してください。
@raise OpenSSL::PKey::EC::Group::Error 得られたエンコーディングが未知の値であった
場合に発生します。
@see OpenSSL::PKey::EC::Group#point_conversion_form=... -
Zlib
:: Inflate # sync _ point? -> bool (9201.0) -
@todo zlib.h にもドキュメントが無い?
...@todo zlib.h にもドキュメントが無い?
What is this?... -
ARGF
. class # codepoints { |c| . . . } -> self (9200.0) -
このメソッドは obsolete です。 代わりに ARGF.class#each_codepoint を使用してください。 使用すると警告メッセージが表示されます。
...このメソッドは obsolete です。
代わりに ARGF.class#each_codepoint を使用してください。
使用すると警告メッセージが表示されます。... -
ARGF
. class # each _ codepoint { |c| . . . } -> self (9200.0) -
self の各コードポイントに対して繰り返しブロックを呼びだします。
...self の各コードポイントに対して繰り返しブロックを呼びだします。
ブロックの引数にはコードポイントを表す整数が渡されます。
ブロックを省略した場合には、Enumerator を返します。
例:
# $ echo "line1\n" > test1.txt
# $ ec......ho "line2\n" > test2.txt
# $ ruby test.rb test1.txt test2.txt
# test.rb
ARGF.each_codepoint # => #<Enumerator: ARGF:each_codepoint>
ARGF.each_codepoint{|e|print e, ","} # => 108,105,110,101,49,10,108,105,110,101,50,10,... -
Fiddle
:: Pointer . malloc(size , free = nil) -> Fiddle :: Pointer (9200.0) -
与えられた長さ size のメモリ領域を確保し、それを表す Pointer オブジェクトを生成して返します。
...を確保し、それを表す Pointer オブジェクトを生成して返します。
@param size 確保したいメモリ領域のサイズを整数で指定します。
@param free GC 時に呼ばれる Pointer オブジェクトの free 関数を
Fiddle::Function オブジェクトか... -
TracePoint
# defined _ class -> Class | module (9200.0) -
メソッドを定義したクラスかモジュールを返します。
.../emlist[例][ruby]{
class C; def foo; end; end
trace = TracePoint.new(:call) do |tp|
p tp.defined_class # => C
end.enable do
C.new.foo
end
//}
メソッドがモジュールで定義されていた場合も(include に関係なく)モジュー
ルを返します。
//emlist[例][ruby]{
module......M; def foo; end; end
class C; include M; end;
trace = TracePoint.new(:call) do |tp|
p tp.defined_class # => M
end.enable do
C.new.foo
end
//}
[注意] 特異メソッドを実行した場合は TracePoint#defined_class は特異クラ
スを返します。また、Kernel.#set_trace_func の 6......スではなく元のクラスを返します。
//emlist[例][ruby]{
class C; def self.foo; end; end
trace = TracePoint.new(:call) do |tp|
p tp.defined_class # => #<Class:C>
end.enable do
C.foo
end
//}
Kernel.#set_trace_func と TracePoint の上記の差分に注意して
ください。
@s... -
OpenSSL
:: PKey :: EC :: Group # point _ conversion _ form=(sym) (9107.0) -
点のエンコーディング方式を設定します。
...エンコーディング方式を設定します。
以下のいずれかを設定します。
* :compressed
* :uncompressed
* :hybrid
詳しくは X9.62 (ECDSA) などを参照してください。
@param sym 設定する方式(Symbol)
@see OpenSSL::PKey::EC::Group#point_conversion_form... -
OpenSSL
:: PKey :: EC :: Point # eql?(other) -> bool (9106.0) -
自身が other と等しいならば true を返します。
...自身が other と等しいならば true を返します。
@raise OpenSSL::PKey::EC::Point::Error エラーが生じた場合に発生します...