about summary refs log tree commit diff
path: root/src/libexpr/attr-set.hh
AgeCommit message (Collapse)AuthorFilesLines
2018-02-19 libexpr: Don't create lots of temporary strings in Bindings::lexicographicOrderTuomas Tynkkynen1-1/+1
Avoids ~180,000 string temporaries created when evaluating a headless NixOS system.
2017-01-26 Bindings: Add a method for iterating in lexicographically sorted orderEelco Dolstra1-0/+13
2015-07-14 Move attribute set data structures into their own header file.Nicolas B. Pierron1-0/+82
This modification moves Attr and Bindings structures into their own header file which is dedicated to the attribute set representation. The goal of to isolate pieces of code which are related to the attribute set representation. Thus future modifications of the attribute set representation will only have to modify these files, and not every other file across the evaluator.