You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
does the project name "Fluent-Random-Picker" still make sense?
Can extension methods for all this be built without fluent syntax?
Does the extension method syntax still look like the code that already exists?
Extension methods could exist for IEnumerable:
newList<int>{1,2,3}.PickOne();// but where can you set the RNG?newList<int>{1,2,3}.PickOne().WithSettings(rng).Evaluate();// but then, the PickOne() logic is different to the PickOne() from the normal syntax
The text was updated successfully, but these errors were encountered:
Extension methods could exist for IEnumerable:
The text was updated successfully, but these errors were encountered: