[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang-tools-extra / docs / clang-tidy / checks / abseil / duration-unnecessary-conversion.rst
blob264c5d08b9d29c166c1db5dc31db5742ff35ce26
1 .. title:: clang-tidy - abseil-duration-unnecessary-conversion
3 abseil-duration-unnecessary-conversion
4 ======================================
6 Finds and fixes cases where ``absl::Duration`` values are being converted to
7 numeric types and back again.
9 Floating-point examples:
11 .. code-block:: c++
13   // Original - Conversion to double and back again
14   absl::Duration d1;
15   absl::Duration d2 = absl::Seconds(absl::ToDoubleSeconds(d1));
17   // Suggestion - Remove unnecessary conversions
18   absl::Duration d2 = d1;
20   // Original - Division to convert to double and back again
21   absl::Duration d2 = absl::Seconds(absl::FDivDuration(d1, absl::Seconds(1)));
23   // Suggestion - Remove division and conversion
24   absl::Duration d2 = d1;
26 Integer examples:
28 .. code-block:: c++
30   // Original - Conversion to integer and back again
31   absl::Duration d1;
32   absl::Duration d2 = absl::Hours(absl::ToInt64Hours(d1));
34   // Suggestion - Remove unnecessary conversions
35   absl::Duration d2 = d1;
37   // Original - Integer division followed by conversion
38   absl::Duration d2 = absl::Seconds(d1 / absl::Seconds(1));
40   // Suggestion - Remove division and conversion
41   absl::Duration d2 = d1;
43 Unwrapping scalar operations:
45 .. code-block:: c++
47   // Original - Multiplication by a scalar
48   absl::Duration d1;
49   absl::Duration d2 = absl::Seconds(absl::ToInt64Seconds(d1) * 2);
51   // Suggestion - Remove unnecessary conversion
52   absl::Duration d2 = d1 * 2;
54 Note: Converting to an integer and back to an ``absl::Duration`` might be a
55 truncating operation if the value is not aligned to the scale of conversion.
56 In the rare case where this is the intended result, callers should use
57 ``absl::Trunc`` to truncate explicitly.