Giter Site home page Giter Site logo

Comments (2)

passsy avatar passsy commented on August 15, 2024

Interesting idea! Not quite general enough for my taste though.

Your proposed or is not general, because some developers want it to work for empty strings, some for blank strings, some for blank strings and dashes "-", .... There are too many ways to get it right.

Let me show you an alternative

In Dart, you can use the ?? operator for a fallback for nullable types. This is commonly known and you'd use it too here if it would also work for an empty string.

What we can do is convert all empty strings to null and then use the ?? operator.

someNullOrEmptyStr.emptyAsNull() ?? 'not null or empty string';

This would also work for any other concept of "emptyness" that should be replaced with a placeholder and can be chained

someNullOrEmptyStr.blankAsNull().emptyAsNull().dashAsNull() ?? 'not null or empty string';

Another benefit of ?? is that it works lazyly. If the fallback is not required, the function is not called.

"".emptyAsNull() ?? expensiveFunction(); // expensiveFunction is not called
"".or(expensiveFunction()) //  expensiveFunction is called but not used

from dartx.

azliR avatar azliR commented on August 15, 2024

Oh wow that's even better! Thanks for the correction!

from dartx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.