view modules/option.tp @ 288:a4c2b31acba7

Add utf8 method to integer types for converting a number into a utf8 string made up of the corresponding character code
author Michael Pavone <pavone@retrodev.com>
date Tue, 22 Jul 2014 21:31:41 -0700
parents d83647152485
children 38ca63e0a62e
line wrap: on
line source

{
	_none <- #{
		value:none <- :ifval :ifnone {
			ifnone:
		}
	}
	#{
		value <- :v {
			#{
				value:none <- :ifval :ifnone {
					ifval: v
				}
			}
		}
		none <- { _none }
	}
}