File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed
slides/function_signature_design Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -454,20 +454,24 @@ if(w) { w->defaultValue("xxx"); }
454454
455455--
456456
457- ### Wordt Type: Verb
457+ ### Word Type: Verb
458458
459- * action
460- * side-effect
461- * non-pure
459+ * present tense: action, side-effect
460+ * `shuffle(begin(xs), end(xs))`
461+ * non-pure
462+ * past tense: derivative
463+ * `sorted(range)`
464+ * pure
462465
463466--
464467
465- ### Wordt Type: Adjective
468+ ### Word Type: Adjective
466469
467- * property
468- * predicate
469- * replace `isBig()` with `big()`
470- * replace `hasX()` with `optional<X> x()` or `withX(callback)`
470+ * property: describes an aspect
471+ * `Person.name`
472+ * predicate: answer to yes/no question
473+ * C++: replace `isBig()` with `big()`
474+ * C++: replace `hasX()` with `optional<X> x()` or `withX(callback)`
471475
472476--
473477
You can’t perform that action at this time.
0 commit comments