forked from eventhelix/FSharp.Collections.Immutable
-
Notifications
You must be signed in to change notification settings - Fork 8
Implemented functions for FlatList
module to correspond to Array
module
#10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
rokklobster
wants to merge
19
commits into
fsprojects:develop
Choose a base branch
from
rokklobster:feature/collection-methods
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
1d13c8b
flat list - first set of missing array APIs
rokklobster f2b637d
flat list - fix mapFold(+Back) and for loops
rokklobster f68ab1c
flat list - add unzip
rokklobster 96466f7
flat list - find index, unfold, remove excessions
rokklobster 6ce003b
flat list - another changes pack
rokklobster 515f913
flat list - exactlyOne + try
rokklobster 82dbf1d
flat-list - post-review fixes for first half
rokklobster b5dc6df
flat list - fix sorting (and helpers)
rokklobster 3b9c912
general: vscode build task, move common funcs
rokklobster 3cc77b1
flat list - remove sortInPlace*
rokklobster b200e5c
flat list - all APIs ported
rokklobster bbf1366
flat list - post-review fixes
rokklobster 0ee37d5
flat list - update signatures: force main arg as FlatList
rokklobster 697c5f8
flat-list - changes
rokklobster 8af69b9
flat list - fix minor issues
rokklobster 452bfb9
flat list - final post-review changes
rokklobster c020a36
add compiled name annotations
rokklobster c0d8313
fixes upon review
rokklobster 69eb1b9
amendments
rokklobster File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "build", | ||
"command": "dotnet", | ||
"type": "shell", | ||
"args": [ | ||
"build", | ||
// Ask dotnet build to generate full paths for file names. | ||
"/property:GenerateFullPaths=true", | ||
// Do not generate summary otherwise it leads to duplicate errors in Problems panel | ||
"/consoleloggerparameters:NoSummary" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"presentation": { | ||
"reveal": "silent" | ||
}, | ||
"problemMatcher": "$msCompile" | ||
} | ||
] | ||
} | ||
86 changes: 41 additions & 45 deletions
86
src/FSharp.Collections.Immutable/FSharp.Collections.Immutable.fsproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,41 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> | ||
<Description>F# bindings for System.Collections.Immutable</Description> | ||
<Copyright>Copyright © XperiAndri 2016</Copyright> | ||
<AssemblyTitle>FSharp.Collections.Immutable</AssemblyTitle> | ||
<Company>XperiAndri</Company> | ||
<ProductName>FSharp.Collections.Immutable</ProductName> | ||
<Version>2.0.0</Version> | ||
<Authors>XperiAndri;EventHelix;vilinski;anthony-mi;dim-37</Authors> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageId>FSharp.Collections.Immutable</PackageId> | ||
<PackageTags>System;Immutable;Collections;FSharp;F#</PackageTags> | ||
<RepositoryType>git</RepositoryType> | ||
<DebugType>embedded</DebugType> | ||
<RepositoryUrl>https://github.com/fsprojects/FSharp.Collections.Immutable/</RepositoryUrl> | ||
<PackageProjectUrl>https://github.com/fsprojects/FSharp.Collections.Immutable/</PackageProjectUrl> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="immutable-collection-util.fs" /> | ||
<Compile Include="flat-list.fs" /> | ||
<Compile Include="stack.fs" /> | ||
<Compile Include="immutable-list.fs" /> | ||
<Compile Include="queue.fs" /> | ||
<Compile Include="indexed-seq.fs" /> | ||
<Compile Include="maps.fs" /> | ||
<Compile Include="sets.fs" /> | ||
<Compile Include="seq.fs" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> | ||
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/> | ||
</ItemGroup> | ||
|
||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> | ||
<Description>F# bindings for System.Collections.Immutable</Description> | ||
<Copyright>Copyright © XperiAndri 2016</Copyright> | ||
<AssemblyTitle>FSharp.Collections.Immutable</AssemblyTitle> | ||
<Company>XperiAndri</Company> | ||
<ProductName>FSharp.Collections.Immutable</ProductName> | ||
<Version>2.0.0</Version> | ||
<Authors>XperiAndri;EventHelix;vilinski;anthony-mi;dim-37</Authors> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageId>FSharp.Collections.Immutable</PackageId> | ||
<PackageTags>System;Immutable;Collections;FSharp;F#</PackageTags> | ||
<RepositoryType>git</RepositoryType> | ||
<DebugType>embedded</DebugType> | ||
<RepositoryUrl>https://github.com/fsprojects/FSharp.Collections.Immutable/</RepositoryUrl> | ||
<PackageProjectUrl>https://github.com/fsprojects/FSharp.Collections.Immutable/</PackageProjectUrl> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="functional-utils.fs" /> | ||
<Compile Include="immutable-collection-util.fs" /> | ||
<Compile Include="flat-list.fs" /> | ||
<Compile Include="stack.fs" /> | ||
<Compile Include="immutable-list.fs" /> | ||
<Compile Include="queue.fs" /> | ||
<Compile Include="indexed-seq.fs" /> | ||
<Compile Include="maps.fs" /> | ||
<Compile Include="sets.fs" /> | ||
<Compile Include="seq.fs" /> | ||
</ItemGroup> | ||
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> | ||
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" /> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.