From a08e196a954aa2fd03e707481223e16790990ced Mon Sep 17 00:00:00 2001 From: Joe Bryan Date: Sun, 6 Dec 2020 17:14:04 -0800 Subject: [PATCH] hoon: avoid "fund: in/by" jet printfs by tweaking +map/+set/+qeu --- pkg/arvo/sys/hoon.hoon | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/arvo/sys/hoon.hoon b/pkg/arvo/sys/hoon.hoon index 90cb98dc4..1887d5c73 100644 --- a/pkg/arvo/sys/hoon.hoon +++ b/pkg/arvo/sys/hoon.hoon @@ -1905,17 +1905,17 @@ ++ map |$ [key value] :: table $| (tree (pair key value)) - |=(a=(tree (pair)) ~(apt by a)) + |=(a=(tree (pair)) ?:(=(~ a) & ~(apt by a))) :: ++ qeu |$ [item] :: queue $| (tree item) - |=(a=(tree) ~(apt to a)) + |=(a=(tree) ?:(=(~ a) & ~(apt to a))) :: ++ set |$ [item] :: set $| (tree item) - |=(a=(tree) ~(apt in a)) + |=(a=(tree) ?:(=(~ a) & ~(apt in a))) :: :::: 2l: container from container :: :: ::