Skip to content

Instantly share code, notes, and snippets.

@andyhd
andyhd / maybe.php
Created July 2, 2012 14:30
Pseudo Maybe monad in PHP, for the lulz
<?php
/**
* A Maybe Monad class, encapsulates null checking
*/
class Maybe {
private $value;
public function __construct($value=null) {
$this->value = $value;