You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now we select only those methods that belong to package [Renraku](https://github.com/Uko/Renraku), have at least one argument, and source code with less than 5 tokens:
First we sort methods by their names and then we sort the result by number of arguments in descending order:
69
70
```Smalltalk
70
71
renrakuMethods
71
-
orderBy: #methodName;
72
-
orderDescendingBy: #numberOfArgs.
72
+
sortBy: #methodName;
73
+
sortDescendingBy: #numberOfArgs.
73
74
```
74
75
### Selecting specific columns
75
76
We selecting only 4 columns (without className) and specify their order. If you inspect the result of this query, you will see the table similar to the one in a screenshot above.
0 commit comments