///
/// Func_void_std__optional_std__string_.swift
/// This file was generated by nitrogen. DO NOT MODIFY THIS FILE.
/// https://github.com/mrousavy/nitro
/// Copyright © Marc Rousavy @ Margelo
///

import NitroModules

/**
 * Wraps a Swift `(_ value: String?) -> Void` as a class.
 * This class can be used from C++, e.g. to wrap the Swift closure as a `std::function`.
 */
public final class Func_void_std__optional_std__string_ {
  public typealias bridge = margelo.nitro.liveactivitykit.bridge.swift

  private let closure: (_ value: String?) -> Void

  public init(_ closure: @escaping (_ value: String?) -> Void) {
    self.closure = closure
  }

  @inline(__always)
  public func call(value: bridge.std__optional_std__string_) -> Void {
    self.closure({ () -> String? in
      if bridge.has_value_std__optional_std__string_(value) {
        let __unwrapped = bridge.get_std__optional_std__string_(value)
        return String(__unwrapped)
      } else {
        return nil
      }
    }())
  }

  /**
   * Casts this instance to a retained unsafe raw pointer.
   * This acquires one additional strong reference on the object!
   */
  @inline(__always)
  public func toUnsafe() -> UnsafeMutableRawPointer {
    return Unmanaged.passRetained(self).toOpaque()
  }

  /**
   * Casts an unsafe pointer to a `Func_void_std__optional_std__string_`.
   * The pointer has to be a retained opaque `Unmanaged<Func_void_std__optional_std__string_>`.
   * This removes one strong reference from the object!
   */
  @inline(__always)
  public static func fromUnsafe(_ pointer: UnsafeMutableRawPointer) -> Func_void_std__optional_std__string_ {
    return Unmanaged<Func_void_std__optional_std__string_>.fromOpaque(pointer).takeRetainedValue()
  }
}
