xKDR / Survey.jl

Analysis of complex surveys
https://xkdr.github.io/Survey.jl/
GNU General Public License v3.0
50 stars 19 forks source link

Refactor SurveyDesign constructor to SurveyDesign! #318

Closed EngPeterAtef closed 3 months ago

EngPeterAtef commented 3 months ago

This commit updates the SurveyDesign constructor to SurveyDesign! across multiple files including SurveyDesign.jl, by.jl, and runtests.jl. The change reflects a move towards a more explicit indication of in-place modifications or significant changes that the constructor might perform on the data it receives. This naming convention aligns with Julia's standard practice of using the bang symbol (!) to denote functions that modify their arguments or have important side effects.

Additionally, minor formatting adjustments were made in runtests.jl to improve code readability and consistency with Julia's style guidelines.