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

Can you fix the documentation for the methods? #29

Closed
uselessgoddess opened this issue Apr 19, 2021 · 1 comment
Closed

Can you fix the documentation for the methods? #29

uselessgoddess opened this issue Apr 19, 2021 · 1 comment
Labels
documentation Improvements or additions to documentation

Comments

@uselessgoddess
Copy link
Member

/// <summary>
/// <para>Gets result value.</para>
/// <para>Возвращает результирующее значение.</para>
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public Setter(TDecision trueValue, TDecision falseValue) : this(trueValue, falseValue, default) { }
/// <summary>
/// <para>Gets result value.</para>
/// <para>Возвращает результирующее значение.</para>
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public Setter(TResult defaultValue) : base(defaultValue) { }
/// <summary>
/// <para>Gets result value.</para>
/// <para>Возвращает результирующее значение.</para>
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public Setter() { }
/// <summary>
/// <para>Gets result value.</para>
/// <para>Возвращает результирующее значение.</para>
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public TDecision SetAndReturnTrue(TResult value)
{
_result = value;
return _trueValue;
}
/// <summary>
/// <para>Gets result value.</para>
/// <para>Возвращает результирующее значение.</para>
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public TDecision SetAndReturnFalse(TResult value)
{
_result = value;
return _falseValue;
}
/// <summary>
/// <para>Gets result value.</para>
/// <para>Возвращает результирующее значение.</para>
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public TDecision SetFirstAndReturnTrue(IList<TResult> list)
{
_result = list[0];
return _trueValue;
}
/// <summary>
/// <para>Gets result value.</para>
/// <para>Возвращает результирующее значение.</para>
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public TDecision SetFirstAndReturnFalse(IList<TResult> list)
{
_result = list[0];
return _falseValue;
}

@uselessgoddess uselessgoddess added the documentation Improvements or additions to documentation label Apr 19, 2021
@Konard
Copy link
Member

Konard commented Apr 19, 2021

These progress on these comments are tracked in #14
There is no need to fix it, because these comments are not done yet.

@Konard Konard closed this as completed Apr 19, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

2 participants