forked from mirrors/nixpkgs
lib/strings: hide asciiTable
Since it's an attribute set, the lib function location generating code tries to generate locations for each of the characters...
This commit is contained in:
parent
0360354af6
commit
a342ebe166
|
@ -4,6 +4,8 @@ let
|
||||||
|
|
||||||
inherit (builtins) length;
|
inherit (builtins) length;
|
||||||
|
|
||||||
|
asciiTable = import ./ascii-table.nix;
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
rec {
|
rec {
|
||||||
|
@ -34,8 +36,6 @@ rec {
|
||||||
unsafeDiscardStringContext
|
unsafeDiscardStringContext
|
||||||
;
|
;
|
||||||
|
|
||||||
asciiTable = import ./ascii-table.nix;
|
|
||||||
|
|
||||||
/* Concatenate a list of strings.
|
/* Concatenate a list of strings.
|
||||||
|
|
||||||
Type: concatStrings :: [string] -> string
|
Type: concatStrings :: [string] -> string
|
||||||
|
|
Loading…
Reference in a new issue