PHP code example of mbretter / stk-immutable
1. Go to this page and download the library: Download mbretter/stk-immutable library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mbretter / stk-immutable example snippets
use Stk\Immutable\Map;
$a = new Map((object)['x' => 'foo', 'y' => 'bar']);
$b = $a->set('x', 'whatever');
if ($a === $b) {
...
}