print_n Subroutine

private impure elemental subroutine print_n(this)

Type Bound

ChatCompletion

Arguments

Type IntentOptional Attributes Name
class(ChatCompletion), intent(inout) :: this

Source Code

   elemental impure subroutine print_n(this)
      class(ChatCompletion), intent(inout) :: this
      print "('n: ',I10)", this%n
   end subroutine print_n