SiddiqSoft.RunOnEnd
1.0.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package SiddiqSoft.RunOnEnd --version 1.0.1
NuGet\Install-Package SiddiqSoft.RunOnEnd -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SiddiqSoft.RunOnEnd" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SiddiqSoft.RunOnEnd --version 1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: SiddiqSoft.RunOnEnd, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SiddiqSoft.RunOnEnd as a Cake Addin #addin nuget:?package=SiddiqSoft.RunOnEnd&version=1.0.1 // Install SiddiqSoft.RunOnEnd as a Cake Tool #tool nuget:?package=SiddiqSoft.RunOnEnd&version=1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
RunOnEnd : Run a lambda in destructor
Objective
- A simpler "run on end" vs. the custom deletor available via
std::unique_ptr<>
. It is important to note that we do not provide an "owning" helper as this is better accomplished via the destructor code forstd::unique_ptr<>
. Avoid writing code that exists in std. - Use the nuget SiddiqSoft.RunOnEnd
- Copy paste..whatever works.
#include "gtest/gtest.h"
#include "siddiqsoft/RunOnEnd.hpp"
TEST(examples, Example1)
{
bool passTest {false};
try
{
// Use initializer list-style instantiation; we do not allow move/assignment construction.
// Note that the `()` is not required when the lambda/function takes no argument.
siddiqsoft::RunOnEnd roe {[&passTest] {
// Runs when this scope ends
passTest = true;
}};
}
catch (...) {
EXPECT_TRUE(false); // if we throw then the test fails.
}
// Iff the lambda runs, it should be true
EXPECT_TRUE(passTest);
}
<small align="right">
© 2021 Siddiq Software LLC. All rights reserved.
</small>
Product | Versions Compatible and additional computed target framework versions. |
---|---|
native | native is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on SiddiqSoft.RunOnEnd:
Package | Downloads |
---|---|
SiddiqSoft.AzureCppUtils
Azure REST API Helpers for Modern C++. Featuring helper functions for date-time, encryption tokens for Azure REST API as a single header-only package and native Win32 libraries. |
|
SiddiqSoft.CosmosClient
Azure Cosmos REST-API Client for Modern C++ |
GitHub repositories
This package is not used by any popular GitHub repositories.