英語版
このページの英語版を見る
dmd.common.int128
- pure nothrow @nogc @safe bool
tst
(Centc
); - 0に対するテストParameters:
Cent c
テストするセント Returns:もし! - pure nothrow @nogc @safe Cent
com
(Centc
); - 補数Parameters:
Cent c
中央値で補完する Returns:補数値 - pure nothrow @nogc @safe Cent
neg
(Centc
); - 否定するParameters:
Cent c
セントを否定する Returns:マイナス値 - pure nothrow @nogc @safe Cent
inc
(Centc
); - インクリメントParameters:
Cent c
セントをインクリメントする Returns:インクリメント値 - pure nothrow @nogc @safe Cent
dec
(Centc
); - デクリメントParameters:
Cent c
セントをデクリメントする Returns:インクリメント値 - pure nothrow @nogc @safe Cent
shl1
(Centc
); - 左に1ビットシフトするParameters:
Cent c
セントシフトする Returns:シフトした値 - pure nothrow @nogc @safe Cent
shr1
(Centc
); - 符号なし1ビット右シフトParameters:
Cent c
セントシフト Returns:シフト値 - pure nothrow @nogc @safe Cent
sar1
(Centc
); - 算術右1ビットシフトParameters:
Cent c
セントシフト Returns:シフトした値 - pure nothrow @nogc @safe Cent
shl
(Centc
, uintn
); - 左にnビットシフトするParameters:
Cent c
シフトするセント uint n
シフトするビット数 Returns:シフト値 - pure nothrow @nogc @safe Cent
shr
(Centc
, uintn
); - 符号なし右シフトnビットParameters:
Cent c
シフトする中央値 uint n
シフトするビット数 Returns:シフト値 - pure nothrow @nogc @safe Cent
sar
(Centc
, uintn
); - 算術右シフトnビットParameters:
Cent c
シフトする中央値 uint n
シフトするビット数 Returns:シフトした値 - pure nothrow @nogc @safe Cent
rol1
(Centc
); - 左に1ビット回転させるParameters:
Cent c
セント回転させる Returns:回転値 - pure nothrow @nogc @safe Cent
ror1
(Centc
); - 右に1ビット回転させるParameters:
Cent c
セント回転させる Returns:回転した値 - pure nothrow @nogc @safe Cent
rol
(Centc
, uintn
); - 左nビットを回転させるParameters:
Cent c
回転させるセント uint n
回転させるビット数 Returns:回転値 - pure nothrow @nogc @safe Cent
ror
(Centc
, uintn
); - nビット右回転するParameters:
Cent c
回転させるセント uint n
回転させるビット数 Returns:回転値 - pure nothrow @nogc @safe Cent
and
(Centc1
, Centc2
); - そしてc1とc2である。Parameters:
Cent c1
オペランド1 Cent c2
オペランド2 Returns:c1 & c2 - pure nothrow @nogc @safe Cent
or
(Centc1
, Centc2
); - または c1 | c2。Parameters:
Cent c1
オペランド1 Cent c2
オペランド2 Returns:c1 | c2 - pure nothrow @nogc @safe Cent
xor
(Centc1
, Centc2
); - Xor c1 ^ c2 を返す。Parameters:
Cent c1
オペランド 1 Cent c2
オペランド2 Returns:c1 ^ c2 - pure nothrow @nogc @safe Cent
add
(Centc1
, Centc2
); - c1 を c2 に加算する。Parameters:
Cent c1
オペランド 1 Cent c2
オペランド 2 Returns:c1 + c2 - pure nothrow @nogc @safe Cent
sub
(Centc1
, Centc2
); - c1 から c2 を引く。Parameters:
Cent c1
オペランド 1 Cent c2
オペランド2 Returns:c1 - c2 - pure nothrow @nogc @safe Cent
mul
(Centc1
, Centc2
); - c1 * c2 を乗算する。Parameters:
Cent c1
オペランド 1 Cent c2
オペランド2 Returns:c1 * c2 - pure nothrow @nogc @safe Cent
udiv
(Centc1
, Centc2
); - 符号なし除算 c1 / c2.Parameters:
Cent c1
配当 Cent c2
除数 Returns:商 c1 / c2 - pure nothrow @nogc @safe Cent
udivmod
(Centc1
, Centc2
, out Centmodulus
); - 符号なし除算 c1 / c2.除算後の余りはモジュラスに格納される。Parameters:
Cent c1
配当 Cent c2
除数 Cent modulus
c1 % c2に設定される Returns:商 c1 / c2 - pure nothrow @nogc @safe Cent
div
(Centc1
, Centc2
); - 符号付き除算 c1 / c2.Parameters:
Cent c1
配当 Cent c2
除数 Returns:商 c1 / c2 - pure nothrow @nogc @safe Cent
divmod
(Centc1
, Centc2
, out Centmodulus
); - 符号付き除算 c1 / c2.除算後の余りはモジュラスに格納される。Parameters:
Cent c1
配当 Cent c2
除数 Cent modulus
c1 % c2に設定される Returns:商 c1 / c2 - pure nothrow @nogc @safe bool
ugt
(Centc1
, Centc2
); - もし c1 > c2 ならば unsignedParameters:
Cent c1
オペランド1 Cent c2
オペランド2 Returns:c1 > c2 ならば真 - pure nothrow @nogc @safe bool
uge
(Centc1
, Centc2
); - もし c1 >= c2 ならば unsignedParameters:
Cent c1
オペランド1 Cent c2
オペランド2 Returns:c1 >= c2 ならば真 - pure nothrow @nogc @safe bool
ult
(Centc1
, Centc2
); - もし c1 < c2 ならば unsignedParameters:
Cent c1
オペランド1 Cent c2
オペランド2 Returns:c1 < c2 ならば真 - pure nothrow @nogc @safe bool
ule
(Centc1
, Centc2
); - もし c1 <= c2 ならば unsignedParameters:
Cent c1
オペランド1 Cent c2
オペランド2 Returns:c1 <= c2 ならば真 - pure nothrow @nogc @safe bool
gt
(Centc1
, Centc2
); - もし c1 > c2 ならば 符号付きParameters:
Cent c1
オペランド1 Cent c2
オペランド2 Returns:c1 > c2 ならば真 - pure nothrow @nogc @safe bool
ge
(Centc1
, Centc2
); - もし c1 >= c2 ならば 符号付きParameters:
Cent c1
オペランド1 Cent c2
オペランド2 Returns:c1 >= c2 ならば真 - pure nothrow @nogc @safe bool
lt
(Centc1
, Centc2
); - もし c1 < c2 ならば 符号付きParameters:
Cent c1
オペランド1 Cent c2
オペランド2 Returns:c1 < c2 ならば真 - pure nothrow @nogc @safe bool
le
(Centc1
, Centc2
); - もし c1 <= c2 ならば 符号付きParameters:
Cent c1
オペランド1 Cent c2
オペランド2 Returns:c1 <= c2 ならば真
Copyright © 1999-2024 by the D Language Foundation
DEEPL APIにより翻訳、ところどころ修正。
このページの最新版(英語)
このページの原文(英語)
翻訳時のdmdのバージョン: 2.108.0
ドキュメントのdmdのバージョン: 2.109.1
翻訳日付 :
HTML生成日時:
編集者: dokutoku