src/Sirh3e.Rust/Option/Methods/Option.IsSome.cs

Summary

Maintainability
A
0 mins
Test Coverage
namespace Sirh3e.Rust.Option;

public partial struct Option<TSome>
{
    /// <summary>
    /// Returns true if the option is a Some value.
    /// </summary>
    public bool IsSome { get; private set; }
}