るりまサーチ (Ruby 2.3.0)

最速Rubyリファレンスマニュアル検索!
6件ヒット [1-6件を表示] (0.233秒)
トップページ > バージョン:2.3.0[x] > 種類:インスタンスメソッド[x] > クエリ:t[x] > クエリ:-[x] > クエリ:@[x] > クエリ:bool[x] > クラス:Complex[x]

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle type_size_t

ライブラリ

キーワード

検索結果

Complex#between?(min, max) -> bool (18958.0)

@undef

@undef

Complex#<(other) -> bool (958.0)

@undef

@undef

Complex#<=(other) -> bool (958.0)

@undef

@undef

Complex#>(other) -> bool (958.0)

@undef

@undef

Complex#>=(other) -> bool (958.0)

@undef

@undef

絞り込み条件を変える

Complex#==(other) -> bool (928.0)

数値として等しいか判定します。

...数値として等しいか判定します。

@param other 自身と比較する数値

//emlist[例][ruby]{
Complex
(2, 1) == Complex(1) # => false
Complex
(1, 0) == Complex(1) # => true
Complex
(1, 0) == 1 # => true
//}...