Skip to content

Commit

Permalink
Tweak of the immutable list internal buffer size
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Louth committed Sep 14, 2015
1 parent 9adb234 commit 8d39bb3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified CSharpMonad/lib/Monad.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion CSharpMonad/src/utility/ImmutableList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static ImmutableList<T> Single<T>(T value)
/// </summary>
public class ImmutableList<T> : IEnumerable<T>
{
const int CollapseAtDepth = 64;
const int CollapseAtDepth = 256;

private readonly T[] source;
private readonly int length;
Expand Down

0 comments on commit 8d39bb3

Please sign in to comment.