diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2019-06-01 21:18:08 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2019-06-02 11:11:09 -0400 | 
| commit | b9d41c01911b807cc557ad1ce2f58b691ec2483c (patch) | |
| tree | e9c9a5eb7502fea1aaf91e4138cc280e91d173ea /org | |
| parent | block (grouped text) attributes (possibility) (diff) | |
book index sort: Aa-Zz (replaces A-Za-z)doc-reform_v0.6.0
Diffstat (limited to 'org')
| -rw-r--r-- | org/meta_abstraction.org | 22 | 
1 files changed, 12 insertions, 10 deletions
| diff --git a/org/meta_abstraction.org b/org/meta_abstraction.org index abfa404..3f5ba11 100644 --- a/org/meta_abstraction.org +++ b/org/meta_abstraction.org @@ -6724,10 +6724,9 @@ struct BookIndexReportSection {    auto bookindex_write_section(BI)(      BI bookindex_unordered_hashes    ) { -    debug(asserts) { -      static assert(is(typeof(bookindex_unordered_hashes) == string[][string][string])); -    } -    auto mainkeys=bookindex_unordered_hashes.byKey.array.sort().release; +    auto mainkeys = +      bookindex_unordered_hashes.byKey.array +      .sort!("toUpper(a) < toUpper(b)", SwapStrategy.stable).release;      foreach (mainkey; mainkeys) {        write("_0_1 !┨", mainkey, "┣! ");        foreach (ref_; bookindex_unordered_hashes[mainkey]["_a"]) { @@ -6736,8 +6735,9 @@ struct BookIndexReportSection {        }        writeln(" \\\\");        bookindex_unordered_hashes[mainkey].remove("_a"); -      auto subkeys -        = bookindex_unordered_hashes[mainkey].byKey.array.sort().release; +      auto subkeys = +        bookindex_unordered_hashes[mainkey].byKey.array +        .sort!("toUpper(a) < toUpper(b)", SwapStrategy.stable).release;        foreach (subkey; subkeys) {          write("  ", subkey, ", ");          foreach (ref_; bookindex_unordered_hashes[mainkey][subkey]) { @@ -6773,8 +6773,9 @@ struct BookIndexReportSection {      int heading_lev_markup, heading_lev_collapsed;      string attrib;      int[string] indent; -    auto mainkeys -      = bookindex_unordered_hashes.byKey.array.sort().release; +    auto mainkeys = +      bookindex_unordered_hashes.byKey.array +      .sort!("toUpper(a) < toUpper(b)", SwapStrategy.stable).release;      ObjGenericComposite[] bookindex_section;      ObjGenericComposite comp_obj_heading_, comp_obj_para;      auto node_para_int_ = node_metadata_para_int; @@ -6855,8 +6856,9 @@ struct BookIndexReportSection {          }          bi_tmp ~= " \\\\\n    ";          bookindex_unordered_hashes[mainkey].remove("_a"); -        auto subkeys -          = bookindex_unordered_hashes[mainkey].byKey.array.sort().release; +        auto subkeys = +          bookindex_unordered_hashes[mainkey].byKey.array +          .sort!("toUpper(a) < toUpper(b)", SwapStrategy.stable).release;          foreach (subkey; subkeys) {            bi_tmp ~= subkey ~ ", ";            buffer.clear(); | 
