Home | Notifications | New Note | Local | Federated | Search | Logout
fedicat@fedicat@pc.cafe (2026-05-16 15:03:08) threw this together for a kludge (approximate the complexity of HTML content so I know which renderer to use), but it's the type of thing that makes me miss lispReply
```swift
var nodeCount: Int {
getChildNodes().map{ $0.nodeCount }.reduce(childNodeSize(), { $0 + $1 })
}
```