├── .github └── workflows │ └── CI.yml ├── .gitignore ├── FastAtomicLazy.Benchmarks ├── Configs │ └── MicroBenchmarkConfig.cs ├── FastAtomicLazy.Benchmarks.csproj ├── FastLazyBenchmarks.cs └── Program.cs ├── FastAtomicLazy.Tests ├── FastAtomicLazy.Tests.csproj └── FastAtomicLazySpecs.cs ├── FastAtomicLazy.sln ├── FastAtomicLazy ├── FastAtomicLazy.csproj └── FastLazy.cs ├── LICENSE └── README.md /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaronontheweb/FastAtomicLazy/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaronontheweb/FastAtomicLazy/HEAD/.gitignore -------------------------------------------------------------------------------- /FastAtomicLazy.Benchmarks/Configs/MicroBenchmarkConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaronontheweb/FastAtomicLazy/HEAD/FastAtomicLazy.Benchmarks/Configs/MicroBenchmarkConfig.cs -------------------------------------------------------------------------------- /FastAtomicLazy.Benchmarks/FastAtomicLazy.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaronontheweb/FastAtomicLazy/HEAD/FastAtomicLazy.Benchmarks/FastAtomicLazy.Benchmarks.csproj -------------------------------------------------------------------------------- /FastAtomicLazy.Benchmarks/FastLazyBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaronontheweb/FastAtomicLazy/HEAD/FastAtomicLazy.Benchmarks/FastLazyBenchmarks.cs -------------------------------------------------------------------------------- /FastAtomicLazy.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaronontheweb/FastAtomicLazy/HEAD/FastAtomicLazy.Benchmarks/Program.cs -------------------------------------------------------------------------------- /FastAtomicLazy.Tests/FastAtomicLazy.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaronontheweb/FastAtomicLazy/HEAD/FastAtomicLazy.Tests/FastAtomicLazy.Tests.csproj -------------------------------------------------------------------------------- /FastAtomicLazy.Tests/FastAtomicLazySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaronontheweb/FastAtomicLazy/HEAD/FastAtomicLazy.Tests/FastAtomicLazySpecs.cs -------------------------------------------------------------------------------- /FastAtomicLazy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaronontheweb/FastAtomicLazy/HEAD/FastAtomicLazy.sln -------------------------------------------------------------------------------- /FastAtomicLazy/FastAtomicLazy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaronontheweb/FastAtomicLazy/HEAD/FastAtomicLazy/FastAtomicLazy.csproj -------------------------------------------------------------------------------- /FastAtomicLazy/FastLazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaronontheweb/FastAtomicLazy/HEAD/FastAtomicLazy/FastLazy.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaronontheweb/FastAtomicLazy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaronontheweb/FastAtomicLazy/HEAD/README.md --------------------------------------------------------------------------------