1029件ヒット
[1-100件を表示]
(0.014秒)
ライブラリ
- ビルトイン (355)
- fiddle (300)
-
fiddle
/ import (24) - openssl (192)
- pathname (12)
- shell (12)
-
shell
/ command-processor (12) -
shell
/ filter (12) - stringio (38)
- strscan (48)
- zlib (24)
クラス
-
ARGF
. class (38) -
Fiddle
:: CStruct (12) -
Fiddle
:: Pointer (300) - IO (38)
- Module (12)
-
OpenSSL
:: PKey :: EC (36) -
OpenSSL
:: PKey :: EC :: Group (48) -
OpenSSL
:: PKey :: EC :: Point (108) - Pathname (12)
- Proc (6)
- Shell (12)
-
Shell
:: CommandProcessor (12) -
Shell
:: Filter (12) - String (48)
- StringIO (38)
- StringScanner (48)
- TracePoint (213)
-
Zlib
:: Inflate (24)
モジュール
-
Fiddle
:: Importer (12)
キーワード
- + (12)
- +@ (12)
- - (12)
- -@ (12)
- <=> (12)
- == (24)
- [] (24)
- []= (24)
- binding (12)
-
callee
_ id (12) -
check
_ point (18) - codepoints (66)
-
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)
- lineno (12)
-
make
_ affine! (12) -
method
_ id (12) - mountpoint? (12)
- 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 (18) - 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 (12) -
to
_ s (24) -
to
_ str (24) -
to
_ value (12)
検索結果
先頭5件
-
OpenSSL
:: PKey :: EC :: Group # point _ conversion _ form -> Symbol (18108.0) -
点のエンコーディング方式を返します。
...:compressed
* :uncompressed
* :hybrid
詳しくは X9.62 (ECDSA) などを参照してください。
@raise OpenSSL::PKey::EC::Group::Error 得られたエンコーディングが未知の値であった
場合に発生します。
@see OpenSSL::PKey::EC::Group#point_conversion_form=... -
OpenSSL
:: PKey :: EC :: Group # point _ conversion _ form=(sym) (18108.0) -
点のエンコーディング方式を設定します。
...エンコーディング方式を設定します。
以下のいずれかを設定します。
* :compressed
* :uncompressed
* :hybrid
詳しくは X9.62 (ECDSA) などを参照してください。
@param sym 設定する方式(Symbol)
@see OpenSSL::PKey::EC::Group#point_conversion_form... -
StringScanner
# pointer -> Integer (18101.0) -
現在のスキャンポインタのインデックスを返します。
現在のスキャンポインタのインデックスを返します。
//emlist[例][ruby]{
require 'strscan'
s = StringScanner.new('test string')
s.pos # => 0
s.scan(/\w+/) # => "test"
s.pos # => 4
s.scan(/\w+/) # => nil
s.pos # => 4
s.scan(/\s+/) # => " "
s.pos # => 5
//}
@see StringScanner#charpos -
StringScanner
# pointer=(n) (18101.0) -
スキャンポインタのインデックスを n にセットします。
スキャンポインタのインデックスを n にセットします。
@param n 整数で、バイト単位で指定します。
負数を指定すると文字列の末尾からのオフセットとして扱います。
@raise RangeError マッチ対象の文字列の長さを超える値を指定すると発生します。
@return n を返します。
//emlist[例][ruby]{
require 'strscan'
s = StringScanner.new('test string')
p s.scan(/\w+/) # => "test"
p s.pos = 1 # => 1
p s.scan(/\... -
String
# codepoints {|codepoint| block } -> self (6201.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 (6201.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... -
StringIO
# codepoints {|codepoint| . . . } -> self (6201.0) -
自身の各コードポイントに対して繰り返します。
...自身の各コードポイントに対して繰り返します。
@see IO#each_codepoint... -
StringIO
# each _ codepoint {|codepoint| . . . } -> self (6201.0) -
自身の各コードポイントに対して繰り返します。
...自身の各コードポイントに対して繰り返します。
@see IO#each_codepoint... -
Shell
# check _ point (6102.0) -
@todo
@todo -
Shell
:: CommandProcessor # check _ point (6102.0) -
@todo
@todo