1326件ヒット
[1-100件を表示]
(0.093秒)
ライブラリ
- ビルトイン (418)
- etc (12)
- fiddle (360)
-
fiddle
/ import (24) - openssl (240)
- pathname (12)
- shell (12)
-
shell
/ command-processor (12) -
shell
/ filter (12) - socket (72)
- stringio (38)
- strscan (48)
- zlib (24)
クラス
-
ARGF
. class (38) - Data (6)
-
Fiddle
:: CStruct (12) -
Fiddle
:: Pointer (348) - IO (38)
- Module (12)
-
OpenSSL
:: PKey :: EC (36) -
OpenSSL
:: PKey :: EC :: Group (36) -
OpenSSL
:: PKey :: EC :: Point (144) - Pathname (12)
- Shell (12)
-
Shell
:: CommandProcessor (12) -
Shell
:: Filter (12) - Socket (36)
- String (48)
- StringIO (38)
- StringScanner (48)
- Struct (16)
- TracePoint (248)
-
Zlib
:: Inflate (24)
モジュール
- Etc (12)
-
Fiddle
:: Importer (12) -
Socket
:: Constants (36)
キーワード
- + (12)
- +@ (12)
- - (12)
- -@ (12)
- <=> (12)
- == (24)
-
AF
_ PPP (24) - Error (12)
-
IFF
_ POINTOPOINT (24) -
NEWS for Ruby 2
. 7 . 0 (6) -
PF
_ PPP (24) - Pointer (12)
- Ruby用語集 (12)
-
SC
_ 2 _ PBS _ CHECKPOINT (12) - TracePoint (12)
- [] (36)
- []= (24)
- binding (12)
-
callee
_ id (12) -
check
_ point (18) - codepoints (66)
- define (6)
-
defined
_ class (12) -
dh
_ compute _ key (12) - disable (24)
-
each
_ codepoint (96) - 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)
- inspect (12)
-
instruction
_ sequence (7) - invert! (12)
-
is
_ pointer _ to _ heap (12) - lineno (12)
-
make
_ affine! (12) - malloc (12)
-
method
_ id (12) - mountpoint? (12)
- new (76)
- null? (12)
-
on
_ curve? (12) - parameters (7)
- path (12)
-
point
_ conversion _ form (12) -
point
_ conversion _ form= (12) - pointer (12)
- pointer= (12)
- pos (12)
- pos= (12)
- ptr (12)
-
public
_ key (12) -
public
_ key= (12) -
raised
_ exception (12) - ref (12)
-
return
_ value (12) -
ruby2
_ keywords (12) - self (12)
-
set
_ to _ infinity! (12) - size (12)
- size= (12)
- stat (11)
- 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) - trace (12)
- パターンマッチ (12)
検索結果
先頭5件
-
static inline int is
_ pointer _ to _ heap(void *ptr) (32200.0) -
-
OpenSSL
:: PKey :: EC :: Point (24000.0) -
楕円曲線暗号の公開鍵となる曲線上の点を表します。
楕円曲線暗号の公開鍵となる曲線上の点を表します。 -
TracePoint
# binding -> Binding (18400.0) -
発生したイベントによって生成された Binding オブジェクトを返します。
...発生したイベントによって生成された Binding オブジェクトを返します。
//emlist[例][ruby]{
def foo(ret)
ret
end
trace = TracePoint.new(:call) do |tp|
p tp.binding.local_variables # => [:ret]
end
trace.enable
foo 1
//}... -
TracePoint
# binding -> Binding | nil (18400.0) -
発生したイベントによって生成された Binding オブジェクトを返します。
...た Binding オブジェクトを返します。
C で記述されたメソッドは binding を生成しないため、
:c_call および :c_return イベントに対しては nil を返すことに注意してください。
//emlist[例][ruby]{
def foo(ret)
ret
end
trace = TracePoint.new(:cal......l) do |tp|
p tp.binding.local_variables # => [:ret]
end
trace.enable
foo 1
//}... -
Socket
:: Constants :: IFF _ POINTOPOINT (18332.0) -
point-to-point link
...
point-to-point link... -
Socket
:: IFF _ POINTOPOINT (18332.0) -
point-to-point link
...
point-to-point link... -
OpenSSL
:: PKey :: EC :: Point # infinity? -> bool (18212.0) -
自身が無限遠点であるならば true を返します。
...自身が無限遠点であるならば true を返します。
@raise OpenSSL::PKey::EC::Point::Error エラーが生じた場合に発生します
@see OpenSSL::PKey::EC::Point#set_to_infinity!... -
OpenSSL
:: PKey :: EC :: Point # set _ to _ infinity! -> self (18212.0) -
自身を無限遠点に設定します。
...自身を無限遠点に設定します。
@raise OpenSSL::PKey::EC::Point::Error エラーが生じた場合に発生します
@see OpenSSL::PKey::EC::Point#infinity!... -
String
# codepoints {|codepoint| block } -> self (15400.0) -
文字列の各コードポイントの配列を返します。(self.each_codepoint.to_a と同じです)
...列を返します。(self.each_codepoint.to_a と同じです)
//emlist[例][ruby]{
#coding:UTF-8
"hello わーるど".codepoints
# => [104, 101, 108, 108, 111, 32, 12431, 12540, 12427, 12393]
//}
ブロックが指定された場合は String#each_codepoint と同じように動作します。......Ruby 2.6 までは deprecated の警告が出ますが、Ruby 2.7 で警告は削除されました。
@see String#each_codepoint... -
String
# each _ codepoint {|codepoint| block } -> self (15400.0) -
文字列の各コードポイントに対して繰り返します。
...ます。
//emlist[例][ruby]{
#coding:UTF-8
"hello わーるど".each_codepoint.to_a
# => [104, 101, 108, 108, 111, 32, 12431, 12540, 12427, 12393]
"hello わーるど".encode('euc-jp').each_codepoint.to_a
# => [104, 101, 108, 108, 111, 32, 42223, 41404, 42219, 42185]
//}
@see String#codepoints...