Skip to content
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

Implemented functions for FlatList module to correspond to Array module #10

Open
wants to merge 19 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .vscode/tasks.json
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"
}
]
}
xperiandri marked this conversation as resolved.
Show resolved Hide resolved
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>
Loading