xlnt
  • Read Me
  • Introduction
    • Motivation
    • Examples
    • Features
    • Installation
  • Basics
    • Workbook
    • Worksheet
    • Cell
    • Iteration
    • Memory model
  • Advanced
    • Formatting
    • Properties
    • Printing
    • Encryption
    • Views
  • API Reference
  • Source code
  • Change Log
  • Contributing
  • License
Powered by GitBook
On this page
Edit on GitHub
  1. Basics

Workbook

PreviousBasicsNextWorksheet

Last updated 2 months ago

Comparisons

Comparisons that use the operator== (e.g. workbook1 == workbook2) do pointer comparisons internally. While this might seem unusual compared to other C++ classes, it aligns with XLNT's and ensures the best performance, while being good enough for most use cases. If you instead want to perform a deep comparison of all underlying objects, use compare() instead.

Memory model