るりまサーチ (Ruby 2.3.0)

最速Rubyリファレンスマニュアル検索!
2件ヒット [1-2件を表示] (0.100秒)
トップページ > バージョン:2.3.0[x] > クエリ:l[x] > クエリ:SSL[x] > クエリ:mod_sub[x]

別のキーワード

  1. pop use_ssl?
  2. pop3 use_ssl?
  3. pop enable_ssl
  4. pop disable_ssl
  5. net/pop use_ssl?

ライブラリ

クラス

検索結果

OpenSSL::BN#mod_sub(other, m) -> OpenSSL::BN (72922.0)

(self - other) % m を返します。

(self - other) % m を返します。

//emlist[][ruby]{
require 'openssl'

OpenSSL::BN.new("27").mod_sub(OpenSSL::BN.new("3"), OpenSSL::BN.new("5")) # => 4
//}

@param other 引く数
@param m 剰余を取る数
@raise OpenSSL::BNError 計算時エラー

OpenSSL::BN#-(other) -> OpenSSL::BN (18619.0)

自身から other を引いた値を返します。

自身から other を引いた値を返します。

@param other 引く整数
@raise OpenSSL::BNError 計算時エラー
@see OpenSSL::BN#mod_sub