(#14) Enforce 130-char line length

This commit is contained in:
Oliver Booth 2021-03-16 14:42:33 +00:00
parent 4571697589
commit c3cb8ba261
1 changed files with 4 additions and 2 deletions

View File

@ -106,10 +106,12 @@ namespace X10D.Int64Extensions
}
/// <summary>
/// Converts the value of the current 64-bit signed integer to an equivalent <see cref="bool" /> value.
/// Converts the value of the current 64-bit signed integer to an equivalent Boolean value.
/// </summary>
/// <param name="value">The value to convert.</param>
/// <returns><see langword="true" /> if <paramref name="value" /> is not zero, or <see langword="false" /> otherwise.</returns>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is not zero, or <see langword="false" /> otherwise.
/// </returns>
public static bool ToBoolean(this long value)
{
return value != 0;