-
Hi, just wondering if/how we could get support for the alternative style of method chaining i.e. 'leading dots' - see Option A in the [Ruby Style Guide](https://github.com/bbatsov/ruby-style-guide#co…
-
In R, when a dataframe is piped, whenever you used the function and hit "tab", the list of columns will appear
In Python, you can select columns if it is outside of the method like below:
Bu…
-
### Abort problem
The babel-preset-react-app inside create-react-app references the following four packages as dependencies, but all of them are deprecated. We recommend that you change them to…
-
I would like to have more control over the formatting options for method chaining, particularly when using fluent builders or stream processing. Specifically, controlling how line wrapping works, e.g.…
-
I would like the ability to chain methods to the `Element` object the same way I can with the `Command` object.
When I have a command I can do something like this:
```
this.remote.findByCssSelector…
-
I have a proposition that I believe would ease testing of the http handlers. It revolves around chaining commands and building a test case in that way. See below:
```go
func TestListJobs_CreatJob(…
-
Method chaining doesn't work at all inside expressions without a newline:
Example:
``` Rust
Ok(foo.bar()
.baz())
```
This works:
``` Rust
Ok(
foo.bar()
.baz()
)
`…
-
Basically allow this:
```crystal
int = 8
case int
when .size > 2
# do stuff
end
```
-
Lines 185 - 193
It might be helpful to step through this process explicitly, left to right and show the results of each method. Then set that object up to have the next chained method called on it.…
-
``` ruby
class NewModel
include DataMapper::Resource
property :id ,Serial
property :use_starts_at, DateTime
property :use_ends_at, DateTime
def self.usable_after(time)
all(:use_starts_…