Exemplo n.º 1
0
 /**
  * This method prepends the specified object to the front of this string.
  *
  * @access public
  * @static
  * @param IString\Type $xs                                  the left operand
  * @param Core\Type $object                                 the object to be prepended
  * @return IString\Type                                     the string
  */
 public static function prepend(IString\Type $xs, Core\Type $object) : IString\Type
 {
     return IString\Type::box($object->__toString() . $xs->__toString());
 }