@@ -61,7 +61,7 @@ import Base: convert, getindex, eltype, <, <=, +, -, *, /, ^, ==,
61
61
minimum, maximum, extrema, zeros, one, promote_rule,
62
62
getproperty, real, imag, max, min, log, acos,
63
63
sin, cos, asinh, acosh, atanh, ones,
64
- Matrix
64
+ Matrix, size
65
65
# atan, tan, tanh, asin, sec, sinh, cosh,
66
66
# split
67
67
@@ -106,8 +106,8 @@ function ShiftedChebyshevGrid(grid::G, shift::S, scale::S) where {G,S}
106
106
T = typeof (zero (eltype (G)) * zero (S))
107
107
ShiftedChebyshevGrid {T,S,G} (grid, shift, scale)
108
108
end
109
- Base . size (S:: ShiftedChebyshevGrid ) = size (S. grid)
110
- Base. @propagate_inbounds Base . getindex (S:: ShiftedChebyshevGrid , i:: Int ) = S. shift + S. grid[i] * S. scale
109
+ size (S:: ShiftedChebyshevGrid ) = size (S. grid)
110
+ Base. @propagate_inbounds getindex (S:: ShiftedChebyshevGrid , i:: Int ) = S. shift + S. grid[i] * S. scale
111
111
function Base. showarg (io:: IO , S:: ShiftedChebyshevGrid , toplevel:: Bool )
112
112
print (io, " ShiftedChebyshevGrid{" , eltype (S), " }" )
113
113
end
0 commit comments