Example #1
0
 /**
  * 2016-07-19
  * @return array(string => string)
  */
 public function getSpecificInformation()
 {
     return dfc($this, function () {
         /**
          * 2016-08-09
          * К сожалению, мы не можем делать нецелые веса:
          * ttp://php.net/manual/function.usort.php
          * «Returning non-integer values from the comparison function, such as float,
          * will result in an internal cast to integer of the callback's return value.
          * So values such as 0.99 and 0.1 will both be cast to an integer value of 0,
          * which will compare such values as equal.»
          * Нецелые веса позволили бы нам гарантированно запихнуть
          * безвесовые записи между весовыми, но увы...
          */
         $this->dic()->addA(parent::getSpecificInformation());
         $this->prepareDic();
         return $this->dic()->get();
     });
 }