Click or drag to resize
RangeRestrictionmapTOldAddress, TNewAddress Method
Transforms all absolute addresses in the specified range restriction using the provided function (this is useful for mapping between different address spaces).

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static RangeRestriction<TNewAddress> map<TOldAddress, TNewAddress>(
	FSharpFunc<TOldAddress, TNewAddress> f,
	RangeRestriction<TOldAddress> _arg1
)

Parameters

f
Type: Microsoft.FSharp.CoreFSharpFuncTOldAddress, TNewAddress

[Missing <param name="f"/> documentation for "M:Deedle.RangeRestriction.map``2(Microsoft.FSharp.Core.FSharpFunc{``0,``1},Deedle.RangeRestriction{``0})"]

_arg1
Type: DeedleRangeRestrictionTOldAddress

[Missing <param name="_arg1"/> documentation for "M:Deedle.RangeRestriction.map``2(Microsoft.FSharp.Core.FSharpFunc{``0,``1},Deedle.RangeRestriction{``0})"]

Type Parameters

TOldAddress
TNewAddress

Return Value

Type: RangeRestrictionTNewAddress

[Missing <returns> documentation for "M:Deedle.RangeRestriction.map``2(Microsoft.FSharp.Core.FSharpFunc{``0,``1},Deedle.RangeRestriction{``0})"]

See Also