Skip to content

Commit e7ed733

Browse files
committed
Temp remove inlining to allow use in FSI
1 parent 4a3a929 commit e7ed733

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/FSharpy.TaskSeq/TaskSeq.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module TaskSeq =
99
open FSharpy.TaskSeqBuilders
1010

1111
// Just for convenience
12-
module Internal = FSharpy.TaskSeqInternal
12+
module Internal = TaskSeqInternal
1313

1414
/// Returns taskSeq as an array. This function is blocking until the sequence is exhausted.
1515
let toList (t: taskSeq<'T>) = [

src/FSharpy.TaskSeq/TaskSeqInternal.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ module internal TaskSeqInternal =
8080
return res
8181
}
8282

83-
let inline toResizeArrayAndMapAsync mapper taskSeq = (toResizeArrayAsync >> Task.map mapper) taskSeq
83+
let toResizeArrayAndMapAsync mapper taskSeq = (toResizeArrayAsync >> Task.map mapper) taskSeq
8484

8585
let map mapper (taskSequence: taskSeq<_>) =
8686
match mapper with

0 commit comments

Comments
 (0)