Prefill 1.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Prefill --version 1.2.0
NuGet\Install-Package Prefill -Version 1.2.0
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="Prefill" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Prefill --version 1.2.0
#r "nuget: Prefill, 1.2.0"
#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 Prefill as a Cake Addin
#addin nuget:?package=Prefill&version=1.2.0

// Install Prefill as a Cake Tool
#tool nuget:?package=Prefill&version=1.2.0

PreFill

PreFill is a project to align horizontally listed output values to right side in order to increase their legibility.

PreFill

Check out on NuGet gallery

Description

PreFill has methods to fill desired value preceeding of values to align them. Empty character, letter or number can be used to make different lenghted values align right. Supported data types: (sbyte, byte, int, uint, long, ulong, string)

PreFill is optimized for cpu-intense applications.

Listed Methods

PreFilledCustom(long number, byte maxNumberOfDigit, string text = "")
PreFilledCustom(long number, byte maxNumberOfDigit, char text = '')
PrefilledCustom(ulong number, byte maxNumberOfDigit, string text = "")
PreFilledCustom(ulong number, byte maxNumberOfDigit, char text = '')

Returns prefilled value. (string)

  • ulong/long number: Unsigned long or long number value

  • byte maxNumberOfDigit: Maximum number of digit of numerical value.

  • string/char text: Desired value to add at left side.

PreFilledCustom(string context, int maxLength, string text = "")
PreFilledCustom(string context, int maxLength, char text = '')

Returns prefilled value. (string)

  • string context: String text value.

  • int maxLength: Maximum length of text value.

  • string/char text: Desired value to add at left side.

PreFilledCustom(List<long> numberList, string text = "")
PrefilledCustom(List<long> numberList, char text = '')
PrefilledCustom(List<ulong> numberList, string text = "")
PrefilledCustom(List<long> numberList, char text = '')

Returns prefilled values. (List<string>)

  • List<long>/List<ulong> numberList: List of signed long or unsigned long numerical values.

  • string/char text: Desired value to add at left side.

PreFilledCustom(List<string> contextList, string text = "")
PreFilledCustom(List<string) contextList, char text = '')

Returns prefilled values (List<string>)

  • List<string> contextList: List of string values.

  • string/char text: Desired value to add at left side.

PreFillCustom(long number, int maxNumberOfDigit, string text = "")
PreFillCustom(long number, int maxNumberOfDigit, char text = '')
PreFillCustom(ulong number, int maxNumberOfDigit, string text = "")
PreFillCustom(ulong number, int maxNumberOfDigit, char text = '')

Returns prefill value only. (string)

  • ulong/long number: Signed or unsigned long numberical value.

  • int maxNumberOfDigit: Maximum number of digit of numerical value.

  • string/char text: Desired value to add at left side.

PreFill[1-8](long number, char text = '')
PreFill[1-8](ulong number, char text = '')

Returns prefill value only. (string)

  • [1-8]: Maximum digit number of prefilled values.

  • ulong/long number: Signed or unsigned long numerical value.

  • char text: Desired value to add at left side.

PreFillCustom(string text, int maxLength, string stringValue = "")
PreFillCustom(string text, int maxLength, char charValue = '')

Returns prefill value only. (string)

  • string text: String text value.

  • int maxLength: Maximum length of string value.

  • string stringValue/char charValue: Desired value to add at left side.

Example Usage

  • PreFilledCustom(5, 4, '0') ⇒ "0005"
  • PreFilledCustom(55, 3, ' ') ⇒ " 55"
  • PreFilledCustom("abc", 5, 'd') ⇒ "ddabc"
  • PreFilledCustom({5, 4, 55, 45, 32, 375}, 4, '0') ⇒ {"0005", "0004", "0055", "0045", "0032", "0375"}
  • PreFillCustom(5, 4, '0') ⇒ "000"
  • PreFillCustom(55, 3, ' ') ⇒ " "
  • PreFillCustom("abc", 5, 'd') ⇒ "dd"
  • PreFillCustom({5, 4, 55, 45, 32, 375}, 4, '0') ⇒ {" ", " ", " ", " ", " "}
  • PreFill1(5, ' ') ⇒ ""
  • PreFill2(5, ' ') ⇒ " "
  • PreFill8(5, ' ') ⇒ " "

Version History

Task list

  • Add PrefilledCustom() methods for ulong
  • Add PrefilledCustom() methods for other supported data types, if they are required to use seperately from long and ulong data types for cpu-intense application usage
  • Add PrefilledCustom() methods for string
  • Add and/or mark methods safe/unsafe.
  • Add GetNumberOfDigit method with conditional ordering to increase cpu-intense applications while values are mostly predicted about their positivity.
  • Support null values

Knowns bugs

  • If length of desired text is more than one character repeatence of adding it may make result not aligned.

Licence

No licence is required.

Authors

Twitter: @enesokullu

Help

Twitter: @enesokullu

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.1

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.0 225 2/23/2024
2.1.2 575 11/6/2023
2.1.1 468 10/18/2023
2.1.0 437 9/15/2023
2.0.0 497 8/26/2023
1.3.2 485 7/9/2023
1.3.0 493 6/19/2023
1.2.0 453 6/17/2023
1.1.3 509 1/11/2023

NuGet ready version