Coder Social home page Coder Social logo

Syntax change about patterns HOT 4 CLOSED

suor avatar suor commented on August 16, 2024
Syntax change

from patterns.

Comments (4)

Suor avatar Suor commented on August 16, 2024

I see no point so far. See comment in gist

from patterns.

ir4y avatar ir4y commented on August 16, 2024

If you want more complicated logic.

@patterns
def list_sum():
    with [x]+xs:        
        if x in str: list_sum([int(x)]+xs)
        if x > 10: x + list_sum(xs)       

from patterns.

Suor avatar Suor commented on August 16, 2024
@patterns
def list_sum():
    if [x is str] + xs: list_sum([int(x)]+xs)
    if [x > 10] + xs: x + list_sum(xs) 

from patterns.

Suor avatar Suor commented on August 16, 2024

There are some cases when you need nest conditionals:

@patterns
def list_sum():
    with [x] + xs:
        if x is int: x
        if len(x) < 10: 1
        if len(x) >= 20: 2

But you can always use natural python ifs in "magic if" body:

@patterns
def list_sum():
    if [x] + xs:
        if isinstance(x, int): x
        if len(x) < 10: 1
        if len(x) >= 20: 2

or

@patterns
def list_sum():
    if [x is int] + xs: x
    if [x] + xs:
        if len(x) < 10: 1
        if len(x) >= 20: 2

So I see little value in imbuing more magic this way. Closed until some better use cases come up.

from patterns.

Related Issues (3)

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.