alpha
Login
or
Join now
nandi.uk
/
gleam
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Fork of daniellemaywood.uk/gleam — Wasm codegen work
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Mark prepend as internal
author
Louis Pilfold
date
2 years ago
(Mar 5, 2024, 2:23 PM UTC)
commit
80a45ed1
80a45ed1d057656e7c1d89e5c0b392d776a099b4
parent
995b6ca1
995b6ca13c9420546a1d490ded7bf54fbacd3f9d
+2
-1
1 changed file
Expand all
Collapse all
Unified
Split
compiler-core
templates
prelude.mjs
+2
-1
compiler-core/templates/prelude.mjs
View file
Reviewed
···
52
52
}
53
53
}
54
54
55
55
+
// @internal
55
56
export function prepend(element, tail) {
56
56
-
return new NonEmpty(element, tail)
57
57
+
return new NonEmpty(element, tail);
57
58
}
58
59
59
60
export function toList(elements, tail) {