We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
>>> arr = ndtest(3) >>> arr a a0 a1 a2 0 1 2 >>> arr.append('a', 42, 'a3') a a0 a1 a2 a3 0 1 2 42 >>> arr2 = Array([42], 'a=a3') >>> arr.extend('a', arr2) a a0 a1 a2 a3 0 1 2 42 >>> arr3 = Array([42, 43], 'a=a3,a4') >>> arr.extend('a', arr3) a a0 a1 a2 a3 a4 0 1 2 42 43 >>> arr.append('a', arr3) a a0 a1 a2 a3 a4 0 1 2 42 43
The text was updated successfully, but these errors were encountered:
FWIW, I did a little poll about this for our heaviest users. So far the results are: jd +1, rd +1, bm -0, gb +0 So I will do this.
Sorry, something went wrong.
FEAT: deprecated extend (closes larray-project#887)
2a2ab32
also improved docstring for Array.append and moved test_extend closer to related tests
2d94099
53109ff
gdementen
No branches or pull requests
The text was updated successfully, but these errors were encountered: