예제 #1
0
파일: Some.php 프로젝트: pldin601/HomeMusic
 public function offsetGet($offset)
 {
     return $this->offsetExists($offset) ? Option::Some($this->get()[$offset]) : Option::None();
 }
예제 #2
0
파일: None.php 프로젝트: pldin601/HomeMusic
 /**
  * @param \Closure $producer
  * @return Option
  */
 public function otherwise(\Closure $producer)
 {
     return Option::Some($producer());
 }