We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
(This feature was already requested in awesome_print)
It whould be nice to implement a depth options:
array = [[1,2], [3,4]] ap(array) # [ # [0] [ # [0] 1, # [1] 2 # ], # [1] [ # [0] 3, # [1] 4 # ] # ] ap(array, depth: 1) # [ # [0] [1, 2], # [1] [3, 4] # ]
I intended to make a pull request, but the code is pretty complex, I won't say no to be helped.
The text was updated successfully, but these errors were encountered:
I created a pull request that adds this feature: #86
Sorry, something went wrong.
@gabrielcosta42 have you had a chance to look over our suggestions in that pull request?
No branches or pull requests
(This feature was already requested in awesome_print)
It whould be nice to implement a depth options:
I intended to make a pull request, but the code is pretty complex, I won't say no to be helped.
The text was updated successfully, but these errors were encountered: