-
Notifications
You must be signed in to change notification settings - Fork 1
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
Implement structures #3
Conversation
implement base func to display array
Here, the implementation of structure is nearly done. let's add some utilities and features. 🤪 |
Codecov Report
@@ Coverage Diff @@
## master #3 +/- ##
==========================================
Coverage ? 100.00%
==========================================
Files ? 5
Lines ? 97
Branches ? 0
==========================================
Hits ? 97
Misses ? 0
Partials ? 0 Continue to review full report at Codecov.
|
implement area and line
constructor
src/display_row.jl
Outdated
deleteat!(row.context, collect(i1:i2)) | ||
|
||
for i=1:post insert!(row.context, i1, row.background) end | ||
insert!(row.context, i1, c) | ||
for i=1:pre insert!(row.context, i1, row.background) end |
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.
same as the previous minor advice
src/display_row.jl
Outdated
deleteat!(row.context, collect(i1:i2)) | ||
|
||
for i=1:post insert!(row.context, i1, row.background) end | ||
for c in reverse(str) insert!(row.context, i1, c) end | ||
for i=1:pre insert!(row.context, i1, row.background) end |
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.
same as the previous minor advice
Structures