File tree Expand file tree Collapse file tree 1 file changed +14
-11
lines changed
kore/src/Kore/Builtin/InternalBytes Expand file tree Collapse file tree 1 file changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -67,11 +67,13 @@ sort :: Text
67
67
sort = " BYTES.Bytes"
68
68
69
69
70
- -- | Render a 'ByteString' as an internal domain value of the given sort.
71
- -- | The result sort should be hooked to the builtin @Bytes@ sort, but this is
72
- -- | not checked.
73
- -- |
74
- -- | See also: 'sort'.
70
+ {- | Render a 'ByteString' as an internal domain value of the given sort.
71
+
72
+ The result sort should be hooked to the builtin @Bytes@ sort, but this is
73
+ not checked.
74
+
75
+ See also: 'sort'.
76
+ -}
75
77
asInternal
76
78
:: InternalVariable variable
77
79
=> Sort -- ^ resulting sort
@@ -80,12 +82,13 @@ asInternal
80
82
asInternal bytesSort bytesValue =
81
83
TermLike. markSimplified $ mkInternalBytes bytesSort bytesValue
82
84
83
- -- | Render a 'Bytes' as a domain value pattern of the given sort.
84
- -- |
85
- -- | The result sort should be hooked to the builtin @Bytes@ sort, but this is
86
- -- | not checked.
87
- -- |
88
- -- | See also: 'sort'.
85
+ {- | Render a 'Bytes' as a domain value pattern of the given sort.
86
+
87
+ The result sort should be hooked to the builtin @Bytes@ sort, but this is
88
+ not checked.
89
+
90
+ See also: 'sort'.
91
+ -}
89
92
asTermLike
90
93
:: InternalVariable variable
91
94
=> InternalBytes -- ^ builtin value to render
You can’t perform that action at this time.
0 commit comments