|
|
|
|
|
by mquander
5880 days ago
|
|
I think it only looks gross because they're methods on an object, and you're used to that meaning "imperative mutable thing." Compare this: employees.AsParallel().AsOrdered()
to the more-traditional-C-style MaintainOrder(Parallelize(employees))
or the admittedly more attractive (maintain-order (parallelize employees))
and suddenly it seems perfectly sensible. I thought it was ugly first, too, but now I'm used to it. |
|