Skip to content

Commit

Permalink
Temp remove inlining to allow use in FSI
Browse files Browse the repository at this point in the history
  • Loading branch information
abelbraaksma committed Oct 12, 2022
1 parent 4a3a929 commit e7ed733
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/FSharpy.TaskSeq/TaskSeq.fs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module TaskSeq =
open FSharpy.TaskSeqBuilders

// Just for convenience
module Internal = FSharpy.TaskSeqInternal
module Internal = TaskSeqInternal

/// Returns taskSeq as an array. This function is blocking until the sequence is exhausted.
let toList (t: taskSeq<'T>) = [
Expand Down
2 changes: 1 addition & 1 deletion src/FSharpy.TaskSeq/TaskSeqInternal.fs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ module internal TaskSeqInternal =
return res
}

let inline toResizeArrayAndMapAsync mapper taskSeq = (toResizeArrayAsync >> Task.map mapper) taskSeq
let toResizeArrayAndMapAsync mapper taskSeq = (toResizeArrayAsync >> Task.map mapper) taskSeq

let map mapper (taskSequence: taskSeq<_>) =
match mapper with
Expand Down

0 comments on commit e7ed733

Please sign in to comment.