るりまサーチ

最速Rubyリファレンスマニュアル検索!
1352件ヒット [1-100件を表示] (0.067秒)
トップページ > クエリ:p[x] > クエリ:Point[x]

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. kernel p
  5. dsa p

ライブラリ

モジュール

キーワード

検索結果

<< 1 2 3 ... > >>

Socket::Constants::IFF_POINTOPOINT (24432.0)

point-to-point link

...
point
-to-point link...

Socket::IFF_POINTOPOINT (24432.0)

point-to-point link

...
point
-to-point link...

OpenSSL::PKey::EC::Point (24000.0)

楕円曲線暗号の公開鍵となる曲線上の点を表します。

楕円曲線暗号の公開鍵となる曲線上の点を表します。

String#codepoints {|codepoint| block } -> self (12400.0)

文字列の各コードポイントの配列を返します。(self.each_codepoint.to_a と同じです)

...ch_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 (12400.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 (12400.0)

自身の各コードポイントに対して繰り返します。

...自身の各コードポイントに対して繰り返します。

@see IO#each_codepoint...

StringIO#each_codepoint {|codepoint| ... } -> self (12400.0)

自身の各コードポイントに対して繰り返します。

...自身の各コードポイントに対して繰り返します。

@see IO#each_codepoint...

StringScanner#pointer=(n) (12242.0)

スキャンポインタのインデックスを n にセットします。

...スキャンポインタのインデックスを n にセットします。

@param n 整数で、バイト単位で指定します。
負数を指定すると文字列の末尾からのオフセットとして扱います。
@raise RangeError マッチ対象の文字列の長さを超え...
...tringScanner.new('test string')
p
s.scan(/\w+/) # => "test"
p
s.pos = 1 # => 1
p
s.scan(/\w+/) # => "est"
p
s.pos = 7 # => 7
p
s.scan(/\w+/) # => "ring"

begin
s.pos = 20
rescue RangeError => err
p
uts err #=> index out of range
end
p
s.pos = -4 # => -4
p
s.scan(/\w+/) # => "ring"
//}...

Socket::AF_PPP -> Integer (12232.0)

@todo Point-to-Point Protocol。 Socket.open の第一引数 domain に使用します。

...@todo
Point
-to-Point Protocol。
Socket.open の第一引数 domain に使用します。...
<< 1 2 3 ... > >>