소스 검색

Added comment to Boolean class

- explaining why ^ operator can not be implemented
pcmattulat 4 년 전
부모
커밋
84577a9d9c
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      source/boxing/Boolean.hpp

+ 1 - 0
source/boxing/Boolean.hpp

@@ -49,6 +49,7 @@ namespace ls_std {
       bool operator||(const Boolean& _boolean) const;
       bool operator||(bool _value) const;
       bool operator||(int _value) const;
+      // INFO: operator ^ can not be taken for XOR, since it's not possible to implement it respecting commutative law
 
       // implementation