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.
1 parent 34c26b7 commit 14ce3f1Copy full SHA for 14ce3f1
src/LinearAlgebra.jl
@@ -369,6 +369,8 @@ end
369
Return the `Symbol` corresponding the `uplo` by checking for validity.
370
"""
371
function sym_uplo(uplo::Char)
372
+ # This method is called by other packages, and isn't used within LinearAlgebra
373
+ # It's retained here for backward compatibility.
374
if uplo == 'U'
375
return :U
376
elseif uplo == 'L'
0 commit comments