Skip to content

Commit

Permalink
NEWS and manual update for #6081
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Aug 30, 2014
1 parent a147f30 commit 90bf63c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ New language features

* Unicode version 7 is now supported for identifiers etcetera ([#7917]).

* Type parameters now permit any arbitrary `isbits` type, not just
`Int` and `Bool` ([#6081]).

Library improvements
--------------------

Expand Down Expand Up @@ -905,6 +908,7 @@ Too numerous to mention.
[#6056]: https://github.com/JuliaLang/julia/issues/6056
[#6057]: https://github.com/JuliaLang/julia/issues/6057
[#6073]: https://github.com/JuliaLang/julia/issues/6073
[#6081]: https://github.com/JuliaLang/julia/issues/6081
[#6116]: https://github.com/JuliaLang/julia/issues/6116
[#6128]: https://github.com/JuliaLang/julia/issues/6128
[#6169]: https://github.com/JuliaLang/julia/issues/6169
Expand Down
8 changes: 5 additions & 3 deletions doc/manual/types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,11 @@ Julia's type system that should be mentioned up front are:
distinction significant.
- Only values, not variables, have types — variables are simply names
bound to values.
- Both abstract and concrete types can be parameterized by other types
and by certain other values (currently integers, symbols, bools, and tuples thereof).
Type parameters may be completely omitted when they
- Both abstract and concrete types can be parameterized by other types.
They can also be parameterized by symbols, by values of any type for
which `isbits` returns true (essentially, things like numbers and bools
that are stored like C types or structs with no pointers to other objects),
and also by tuples thereof. Type parameters may be omitted when they
do not need to be referenced or restricted.

Julia's type system is designed to be powerful and expressive, yet
Expand Down

0 comments on commit 90bf63c

Please sign in to comment.