Bubblegum::Object::Undef - Common Methods for Operating on Undefined Values
version 0.27
use Bubblegum; my $nothing = undef; say $nothing->defined ? 'Yes' : 'No'; # No
Undefined methods work on variables whose data meets the criteria for being undefined. It is not necessary to use this module as it is loaded automatically by the Bubblegum class.
my $nothing = undef; $nothing->defined ? 'Yes' : 'No'; # No
The defined method always returns false.
Bubblegum::Object::Array, Bubblegum::Object::Code, Bubblegum::Object::Hash, Bubblegum::Object::Instance, Bubblegum::Object::Integer, Bubblegum::Object::Number, Bubblegum::Object::Scalar, Bubblegum::Object::String, Bubblegum::Object::Undef, Bubblegum::Object::Universal,
Al Newkirk <anewkirk@ana.io>
This software is copyright (c) 2013 by Al Newkirk.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.