Skip to content

Latest commit

 

History

History
41 lines (35 loc) · 771 Bytes

op_not.md

File metadata and controls

41 lines (35 loc) · 771 Bytes

operator!

  • ios[meta header]
  • std[meta namespace]
  • basic_ios[meta class]
  • function[meta id-type]
bool operator!() const;

概要

現在の状態値が異常を示す値になっていることを判定する演算子関数。

戻り値

fail()

実装例

bool operator!() const {
  return fail();
}
  • fail[link fail.md]

バージョン

言語

  • C++98

参照