Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
5 changes: 4 additions & 1 deletion src/Error.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System;
// Copyright (c) 2026 Viktor Stojanović. All rights reserved.
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.

using System;

namespace UnmanagedResult;

Expand Down
5 changes: 4 additions & 1 deletion src/IError.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
namespace UnmanagedResult;
// Copyright (c) 2026 Viktor Stojanović. All rights reserved.
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.

namespace UnmanagedResult;

public interface IError
{
Expand Down
5 changes: 4 additions & 1 deletion src/IResult.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
namespace UnmanagedResult;
// Copyright (c) 2026 Viktor Stojanović. All rights reserved.
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.

namespace UnmanagedResult;

public interface IResult<TValue, TError>
where TValue : unmanaged
Expand Down
5 changes: 4 additions & 1 deletion src/Result.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System;
// Copyright (c) 2026 Viktor Stojanović. All rights reserved.
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.

using System;

namespace UnmanagedResult;

Expand Down
Loading