Shawn
10/23/2018, 3:40 PM!
is a single, slender character that’s easier to gloss over than not
isgildor
10/24/2018, 5:06 AM!
on start of long expression or chain of calls
So not
as part of last call is more natural to read, compare
!something.isNullOrBlank()
=
not something is null or blank
and
something.isNotNullOrBlank()
=
something is not null or blank
not
as postfix also work, but reads not so naturally:
something.isNullOrBlank().not()
=
something is null or blank not
Shawn
10/24/2018, 5:08 PM