示例#1
0
文件: Bool.php 项目: sntools/types
 /**
  * Boolean to integer conversion
  * @return Int
  */
 public final function toInt()
 {
     $int = null;
     Int::create($int, $this);
     return $int;
 }
示例#2
0
文件: Flag.php 项目: sntools/types
 /**
  *
  * @param int $val
  */
 public function removeFlag($val)
 {
     Int::create($val);
     $this->setValue($val->bw_not()->bw_and($this));
 }