るりまサーチ

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

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. csv to_i
  5. matrix i

ライブラリ

モジュール

キーワード

検索結果

<< 1 2 3 ... > >>

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...

絞り込み条件を変える

StringIO#codepoints {|codepoint| ... } -> self (15400.0)

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

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

@see IO#each_codepoint...
<< 1 2 3 ... > >>