| ▲ | irishcoffee 3 hours ago | |
> Abstractions are the source of bloat. Without abstractions you can always reduce bloat, or you can reduce bloat in your glue, but you can't reduce glue. I don’t think I agree. Here is an example. QTcpSocket socket; socket.connectToHost(QHostAddress::LocalHost, 1234); Vs: int clientSocket = socket(AF_INET, SOCK_STREAM, 0); | ||