generated from PlexSheep/rs-base
add padding for outputs #9
Labels
No Label
Kind/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No Milestone
No project
No Assignees
1 Participants
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: PlexSheep/numf#9
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
let's say we want to have the binary representation of 17. If we do
numf 17 -b
it will print out10001
.This is correct, but maybe we would like to have a full byte. The request of this issue is adding a a flag
-P
that changes the output to00010001
.This does not make as much sense for base64 or base32, but is useful at least for hex and binary.
base64 and base32 already add padding, but in the form of
=
characters at the end (at least for base64).octal could pad up to the size of a full byte too.
see #11