We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With merging of #15 we now have a mixture of ifdef and if (in case of osx) for detecting how to generate application directories.
ifdef
if
It might be cleaner to use a primitive like:
primitive Osx primitive OsxAsUnix primitive Unix primitive Windows type Platform is (Osx | OsxAsUnix | Unix | Windows)
and use a match statement in each function to determine how to create the particular appdirs.
cc @SeanTAllen does that express your ideas?
The text was updated successfully, but these errors were encountered:
@mfelsche yes.
a key point being that we determine the platform once on startup and then use that platform type with matching everywhere else.
Sorry, something went wrong.
No branches or pull requests
With merging of #15 we now have a mixture of
ifdef
andif
(in case of osx) for detecting how to generate application directories.It might be cleaner to use a primitive like:
and use a match statement in each function to determine how to create the particular appdirs.
cc @SeanTAllen does that express your ideas?
The text was updated successfully, but these errors were encountered: