Instance Method
インスタンスメソッド
signum()
Returns -1
if this value is negative and 1
if it’s positive; otherwise, 0
.
この値が負ならば-1
そしてそれが正ならば1
;それ以外では0
を返します。
Required. Default implementation provided.
必須。 省略時の実装の提供。
Technology
- Swift Standard Library
Swift標準ライブラリ
Return Value
戻り値
The sign of this number, expressed as an integer of the same type.
この数の符号、同じ型の整数として表されます。
Default Implementations
省略時実装
BinaryInteger Implementations
バイナリ整数の実装
func signum() -> Self
Returns -1
if this value is negative and 1
if it’s positive; otherwise, 0
.
この値が負ならば-1
そしてそれが正ならば1
;それ以外では0
を返します。