▲ | dec0dedab0de 3 days ago | |
I really don’t like overloading pipes like this. I would rather chain methods like how the django orm does it. you could reassign every line, but it would look nicer with chained functions.
edit:I would be tempted to do something like this:
| ||
▲ | Rickster35 3 days ago | parent | next [-] | |
According to the docs, | is syntactic sugar for the .pipe method.
That's probably the chained method approach for those with this preference. | ||
▲ | me-vs-cat a day ago | parent | prev [-] | |
This style looks pretty good to me:
So does this style:
But it appears you can just change "task" to "Task" and then:
|