Skip to content

Commit

Permalink
[Primitives] Remove List.intersperse
Browse files Browse the repository at this point in the history
  • Loading branch information
hyazinthh committed Aug 6, 2024
1 parent da7507d commit 46610e4
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/Aardvark.UI.Primitives/Primitives/UI.Primitives.fs
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,6 @@ open Aardvark.UI.Primitives

type NumericInputType = Slider | InputBox

module List =
/// The intersperse function takes an element and a list and
/// 'intersperses' that element between the elements of the list.
let intersperse sep ls =
List.foldBack (fun x -> function
| [] -> [x]
| xs -> x::sep::xs) ls []

module Html =

module Layout =
Expand Down

0 comments on commit 46610e4

Please sign in to comment.