
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php

namespace WPML\INSTALLER\FP;

use WPML\Collect\Support\Traits\Macroable;

/**
 * @method static callable|bool toBool( mixed ...$v ) - Curried :: mixed->bool
 * @method static callable|int toInt( mixed ...$v ) - Curried :: mixed->int
 */
class Cast {
	use Macroable;

	public static function init() {
		self::macro( 'toBool', curryN( 1, function ( $v ) {
			return (bool) $v;
		} ) );
		self::macro( 'toInt', curryN( 1, function ( $v ) {
			return intval( $v );
		} ) );
	}
}

Cast::init();
