Open Sajjon opened 6 years ago
I saw that the file FiniteField.swift uses @_exported attribute, @_exported import UInt256.
FiniteField.swift
@_exported
@_exported import UInt256
https://robots.thoughtbot.com/swift-imports#export-an-import
"But considering that it’s a private Swift attribute (as denoted by that pesky underscore 😒 ), we’re probably best off not using it for the time being."
Sound like there is a risk that the @_exported attribute can lead to AppStore rejection?
@hyugit Any thoughts about this?
I saw that the file
FiniteField.swift
uses@_exported
attribute,@_exported import UInt256
.https://robots.thoughtbot.com/swift-imports#export-an-import
"But considering that it’s a private Swift attribute (as denoted by that pesky underscore 😒 ), we’re probably best off not using it for the time being."
Sound like there is a risk that the
@_exported
attribute can lead to AppStore rejection?