Tango
  • Introduction
  • Getting Started
    • Summary
    • From me, the Developer
    • What is Tango?
    • Where to start?
  • Installation
    • Based on NuGet
    • Manually
  • Fundamentals
    • Introduction
    • Using Pattern Matching
    • Option values
    • Either values
    • From void to Unit
    • Func and Action
    • Chainable operations in a Continuation flow
    • Currying and Partial Application
  • Functional
    • Introduction
    • Currying
    • Partial Application
    • Functional Extensions
    • QuickCast to Delegates
  • Operations
    • Introduction
    • Operations with Booleans
    • Operations with Integers
    • Operations with Decimals
    • Operations with Doubles
    • Operations with Strings
  • Types
    • Introduction
    • Unit
    • Option<T>
    • Either<TLeft, TRight>
    • Continuation<TFail, TSuccess>
  • Modules
    • Introduction
    • Option
      • Apply
      • AsEnumerable
      • Bind
      • Count
      • Exists
      • Filter
      • Fold
      • FoldBack
      • Iterate
      • Map
      • OfNullable
      • ToArray
      • ToList
      • ToNullable
    • Either
      • Exists
      • Iterate
      • Fold
      • FoldBack
      • Map
      • Swap
      • ToTuple
    • Continuation
      • AsContinuation
      • Resolve
      • Reject
      • All
    • Collection
      • Append
      • Choose
      • ChunkBySize
      • Collect
      • CompareWith
      • CountBy
      • Concat
      • Distinct
      • Empty
      • Exists
      • Exists2
      • Filter
      • FindIndex
      • Fold
      • Fold2
      • FoldBack
      • FoldBack2
      • ForAll
      • ForAll2
      • ForAll3
      • Head
      • HeadAndTailEnd
      • Range
      • Generate
      • Initialize
      • Iterate
      • Iterate2
      • IterateIndexed
      • IterateIndexed2
      • Map
      • Map2
      • Map3
      • MapIndexed
      • MapIndexed2
      • MapIndexed3
      • Partition
      • Permute
      • Pick
      • Reduce
      • ReduceBack
      • Replicate
      • Scan
      • Scan2
      • ScanBack
      • ScanBack2
      • Tail
      • TryFind
      • TryPick
      • Unzip
      • Unzip3
      • Zip
      • Zip3
  • Extensions
    • Introduction
    • Enum Extensions
    • EqualityComparer Builder
    • Modules as Extensions
Powered by GitBook
On this page

Was this helpful?

  1. Modules
  2. Option

Fold

Creates a new TState value by applying the given folder function to state and Option<T>.Some option value. Otherwise returns the state itself.

Parameters

Returns

Func<TState, T, TState> folder

TState state

Option<T> option

TState

Usage

This function applies the folder function to the Option<T> value and to the state.

When the optional value IsNone the folder function won't be executed and the state is returned as a result.

When the option value IsSome

string state = "The number is: "
Option<int> optionValue = 10;
string result = optionValue.Fold(
                    state,
                    (_state, value) => string.Concat(_state, value) );

//result = "The number is: 10"

When the option value IsNone

string state = "The number is: "
Option<int> optionValue = Option<int>.None();
string result = optionValue.Fold(
                    state,
                    (_state, value) => string.Concat(_state, value) );

//result = "The number is: "

When the option value IsSome

int state = 30
Option<int> optionValue = 10;
int result = optionValue.Fold(
                 state,
                 (_state, value) => _state + value );

//result = 40

When the option value IsNone

int state = 30
Option<int> optionValue = Option<int>.None();
int result = optionValue.Fold(
                 state,
                 (_state, value) => _state + value );

//result = 30
PreviousFilterNextFoldBack

Last updated 5 years ago

Was this helpful?