mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
lib.isConvertibleToString: Statically compute types list
This commit is contained in:
parent
eec92ca9df
commit
a128a3f234
@ -977,9 +977,11 @@ rec {
|
|||||||
Many types of value are coercible to string this way, including int, float,
|
Many types of value are coercible to string this way, including int, float,
|
||||||
null, bool, list of similarly coercible values.
|
null, bool, list of similarly coercible values.
|
||||||
*/
|
*/
|
||||||
isConvertibleWithToString = x:
|
isConvertibleWithToString = let
|
||||||
|
types = [ "null" "int" "float" "bool" ];
|
||||||
|
in x:
|
||||||
isStringLike x ||
|
isStringLike x ||
|
||||||
elem (typeOf x) [ "null" "int" "float" "bool" ] ||
|
elem (typeOf x) types ||
|
||||||
(isList x && lib.all isConvertibleWithToString x);
|
(isList x && lib.all isConvertibleWithToString x);
|
||||||
|
|
||||||
/* Check whether a value can be coerced to a string.
|
/* Check whether a value can be coerced to a string.
|
||||||
|
Loading…
Reference in New Issue
Block a user