feat(module): add C++20 module support for kcenon.container (#222)#224
Merged
Conversation
- Create src/modules/container.cppm with complete module interface - Export value_types, value_variant, optimized_value, pool_stats - Export value_container class with full API - Add variant_helpers namespace with json_escape, xml_encode utilities - Import kcenon.common module for Result<T> pattern support - Update CMakeLists.txt with CONTAINER_BUILD_MODULES option - Add container_system_modules target with CMake 3.28+ module scanning Part of issue #222
- Document C++20 module support feature (#222) - Add module file structure and CMake configuration details - Note CMake 3.28+ and Ninja generator requirements - Update both English and Korean changelogs
Contributor
Performance Benchmark ReportSummary
✅ Status: No significant performance regressions detected. |
kcenon
added a commit
that referenced
this pull request
Apr 13, 2026
) * feat(module): add C++20 module support for kcenon.container - Create src/modules/container.cppm with complete module interface - Export value_types, value_variant, optimized_value, pool_stats - Export value_container class with full API - Add variant_helpers namespace with json_escape, xml_encode utilities - Import kcenon.common module for Result<T> pattern support - Update CMakeLists.txt with CONTAINER_BUILD_MODULES option - Add container_system_modules target with CMake 3.28+ module scanning Part of issue #222 * docs: update changelog for C++20 module support - Document C++20 module support feature (#222) - Add module file structure and CMake configuration details - Note CMake 3.28+ and Ninja generator requirements - Update both English and Korean changelogs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
src/modules/container.cppmwith complete module interfaceCONTAINER_BUILD_MODULESoption for module buildChanges
Module Structure
kcenon.containerkcenon.common(Tier 0)src/modules/container.cppmExported Types
value_typesenumerationvalue_variant(SOO storage type)optimized_valuestructurepool_statsstructurevalue_containerclass with full APIvariant_helpersnamespace (JSON/XML encoding utilities)CMake Configuration
CONTAINER_BUILD_MODULES(default: OFF)container_system_modulestarget withkcenon::container_modulesaliasRequirements
kcenon.commonmodule (from common_system)Test Plan
CONTAINER_BUILD_MODULES=OFFCONTAINER_BUILD_MODULES=ON(with appropriate generator)Related Issues