@@ -124,7 +124,8 @@ julia> fieldname(SparseMatrixCSC, 5)
124
124
"""
125
125
fieldname (t:: DataType , i:: Integer ) = t. name. names[i]:: Symbol
126
126
fieldname (t:: UnionAll , i:: Integer ) = fieldname (unwrap_unionall (t), i)
127
- fieldname (t:: Type{<:Tuple} , i:: Integer ) = i < 1 || i > nfields (t) ? throw (BoundsError (t, i)) : Int (i)
127
+ fieldname (t:: Type{<:Tuple} , i:: Integer ) =
128
+ i < 1 || i > fieldcount (t) ? throw (BoundsError (t, i)) : Int (i)
128
129
129
130
"""
130
131
fieldnames(x::DataType)
@@ -139,16 +140,9 @@ julia> fieldnames(Hermitian)
139
140
:uplo
140
141
```
141
142
"""
142
- function fieldnames (v)
143
- t = typeof (v)
144
- if ! isa (t,DataType)
145
- throw (ArgumentError (" cannot call fieldnames() on a non-composite type" ))
146
- end
147
- return fieldnames (t)
148
- end
149
- fieldnames (t:: DataType ) = Symbol[fieldname (t, n) for n in 1 : nfields (t)]
143
+ fieldnames (t:: DataType ) = Symbol[fieldname (t, n) for n in 1 : fieldcount (t)]
150
144
fieldnames (t:: UnionAll ) = fieldnames (unwrap_unionall (t))
151
- fieldnames (t:: Type{<:Tuple} ) = Int[n for n in 1 : nfields (t)]
145
+ fieldnames (t:: Type{<:Tuple} ) = Int[n for n in 1 : fieldcount (t)]
152
146
153
147
"""
154
148
Base.datatype_name(t) -> Symbol
@@ -265,7 +259,7 @@ false
265
259
```
266
260
"""
267
261
isimmutable (x:: ANY ) = (@_pure_meta ; (isa (x,Tuple) || ! typeof (x). mutable))
268
- isstructtype (t:: DataType ) = (@_pure_meta ; nfields (t ) != 0 || (t. size== 0 && ! t. abstract))
262
+ isstructtype (t:: DataType ) = (@_pure_meta ; length (t . types ) != 0 || (t. size== 0 && ! t. abstract))
269
263
isstructtype (x) = (@_pure_meta ; false )
270
264
271
265
"""
@@ -371,7 +365,7 @@ The byte offset of field `i` of a type relative to the data start. For example,
371
365
use it in the following manner to summarize information about a struct:
372
366
373
367
```jldoctest
374
- julia> structinfo(T) = [(fieldoffset(T,i), fieldname(T,i), fieldtype(T,i)) for i = 1:nfields (T)];
368
+ julia> structinfo(T) = [(fieldoffset(T,i), fieldname(T,i), fieldtype(T,i)) for i = 1:fieldcount (T)];
375
369
376
370
julia> structinfo(Base.Filesystem.StatStruct)
377
371
12-element Array{Tuple{UInt64,Symbol,DataType},1}:
440
434
441
435
type_alignment (x:: DataType ) = (@_pure_meta ; ccall (:jl_get_alignment , Csize_t, (Any,), x))
442
436
437
+ """
438
+ fieldcount(t::Type)
439
+
440
+ Get the number of fields that an instance of the given type would have.
441
+ An error is thrown if the type is too abstract to determine this.
442
+ """
443
+ function fieldcount (t:: ANY )
444
+ if t isa UnionAll || t isa Union
445
+ p = ccall (:jl_argument_datatype , Ptr{Void}, (Any,), t)
446
+ if p == C_NULL
447
+ error (" type does not have a definite number of fields" )
448
+ end
449
+ t = unsafe_pointer_to_objref (p):: DataType
450
+ elseif t == Union{}
451
+ return 0
452
+ end
453
+ if ! (t isa DataType)
454
+ throw (TypeError (:fieldcount , " " , Type, t))
455
+ end
456
+ if t. abstract || (t. name === Tuple. name && isvatuple (t))
457
+ error (" type does not have a definite number of fields" )
458
+ end
459
+ return length (t. types)
460
+ end
461
+
443
462
# return all instances, for types that can be enumerated
444
463
445
464
"""
0 commit comments