| | 1 | Generic Function '''CHILD-COMPONENTS''' |
| | 2 | |
| | 3 | '''Syntax''': |
| | 4 | |
| | 5 | '''child-components''' ''standard-component &key pred key'' => list |
| | 6 | |
| | 7 | '''Arguments and Values''': |
| | 8 | |
| | 9 | ''standard-component'' -- the component to find the children of. |
| | 10 | |
| | 11 | ''pred'' -- if provided, a predicate that each component must pass (a filter). |
| | 12 | |
| | 13 | ''key'' -- defaults to identity. When a predicate is provided, this function is called on each potential child first. |
| | 14 | |
| | 15 | '''Description''' |
| | 16 | |
| | 17 | Returns a list of the components that are children of the given component. To be included by the default method, the child must declared as a :component argument on the slot declaration. |