notHave method

  1. @override
bool notHave(
  1. List<StarName> stars
)
override

判断某一个宫位三方四正是否不包含目标星耀,必须要全部都不在三方四正内含才会返回true @stars 星耀名称,可以包含 主星,辅星,杂星 @return true / false

Implementation

@override
bool notHave(List<StarName> stars) {
  // TODO: implement notHave
  return notSurroundedByStars(this, stars);
}