Skip to content
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

Update example code in README.md #331

Closed
wants to merge 1 commit into from
Closed

Conversation

r-chris
Copy link

@r-chris r-chris commented Oct 1, 2016

Without an explicit Array{Int64} instantiation the following error is produced (in julia 0.5.0): ERROR: MethodError: no method matching write(::HDF5.HDF5File, ::String, ::Array{UnitRange{Int64},1})

Without an explicit `Array{Int64}` instantiation the following error is produced (in julia 0.5.0): `ERROR: MethodError: no method matching write(::HDF5.HDF5File, ::String, ::Array{UnitRange{Int64},1})`
@@ -115,7 +115,7 @@ end
Convenience functions for attributes attached to datasets are also provided:

```julia
A=[1:10]
A=Array{Int64}(1:10)
Copy link
Contributor

@andyferris andyferris Oct 24, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's a bit shorter to write collect(1:10) or [i for i=1:10], or your example could be rand(Int, 10) or something.

Copy link
Member

@musm musm Feb 15, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Better to write it as A = Vector{Int64}(1:10)

@andyferris
Copy link
Contributor

The motivation behind the PR is pretty uncontroversial... I'm a little surprised there hasn't been a single comment in weeks.

@andyferris
Copy link
Contributor

bump

@musm musm mentioned this pull request Mar 10, 2017
@musm
Copy link
Member

musm commented Mar 13, 2017

Closer by #373

@musm musm closed this Mar 13, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants