Introduction
Getting Started
Methods
Determine if the string is not empty.
Twine\Str::isNotEmpty() : bool
$string = new Twine\Str('john pinkerton'); $string->isNotEmpty(); // Returns true
$string = new Twine\Str(''); $string->isNotEmpty(); // Returns false