aDAVISk (Akito D. Kawamura)
- Login: aDAVISk
- Registered on: 04/15/2022
- Last sign in: 04/15/2022
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 0 | 1 |
Activity
04/15/2022
-
11:09 AM Ruby Feature #18736: self-p for method chain
- That's exactly I meant. Thanks a lot, I call this topic closed. Sorry for the bad traffic.
-
09:03 AM Ruby Feature #18736 (Open): self-p for method chain
- You may want to check object with `p` method at the middle of a method chain.
Here is my recomendation.
```ruby
class Object
def sp(method=nil, *args, &block)
if method
Kernel.p self.public_send(method, *args, &blo...