-
Notifications
You must be signed in to change notification settings - Fork 34
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
Added BOOLS_TO_XX.fct files to utils-1.0.0 #239
Added BOOLS_TO_XX.fct files to utils-1.0.0 #239
Conversation
Test Results 97 files ±0 97 suites ±0 39s ⏱️ -1s Results for commit 6aeb432. ± Comparison against base commit 9166b73. This pull request removes 1 and adds 2 tests. Note that renamed tests count towards both.
♻️ This comment has been updated with latest results. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As a general remark, TO* named functions are reserved for official cast functions.
The functions introduced here are not casts and introduce a big potential for mistyping names BOOL_TO vs BOOLS_TO
Please propose other names, in order to make those functions clearly distinguishable from standardized cast functions
data/typelibrary/utils-1.0.0/typelib/assembling/BOOLS_TO_LWORD.fct
Outdated
Show resolved
Hide resolved
@MoritzO02 it is BOOLS_TO_BYTE because many Bools make ONE Byte. |
data/typelibrary/utils-1.0.0/typelib/assembling/ASSEMBLE_BYTE_FROM_BOOLS.fct
Outdated
Show resolved
Hide resolved
data/typelibrary/utils-1.0.0/typelib/assembling/ASSEMBLE_DWORD_FROM_BOOLS.fct
Outdated
Show resolved
Hide resolved
data/typelibrary/utils-1.0.0/typelib/assembling/ASSEMBLE_LWORD_FROM_BOOLS.fct
Outdated
Show resolved
Hide resolved
data/typelibrary/utils-1.0.0/typelib/assembling/ASSEMBLE_LWORD_FROM_BOOLS.fct
Outdated
Show resolved
Hide resolved
data/typelibrary/utils-1.0.0/typelib/assembling/ASSEMBLE_WORD_FROM_BOOLS.fct
Outdated
Show resolved
Hide resolved
data/typelibrary/utils-1.0.0/typelib/assembling/ASSEMBLE_WORD_FROM_BOOLS.fct
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good to me, Approved
9dcd9c1
to
ceeddac
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me, Approved.
Added BOOLS_TO_BYTES, BOOLS_TO_DWORD, BOOLS_TO_LWORD, BOOLS_TO_WORD functions.
Also added assembling directory under utils-typelib
for issue #221